/* ============================================================
   Create & Elevate — Design System
   ============================================================ */
:root {
  /* Brand palette (sampled from logo) */
  --mint:   #c2e8ac;
  --mint-2: #d8f1c9;
  --green:  #34c24a;
  --green-d:#27a23c;
  --teal:   #15808a;
  --deep:   #0b5a60;
  --ink:    #06211e;
  --ink-2:  #0c302b;

  --paper:  #f7faf6;
  --paper-2:#eef4ea;
  --line:   #dde7d8;

  --text:   #112520;
  --muted:  #54665e;
  --muted-2:#7c8c83;

  --grad: linear-gradient(120deg, var(--teal), var(--green));
  --grad-deep: linear-gradient(150deg, var(--deep), var(--teal));

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --r: 18px;
  --r-lg: 28px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --shadow: 0 18px 50px -24px rgba(11,90,96,.35);
  --shadow-lg: 0 40px 90px -40px rgba(11,90,96,.45);

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 600; margin: 0; line-height: 1.04; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none;} }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 100px;
  background: var(--bg); color: #fff; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--green { --bg: var(--green); color: #04241a; font-weight: 700; }
.btn--green:hover { background: var(--green-d); }
.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--deep); box-shadow: none; transform: translateY(-2px); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-head); font-weight: 500;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }
.eyebrow.center::after { content:""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(247,250,246,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; letter-spacing: -.01em; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand b { font-size: 1.05rem; }
.brand span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; color: var(--muted); font-weight: 600; transition: color .25s; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-5px; width:0; height:2px; background: var(--green); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--deep); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display:flex; align-items:center; gap: 18px; }
.menu-btn { display: none; }

@media (max-width: 900px){
  .nav-links { display: none; }
  .nav-cta .btn { padding: .7em 1.1em; font-size: .9rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 168px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 16px 8px 10px; font-size: .85rem; font-weight: 600; color: var(--muted);
  box-shadow: var(--shadow);
}
.hero-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,194,74,.18); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(52,194,74,.18);} 50%{ box-shadow: 0 0 0 8px rgba(52,194,74,0);} }
.hero-tag b { color: var(--deep); }

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  margin: 24px 0 0;
  letter-spacing: -.035em;
}
.hero h1 .em { color: var(--green); }
.hero h1 .word { display: inline-block; }
.hero-sub { margin-top: 26px; font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 32ch; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 52px; }
.hero-stats .st b { font-family: var(--font-head); font-size: 1.9rem; color: var(--deep); display:block; letter-spacing: -.02em; }
.hero-stats .st span { font-size: .82rem; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* Hero visual — orbiting mark */
.hero-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.orbit { position: absolute; inset: 0; border-radius: 50%; }
.orbit.o1 { border: 1px dashed rgba(21,128,138,.35); animation: spin 36s linear infinite; }
.orbit.o2 { inset: 12%; border: 1px solid rgba(52,194,74,.18); animation: spin 26s linear infinite reverse; }
.orbit.o3 { inset: 24%; border: 1px dashed rgba(11,90,96,.2); animation: spin 20s linear infinite; }
.orbit .node { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--green); top: -6px; left: calc(50% - 6px); box-shadow: 0 0 0 5px rgba(52,194,74,.16); }
.orbit.o2 .node { background: var(--teal); box-shadow: 0 0 0 5px rgba(21,128,138,.16); }
.orbit.o3 .node { background: var(--deep); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-mark {
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: #fff url("assets/logo-mark.jpg") center/86% no-repeat;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--line);
  animation: floaty 7s var(--ease) infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.hero-chip {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; display:flex; align-items:center; gap:8px;
}
.hero-chip i { width: 8px; height: 8px; border-radius: 3px; display:inline-block; }
.hero-chip.c1 { top: 8%; left: -6%; animation: floaty 6s var(--ease) infinite; }
.hero-chip.c2 { bottom: 14%; right: -4%; animation: floaty 8s var(--ease) infinite .4s; }
.hero-chip.c3 { bottom: 2%; left: 8%; animation: floaty 7.5s var(--ease) infinite .8s; }

@media (max-width: 920px){
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-sub { max-width: none; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: 170px 0 70px; position: relative; overflow: hidden; }
.page-hero::before {
  content:""; position: absolute; right: -8%; top: -30%; width: 520px; height: 520px;
  border-radius: 50%; background: radial-gradient(circle, rgba(52,194,74,.14), transparent 68%); pointer-events: none;
}
.page-hero .crumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted-2); font-weight: 600; margin-bottom: 20px; }
.page-hero .crumb a { color: var(--teal); }
.page-hero .crumb a:hover { color: var(--deep); }
.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); max-width: 16ch; letter-spacing: -.035em; }
.page-hero h1 .em { color: var(--green); }
.page-hero p { margin-top: 22px; font-size: clamp(1.05rem,1.5vw,1.2rem); color: var(--muted); max-width: 56ch; line-height: 1.6; }

/* ============================================================
   EXPLORE CARDS (home navigation)
   ============================================================ */
.explore-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 54px; }
.explore-card {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 230px; padding: 34px; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.explore-card.dark { background: var(--grad-deep); color: #fff; border: none; }
.explore-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.explore-card .ec-num { font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.explore-card.dark .ec-num { color: var(--mint); }
.explore-card h3 { font-size: 1.7rem; margin: 14px 0 10px; }
.explore-card p { color: var(--muted); line-height: 1.55; font-size: 1.02rem; }
.explore-card.dark p { color: #cfe6d4; }
.explore-card .go { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-family: var(--font-head); font-weight: 600; color: var(--green-d); }
.explore-card.dark .go { color: var(--mint); }
.explore-card .go .arr { transition: transform .35s var(--ease); }
.explore-card:hover .go .arr { transform: translateX(5px); }
.explore-card .ec-glyph { position: absolute; right: -34px; bottom: -34px; width: 150px; height: 150px; border-radius: 50%; border: 1.5px solid currentColor; opacity: .1; }
@media (max-width: 720px){ .explore-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-block: 1px solid var(--line); background: var(--paper-2); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marq 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--deep); letter-spacing: -.01em; }
.marquee-item .sep { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec { padding: clamp(72px, 10vw, 130px) 0; }
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-top: 16px; }
.sec-head p { margin-top: 18px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; }

/* ---------- Intro band ---------- */
.intro { background: var(--ink); color: #eaf3ec; }
.intro .eyebrow { color: var(--mint); }
.intro .eyebrow::before, .intro .eyebrow::after { background: var(--green); }
.intro h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.9rem); max-width: 18ch; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.intro-copy p { color: #bcd2c4; font-size: 1.08rem; line-height: 1.7; }
.intro-copy p + p { margin-top: 22px; }
.intro-copy strong { color: #fff; font-weight: 700; }
@media (max-width: 860px){ .intro-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card {
  position: relative; padding: 42px; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.mv-card.dark { background: var(--grad-deep); color: #fff; border: none; }
.mv-card .num { font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.mv-card.dark .num { color: var(--mint); }
.mv-card h3 { font-size: 1.9rem; margin: 14px 0 16px; }
.mv-card p { line-height: 1.65; font-size: 1.08rem; color: var(--muted); }
.mv-card.dark p { color: #cfe6d4; }
.mv-card .glyph { position: absolute; right: -30px; bottom: -30px; width: 150px; height: 150px; border-radius: 50%; border: 1.5px solid currentColor; opacity: .12; }
.mv-card .glyph::after { content:""; position:absolute; inset: 22px; border-radius:50%; border: 1.5px solid currentColor; }
@media (max-width: 760px){ .mv-grid { grid-template-columns: 1fr; } }

/* ---------- Difference / list ---------- */
.diff { background: var(--paper-2); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.diff-statement { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.2rem); line-height: 1.25; letter-spacing: -.02em; }
.diff-statement .strike { color: var(--muted-2); text-decoration: line-through; text-decoration-color: var(--line); }
.diff-statement .hl { color: var(--green-d); }
.do-list { display: grid; gap: 0; }
.do-item {
  display: flex; align-items: center; gap: 16px; padding: 18px 4px;
  border-bottom: 1px solid var(--line); font-size: 1.1rem; font-weight: 600; color: var(--text);
  transition: padding .35s var(--ease), color .3s;
}
.do-item:first-child { border-top: 1px solid var(--line); }
.do-item .ic { flex: none; width: 34px; height: 34px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; transition: background .3s, transform .35s var(--ease); }
.do-item .ic svg { width: 17px; height: 17px; stroke: var(--green-d); }
.do-item:hover { padding-left: 14px; color: var(--deep); }
.do-item:hover .ic { background: var(--green); transform: rotate(-6deg) scale(1.06); }
.do-item:hover .ic svg { stroke: #04241a; }
@media (max-width: 820px){ .diff-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Gain (bento) ---------- */
.gain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; position: relative; overflow: hidden;
}
.gain-card::before { content:""; position:absolute; inset: 0 auto 0 0; width: 3px; background: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.gain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.gain-card:hover::before { transform: scaleY(1); }
.gain-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--paper-2); display: grid; place-items: center; margin-bottom: 22px; transition: background .4s; }
.gain-card:hover .gain-ic { background: linear-gradient(135deg, var(--mint), var(--green)); }
.gain-ic svg { width: 24px; height: 24px; stroke: var(--deep); transition: stroke .4s; }
.gain-card:hover .gain-ic svg { stroke: #04241a; }
.gain-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.gain-card p { color: var(--muted); line-height: 1.6; font-size: 1rem; }
.gain-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.gain-card .tags span { font-size: .78rem; font-weight: 700; color: var(--deep); background: var(--paper-2); padding: 5px 11px; border-radius: 100px; font-family: var(--font-head); }
@media (max-width: 960px){ .gain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .gain-grid { grid-template-columns: 1fr; } }

/* ---------- Pillars ---------- */
.pillars { background: var(--ink); color: #fff; overflow: hidden; }
.pillars .sec-head h2 { color: #fff; }
.pillars .sec-head p { color: #bcd2c4; }
.pillars .eyebrow { color: var(--mint); }
.pillars .eyebrow::before, .pillars .eyebrow::after { background: var(--green); }
.pillar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 56px; }
.pillar {
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 30px 26px 34px;
  background: rgba(255,255,255,.025); transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden; min-height: 280px; display: flex; flex-direction: column;
}
.pillar::after { content:""; position: absolute; inset: auto -40% -40% auto; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(52,194,74,.22), transparent 70%); opacity: 0; transition: opacity .5s; }
.pillar:hover { background: rgba(255,255,255,.06); transform: translateY(-8px); border-color: rgba(52,194,74,.5); }
.pillar:hover::after { opacity: 1; }
.pillar .pn { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,.16); letter-spacing: -.03em; }
.pillar h3 { font-size: 1.55rem; margin: 14px 0 12px; color: #fff; }
.pillar h3 .accent { color: var(--green); }
.pillar p { color: #aac3b0; line-height: 1.6; font-size: .98rem; margin-top: auto; }
@media (max-width: 980px){ .pillar-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .pillar-grid { grid-template-columns: 1fr; } }

/* ---------- Who should join ---------- */
.join-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.who-list { display: flex; flex-wrap: wrap; gap: 12px; }
.who-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 12px 20px;
  font-weight: 600; font-size: 1.02rem; color: var(--text);
  transition: transform .3s var(--ease), border-color .3s, background .3s, color .3s;
}
.who-chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); transition: transform .3s; }
.who-chip:hover { transform: translateY(-3px); border-color: var(--green); background: var(--ink); color: #fff; }
.who-chip:hover .d { transform: scale(1.6); }
.who-note { margin-top: 30px; padding: 22px 26px; border-left: 3px solid var(--green); background: var(--paper-2); border-radius: 0 14px 14px 0; }
.who-note p { font-size: 1.12rem; line-height: 1.55; color: var(--deep); font-family: var(--font-head); font-weight: 500; }
@media (max-width: 860px){ .join-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Core values ---------- */
.values { background: var(--paper-2); }
.value-row {
  display: grid; grid-template-columns: 60px 1fr 1.4fr; gap: 30px; align-items: center;
  padding: 30px 8px; border-top: 1px solid var(--line); transition: background .35s, padding .35s var(--ease);
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row:hover { background: #fff; padding-inline: 24px; }
.value-row .vn { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 1rem; }
.value-row h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); transition: color .3s; }
.value-row:hover h3 { color: var(--green-d); }
.value-row p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
@media (max-width: 760px){ .value-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 8px; } .value-row .vn { color: var(--green-d); } }

/* ---------- Valenin ---------- */
.valenin .vcard {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.valenin .vleft { background: var(--grad-deep); color: #fff; padding: clamp(36px, 5vw, 64px); }
.valenin .vleft .eyebrow { color: var(--mint); }
.valenin .vleft .eyebrow::before { background: var(--green); }
.valenin .vleft h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 16px 0 0; }
.valenin .vleft p { color: #cfe6d4; line-height: 1.7; margin-top: 20px; font-size: 1.06rem; }
.valenin .vbtns { margin-top: 32px; }
.valenin .vright { background: #fff; padding: clamp(36px, 5vw, 56px); display: grid; gap: 16px; align-content: center; }
.vcap { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: 14px; background: var(--paper); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.vcap:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.vcap .vic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--mint), var(--green)); display: grid; place-items: center; }
.vcap .vic svg { width: 20px; height: 20px; stroke: #04241a; }
.vcap b { font-family: var(--font-head); display: block; font-size: 1.05rem; margin-bottom: 3px; }
.vcap span { color: var(--muted); font-size: .96rem; line-height: 1.5; }
@media (max-width: 820px){ .valenin .vcard { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { padding: clamp(80px, 12vw, 150px) 0; text-align: center; position: relative; overflow: hidden; }
.cta .bg-orbit { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 760px; height: 760px; border-radius: 50%; border: 1px solid var(--line); pointer-events: none; }
.cta .bg-orbit.b2 { width: 520px; height: 520px; }
.cta .bg-orbit.b3 { width: 1000px; height: 1000px; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); position: relative; }
.cta h2 .em { color: var(--green); }
.cta p { max-width: 46ch; margin: 26px auto 0; color: var(--muted); font-size: 1.18rem; line-height: 1.6; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; position: relative; }
.cta-final { margin-top: 42px; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--deep); position: relative; }
.cta-final .sep { color: var(--green); margin: 0 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfe0d4; padding: 70px 0 36px; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand { max-width: 360px; }
.foot-brand .brand b { color: #fff; }
.foot-brand .brand span { color: var(--mint); }
.foot-brand p { margin-top: 18px; color: #9fb8a6; line-height: 1.6; font-size: .98rem; }
.foot-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.foot-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--mint); margin-bottom: 18px; font-weight: 600; }
.foot-col a { display: block; color: #9fb8a6; font-size: .98rem; margin-bottom: 12px; transition: color .25s; }
.foot-col a:hover { color: #fff; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; font-size: .88rem; color: #7f988a; }
.foot-bot .tagline { font-family: var(--font-head); color: var(--mint); font-weight: 600; }
