/* ================= RESET & BASE ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow: hidden;
  scroll-behavior: smooth;
  background-color: #ffffff;
  overflow-x: hidden;
}

body.page-exit {
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: scale(0.98);
  filter: blur(6px);
}


/* ================= TYPOGRAPHY SCALE ================= */
/*
  Golden Ratio Typography Scale
  Base: 16px | Scale factor: φ = 1.618

  xs   (caption/label) : 10px  ≈ 16 / φ²
  sm   (small body)    : 12px  ≈ 16 / φ
  base (body)          : 16px
  md   (sub-body/lead) : 18px  ≈ 16 × φ^0.5
  lg   (subheading)    : 26px  ≈ 16 × φ
  xl   (section head)  : 42px  ≈ 16 × φ²
  2xl  (hero/display)  : 68px  ≈ 16 × φ³
  3xl  (large display) : 110px ≈ 16 × φ⁴
*/

/* h1 — hero display */
h1 {
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
}

/* h2 — section headings */
h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  max-width: 45%;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
  overflow: visible;
  text-align: center;
  margin: 0 auto;
}

/* Global p */
p {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 400;
}


/* ================= LOADER ================= */

#arbx-loader {
  position: fixed;
  inset: 0;
  background: #1c3b44;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

#arbx-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.6) 25%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.08) 65%,
    rgba(255,255,255,0) 80%
  );
  animation: fadeFog 2.2s ease forwards;
}

.loader-content {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
  color: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-10px);
}

.loader-content span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

/* Logo text in loader */
.loader-content h1 span {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 1px;
  animation: focusReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: all ease 1s;
  animation-delay: 1s;
}

/* Tagline in loader */
.tagline span {
  margin: 0 2px;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.tagline span:nth-child(1) {
  animation: focusReveal 0.8s ease forwards;
  animation-delay: 1.7s;
}

.tagline span:nth-child(2) {
  animation: focusReveal 0.8s ease forwards;
  animation-delay: 1.95s;
}

.tagline span:nth-child(3) {
  animation: focusReveal 0.8s ease forwards;
  animation-delay: 2.2s;
}

@keyframes fadeFog {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

@keyframes focusReveal {
  0%   { opacity: 0; transform: translateY(2px); filter: blur(6px); }
  50%  { opacity: 0.8; filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}


/* ================= CUSTOM CURSOR ================= */
/*
  Controlled entirely by JS-injected class.
  .desktop-cursor is added by script.js only on qualifying devices.
*/

.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

body.desktop-cursor {
  cursor: none;
}

body.desktop-cursor .cursor-dot,
body.desktop-cursor .cursor-ring {
  display: block;
}

body.desktop-cursor a,
body.desktop-cursor button,
body.desktop-cursor .cta-btn {
  cursor: none;
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: #1c3b44;
  border-radius: 50%;
  box-shadow:
    0 0 5px #1c3b44,
    0 0 10px #1c3b44,
    0 0 20px #1c3b44,
    0 0 30px #1c3b44;
}

.cursor-ring {
  width: 22px;
  height: 22px;
  border: 1px solid #1c3b44;
  opacity: 0.2;
  border-radius: 50%;
  backdrop-filter: blur(50px);
  box-shadow:
    inset 0 0 1px #fff,
    inset 0 0 2px #1c3b44,
    inset 0 0 3px #1c3b44,
    inset 0 0 4px #1c3b44,
    inset 0 0 5px #1c3b44;
  transition:
    transform 0.2s ease,
    width 0.2s ease,
    height 0.2s ease,
    border 0.2s ease;
}

.cursor-hover {
  width: 42px !important;
  height: 42px !important;
  border: 1px solid #1c3b44 !important;
  opacity: 0.3 !important;
}

.cursor-click {
  transform: translate(-50%, -50%) scale(0.85);
}


/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: clamp(10px, 2vw, 14px);
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: rgba(26,26,24,0.06) 1px solid;
}

.logo a {
  color: #1c3b44;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: inherit;
  font-weight: 300;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: rgba(28, 59, 68, 0.65);
  transition: color 0.5s ease;
}

.nav-links a:hover {
  color: #1c3b44;
}


/* ================= SECTION LOADER BAR ================= */

.section-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 9999;
  background: rgba(28, 59, 68, 0.1);
}

.section-loader-bar {
  height: 100%;
  width: 0%;
  background: #1c3b44;
  box-shadow: 0 0 10px rgba(28, 59, 68, 0.6);
  transition: width 0.6s ease;
}


/* ================= CONTAINER & SECTION BASE ================= */

.container {
  height: auto;
  overflow: visible;
  position: relative;
}

section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0.2;
  transform: translateY(40px) scale(0.96);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Only apply animation system when JS is ready */
body.js-enabled section {
  opacity: 0.2;
  transform: translateY(40px) scale(0.96);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enabled section.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

section.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dark {
  background: #ffffff;
  color: #1c3b44;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}


/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.92);
  transform-origin: center;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Urgency ticker ---- */
.cosmos-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(28,59,68,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  margin-bottom: 36px;
  z-index: 2;
  position: relative;
}
 
.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bdc936;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(189,201,54,0.5);
  animation: tickerPulse 2s ease-in-out infinite;
}
 
@keyframes tickerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(189,201,54,0.5); }
  60%  { box-shadow: 0 0 0 7px rgba(189,201,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(189,201,54,0); }
}
 
.ticker-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #1c3b44;
}

/* Image frames layer */
.image-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.frame {
  position: absolute;
  width: clamp(44px, 5.5vw, 70px);
  height: clamp(60px, 7vw, 90px);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 1px 1px 3px #fff, inset -5px -5px 10px #ffffff;
  transform: translate(var(--tx, 0), var(--ty, 0)) scale(0.85);
  filter: grayscale(20%) blur(0) opacity(0.85);
  pointer-events: auto;
}

.frame1 { top: 8%;    left: 12%;  background-image: url('image-1.png'); }
.frame2 { top: 12%;   right: 14%; background-image: url('image-2.png'); }
.frame3 { top: 42%;   right: 4%;  background-image: url('image-3.png'); }
.frame4 { bottom: 10%; right: 16%; background-image: url('image-4.png'); }
.frame5 { bottom: 8%;  left: 14%;  background-image: url('image-5.png'); }
.frame6 { top: 48%;   left: 4%;   background-image: url('image-6.png'); }

/* Hero content above image layer */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.hero-content.show h1 {
  animation: fadeUp 1s ease forwards;
}

.hero-content.show p {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0px;
  opacity: 0.8;
  color: #1c3b44;
  pointer-events: none;
  user-select: none;
  animation: floatHint 2.5s ease-in-out infinite;
}

@keyframes floatHint {
  0%, 100% { transform: translate(-50%, 0); }
  50%       { transform: translate(-50%, -6px); }
}

/* CTA Button */
.cta-btn {
  margin-top: 24px;
  padding: 14px 50px;
  font-size: clamp(16px, 2vw, 22px);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #1c3b44;
  background: #bdc936;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

.cta-btn:hover {
  opacity: 0.8;
}


/* ================= TEXT REVEAL ANIMATION ================= */

.reveal-text {
  display: inline-block;
  overflow: hidden;
}

/* Each word */
.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/* Animate in */
.reveal-text.show span {
  animation: revealWord 0.8s ease forwards;
}

@keyframes revealWord {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ================= NETWORK BACKGROUND CANVAS ================= */

.network-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #ffffff, #eef3f4);
  overflow: hidden;
  transition: all ease 0.6s;
}

.network-bg::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(189, 201, 54, 0.12),
    transparent 60%
  );
  filter: blur(80px);
  animation: drift1 18s ease-in-out infinite alternate;
}

.network-bg::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(
    circle at 70% 60%,
    rgba(28, 59, 68, 0.06),
    transparent 60%
  );
  filter: blur(100px);
  animation: drift2 22s ease-in-out infinite alternate;
}

@keyframes drift1 {
  0%   { transform: translate(0%, 0%) scale(1); }
  50%  { transform: translate(8%, -6%) scale(1.1); }
  100% { transform: translate(-6%, 8%) scale(1.05); }
}

@keyframes drift2 {
  0%   { transform: translate(0%, 0%) scale(1); }
  50%  { transform: translate(-10%, 5%) scale(1.15); }
  100% { transform: translate(6%, -8%) scale(1.05); }
}


/* ================= ETHICS / VALUES SECTION ================= */

.ethics-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}

.ethics-left h2 {
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 400;
  color: #1c3b44;
  line-height: 1;
  text-align: left;
  overflow: visible;
}

.ethics-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ethics-center img {
  width: clamp(120px, 12vw, 180px);
  height: clamp(160px, 14vw, 220px);
  object-fit: cover;
  box-shadow:
    0 20px 60px rgba(28,59,68,0.08),
    0 4px 20px rgba(28,59,68,0.05);
  transition: transform 0.6s ease;
}

.ethics-center img:hover {
  transform: scale(1.01);
}

.ethics-right {
  display: flex;
  justify-content: flex-start;
}

.ethics-right p {
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.4;
  text-rendering: geometricPrecision;
  margin-left: 3%;
  color: rgba(28,59,68,0.6);
  max-width: 280px;
  text-align: left;
}

.bg-words span {
  white-space: normal;
  text-align: center;
}

/* ---- Social proof strip ---- */
.cosmos-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
 
.proof-avatars {
  display: flex;
}
 
.proof-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8px, 2vw, 10px);
  font-weight: 600;
  color: #1c3b44;
  margin-left: -8px;
}
 
.proof-avatars .proof-avatar:first-child {
  margin-left: 0;
}
 
.proof-label {
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 500;
  color: rgba(28,59,68,0.5);
}
 
.proof-label strong {
  font-weight: 600;
  color: #1c3b44;
}
 

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-wrapper {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 32px;
  max-width: 70%;
  margin: 0 auto;
}

/* Top heading area */
.t-top {
  text-align: center;
  margin-bottom: 36px;
}

.t-label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(28, 59, 68, 0.35);
  margin-bottom: 10px;
}

.t-heading {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -1.5px;
  color: #1c3b44;
  max-width: 100%;
}

/* Carousel stage */
.stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 200px;
}

/* Individual card */
.card {
  position: absolute;
  inset: 0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 32px 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(28, 59, 68, 0.06);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.co-name {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(28, 59, 68, 0.3);
  margin-bottom: 12px;
}

.quote {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #1c3b44;
  margin-bottom: 5%;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4%;
}

.author-name {
  font-size: 12px;
  font-weight: 500;
  color: #1c3b44;
}

.author-role {
  font-size: 11px;
  font-weight: 400;
  color: rgba(28, 59, 68, 0.45);
  margin-top: 1px;
}

.stars {
  font-size: 12px;
  letter-spacing: 2px;
  color: #bdc936;
}

/* Dots navigation */
.dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(28, 59, 68, 0.15);
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.dot.active {
  background: #1c3b44;
  transform: scale(1.4);
}

/* Footer tagline */
.t-foot {
  margin-top: 32px;
  text-align: center;
}

.t-foot p {
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: rgba(28, 59, 68, 0.3);
}


/* ================= CONNECT & CONVERT SECTION ================= */

/* ---------- section ---------- */
#photo-page {
  padding: 0;
}
 
#attention-system {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 28px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
 
/* ---------- headline  (golden-ratio xl ≈ 42px) ---------- */
.cc-headline {
  max-width: 100%;
}
 
/* ---------- subline  (golden-ratio md ≈ 18px) ---------- */
.cc-sub {
  color: rgba(28,59,68,.45);
  margin-bottom: 38px;
}
 
/* ---------- three-column grid ---------- */
.cc-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;   /* centre column φ-wider */
  gap: 14px;
  width: 80%;
  align-items: end;
}
 
/* ---------- column ---------- */
.cc-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
 
/* ---------- image wrap ---------- */
.cc-img-wrap {
  position: relative;
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}
 
/* side columns shorter, centre taller — golden ratio ~1.618 */
.cc-col:not(.cc-col--center) .cc-img-wrap {
  aspect-ratio: 4 / 5;
}

.cc-col--center .cc-img-wrap {
  aspect-ratio: 3 / 4;
}
 
.cc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter .6s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
 
.cc-img-wrap:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
 
/* floating step label */
.cc-img-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  color: rgba(255,255,255,.82);
  background: rgba(28,59,68,.45);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}
 
/* ---------- column text ---------- */
/* title  (golden-ratio lg ≈ 26px) */
.cc-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.5px;
  color: #1c3b44;
  margin: 0;
}
 
/* body  (golden-ratio sm ≈ 12px) */
.cc-col-body {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(28,59,68,.5);
  max-width: 150px;
  margin: 0;
}

/* ================= FINAL CTA / FOOTER SECTION ================= */


.cosmos-center {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  padding: 0 20px;
}

.cosmos-sub {
  font-size: 14px;
  color: rgba(28, 59, 68, 0.6);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.cosmos-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1c3b44;
  margin-bottom: 10px;
  line-height: 1.1;
  max-width: 600px;
}


.cosmos-links {
  position: absolute;
  bottom: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 14px;
  color: rgba(28, 59, 68, 0.65);
  max-width: 1000px;
}

.cosmos-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.cosmos-links a:hover {
  color: #1c3b44;
}

.left-links,
.right-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.cosmos-brand {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 500;
  letter-spacing: -2px;
  color: #1c3b44;
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
}

.last-logo {
  height: auto;
  width: 30px;
  margin-top: 20px;
}


/* ================= RESPONSIVE — MOBILE (max 768px) ================= */

@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 14px 20px;
  }

  /* Sections */
  section {
    padding: 40px 20px; /* equal top & bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(5%);
  }

  .content,
  .cosmos-center,
  .ethics-layout,
  .testimonial-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    justify-content: center;
  }

  /* Ensure all direct children stay centered */
  .content > *,
  .cosmos-center > *,
  .ethics-layout > *,
  .testimonial-wrapper > * {
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 768px) {
    .content,
    .cosmos-center {
      transform: translateY(-10px);
    }
  }

  /* Typography */
  h2 {
    max-width: 88%;
    font-size: clamp(22px, 5.5vw, 32px);
    letter-spacing: -1px;
    text-align: center;
  }

  /* Hide decorative elements */
  .image-layer,
  .network-bg,
  .scroll-hint {
    display: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .ethics-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    padding: 0 20px;
    text-align: center;
  }

  /* Left heading */
  .ethics-left {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .ethics-left h2 {
    font-size: clamp(26px, 7vw, 36px);
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Center image */
  .ethics-center {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Right text */
  .ethics-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .ethics-right p {
    max-width: 75%;
    margin: 0 auto;
    text-align: center;
  }

  .stage{
    width: 80%;
  }

  /* Testimonial */
  .testimonial-wrapper {
    max-width: 100%;
    padding: 24px 16px 20px;
  }

  .cc-img-label {
    display: none;
  }
  .cc-col-title{
    font-size: 15px;
  }
  .cc-sub{
    font-size: 14px;
  }

  /* Footer */
  .cosmos-title {
    font-size: 28px;
  }

  .cosmos-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .cosmos-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    bottom: 100px;
    padding: 0;
    font-size: 10px;
  }

  .left-links,
  .right-links {
    justify-content: center;
  }

  .cosmos-brand{
    bottom: -30px;
  }
}


/* ================= RESPONSIVE — TABLET (768–900px) ================= */

@media (min-width: 768px) and (max-width: 900px) {

  .navbar {
    padding: 14px 20px;
  }

  h2 {
    max-width: 70%;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}