/* =========================================================
   OZÔNIO CHILE — Editorial Hair Couture
   Aesthetic: dark luxury + bold serif + asymmetric grids
   ========================================================= */

:root {
  --bg: #060607;
  --bg-2: #0c0c0e;
  --ink: #efeae1;
  --ink-2: #a39e95;
  --line: rgba(239, 234, 225, 0.12);
  --gold: #d4af37;
  --gold-2: #f1d27a;
  --gold-3: #b8902c;
  --pink: #ff5cd1;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Google Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
sup { font-size: .55em; vertical-align: super; }

::selection { background: var(--gold); color: #0a0700; }

.italic { font-family: 'Google Sans', sans-serif; font-style: italic; font-weight: 300; }
.gold {
  background: linear-gradient(110deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: 'Google Sans', sans-serif; font-style: italic; font-weight: 300;
  letter-spacing: .02em;
}
.strike { text-decoration: line-through; text-decoration-thickness: 2px; opacity: .4; }
.under {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  background-position: 0 92%;
  transition: background-size 1.6s var(--ease);
}
.under.in { background-size: 100% 1.5px; }

/* =================== LOADER =================== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-logo {
  height: 130px;
  width: auto;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .4s ease, transform .4s ease;
}
.loader-logo.show {
  opacity: 1;
  transform: scale(1);
}
.loader-text {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -.05em;
  display: flex; gap: 4px;
}
.loader-text span { display: inline-block; transform: translateY(110%); }
.loader-bar {
  width: clamp(180px, 20vw, 260px);
  height: 1px;
  background: rgba(239, 234, 225, .12);
  overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
}

/* =================== CURSOR =================== */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 150;
  top: 0; left: 0;
  border-radius: 50%;
  will-change: transform;
}
.cursor {
  width: 26px; height: 26px;
  border: 1px solid rgba(239, 234, 225, .35);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor.hover {
  width: 44px; height: 44px;
  border-color: var(--gold);
  background: rgba(212, 175, 55, .08);
}

@media (hover: none), (max-width: 720px) {
  .cursor, .cursor-dot { display: none; }
  body, button { cursor: auto; }
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-social a {
  color: var(--ink-2);
  font-size: 1.05rem;
  transition: color .3s var(--ease);
}
.nav-social a:hover { color: var(--gold); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 4px;
  gap: 2px;
  cursor: pointer;
  transition: border-color .3s var(--ease);
  width: fit-content;
  justify-self: end;
}
.lang-toggle:hover { border-color: rgba(255,255,255,.2); }
.lang-opt {
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-2);
  border-radius: 5px;
  transition: all .25s var(--ease);
}
.lang-opt.active {
  background: var(--gold);
  color: #0a0700;
}
.nav.scrolled {
  padding: 14px 32px;
  background: rgba(6,6,7,.7);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity .3s var(--ease);
}
.brand:hover { opacity: .8; }
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height .3s var(--ease);
}
.nav.scrolled .brand-logo { height: 36px; }

.nav-links {
  justify-self: center;
  display: flex;
  gap: 36px;
}
.nav-links a {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: -.005em;
  color: var(--ink-2);
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a i {
  font-family: 'Google Sans', sans-serif;
  font-size: .85rem;
  color: var(--gold);
  font-style: italic;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .02em;
  transition: all .3s var(--ease);
}
.nav-cta i { transition: transform .3s var(--ease); font-size: .85rem; }
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.nav-cta:hover i { transform: translateX(3px); }

.nav-toggle { display: none; }

/* =================== HERO =================== */
.hero {
  min-height: 82vh;
  padding: 100px 32px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(.15) brightness(.8) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,7,.92) 0%, rgba(6,6,7,.7) 35%, rgba(6,6,7,.45) 60%, rgba(6,6,7,.7) 100%),
    linear-gradient(180deg, rgba(6,6,7,.55) 0%, transparent 30%, rgba(6,6,7,.85) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 40px;
  padding-top: 40px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(239, 234, 225, .7);
  font-weight: 400;
  border-top: 1px solid rgba(239, 234, 225, .15);
  border-bottom: 1px solid rgba(239, 234, 225, .15);
  padding: 14px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-meta .gold {
  text-transform: none;
  letter-spacing: 0;
  font-size: .92rem;
}

.hero-title {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.045em;
  align-self: center;
  text-align: left;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .12em;
  margin-bottom: -.12em;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
}
.hero-title .word + .word { margin-left: .22em; }

.hero-foot {
  display: grid;
  gap: 28px;
  max-width: 540px;
}

.hero-lede {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(239, 234, 225, .8);
}
.hero-lede em { color: var(--gold); font-style: italic; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border: 1px solid rgba(239, 234, 225, .25);
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: -.005em;
  transition: all .3s var(--ease);
  white-space: nowrap;
  background: rgba(6,6,7,.4);
  backdrop-filter: blur(8px);
}
.hero-cta:hover {
  background: var(--gold);
  color: #0a0700;
  border-color: var(--gold);
}
.hero-cta i { transition: transform .3s var(--ease); font-size: 1rem; }
.hero-cta:hover i { transform: translateX(4px); }

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  letter-spacing: -.005em;
  color: var(--ink-2);
  position: relative;
  padding-bottom: 4px;
}
.hero-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.hero-link:hover { color: var(--gold); }

/* ===== HERO RIGHT (Bottle) ===== */
.hero-right {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 60vh;
}
.hero-bottle {
  position: relative;
  z-index: 2;
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
}

.hero-counter {
  position: absolute;
  top: 8%;
  right: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: none;
  z-index: 4;
}
.hero-counter .num {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
}
.hero-counter sup {
  color: var(--gold);
  font-size: 1.2rem;
  font-family: 'Google Sans', sans-serif;
  margin-top: 4px;
}
.hero-counter em {
  font-style: normal;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(239, 234, 225, .55);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 90px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(239, 234, 225, .5);
  z-index: 5;
}
.hero-scroll span {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.hero-scroll i { font-style: italic; font-family: 'Google Sans', sans-serif; font-size: .85rem; letter-spacing: 0; text-transform: none; }

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =================== MARQUEE =================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(.78rem, .9vw, .95rem);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink);
  width: max-content;
  will-change: transform;
}
.marquee-track .italic {
  font-family: 'Google Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1.15em;
  color: var(--ink);
}
.marquee-track .dot {
  color: var(--gold);
  font-size: .85em;
  letter-spacing: 0;
}

/* =================== SECTION TAG =================== */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
}
.section-tag i {
  font-family: 'Google Sans', sans-serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
}

/* =================== MANIFESTO =================== */
.manifesto {
  padding: 160px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.manifesto-body {
  display: grid;
  grid-template-columns: 1.3fr .85fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}
.manifesto-left { display: grid; gap: 36px; }
.manifesto-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.manifesto-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  color: var(--ink-2);
  letter-spacing: .01em;
}
.manifesto-list li i {
  width: 22px;
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.manifesto-text {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
  max-width: 22ch;
}

.manifesto-aside {
  position: relative;
  max-width: 440px;
  justify-self: center;
}
.manifesto-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.manifesto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.manifesto-img:hover img { transform: scale(1.03); }
.manifesto-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, .15);
  pointer-events: none;
}

.manifesto-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 4px;
  align-content: center;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  background: rgba(255,255,255,.02);
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.stat-card:hover {
  border-color: rgba(212,175,55,.2);
  background: rgba(212,175,55,.04);
  transform: translateY(-4px);
}
.stat-card i {
  grid-row: 1 / -1;
  font-size: 1.6rem;
  color: var(--gold);
  opacity: .5;
  transition: opacity .3s var(--ease);
}
.stat-card:hover i { opacity: 1; }
.stat-card strong {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-card span {
  font-size: .8rem;
  color: var(--ink-2);
  letter-spacing: .03em;
  line-height: 1.4;
}

/* =================== SHOWCASE (PIN) =================== */
.showcase {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a0c 100%);
}
.showcase-sticky {
  height: 100vh;
  position: sticky; top: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-side {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.showcase-title {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  margin-top: 32px;
}
.showcase-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
}
.showcase-counter span { color: var(--gold); transition: color .3s var(--ease); }
.showcase-counter i { font-style: italic; color: var(--ink-2); font-size: .65em; }

.showcase-stage {
  position: relative;
  overflow: hidden;
}
.prod {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 60px;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
.prod.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.prod-img {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-height: 75vh;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; }

.prod-info { display: grid; gap: 14px; align-content: start; }
.prod-num {
  font-family: 'Google Sans', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.prod h3 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.prod p {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #cdc8be;
  max-width: 38ch;
}
.prod p em { color: var(--gold); font-style: italic; }
.prod ul {
  list-style: none;
  display: grid; gap: 6px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--ink-2);
  letter-spacing: .03em;
}

/* =================== METHOD =================== */
.method {
  padding: 160px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.method-title {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.8vw, 6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  margin-top: 32px;
}
.method-list {
  list-style: none;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.method-list li {
  display: grid;
  grid-template-columns: 80px 60px 280px 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease);
}
.method-list li:hover { padding-left: 24px; }
.method-list li:hover .method-icon { color: var(--gold); transform: scale(1.1) rotate(-4deg); }
.method-list .num {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.method-icon {
  font-size: 1.8rem;
  color: var(--ink-2);
  transition: color .4s var(--ease), transform .4s var(--ease);
  text-align: center;
}
.method-list h4 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -.025em;
}
.method-list p {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 50ch;
}

/* =================== FOUNDER =================== */
.founder {
  padding: 160px 32px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.founder-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.founder-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.founder-img:hover img { transform: scale(1.03); }
.founder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, .2);
  pointer-events: none;
}

.founder-copy {
  display: grid;
  gap: 8px;
  padding-top: 16px;
}
.founder-copy h2 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .95;
  margin-top: 16px;
}
.founder-role,
.founder-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-2);
  margin-top: 4px;
}
.founder-role i,
.founder-location i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.founder-text {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
.founder-text p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.founder-text strong {
  color: var(--ink);
  font-weight: 500;
}

.founder-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.founder-badge {
  display: grid;
  gap: 10px;
  text-align: center;
  padding: 22px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.founder-badge:hover {
  border-color: rgba(212, 175, 55, .35);
  background: rgba(212, 175, 55, .04);
}
.founder-badge i {
  font-size: 1.6rem;
  color: var(--gold);
  justify-self: center;
}
.founder-badge span {
  font-size: .78rem;
  color: var(--ink-2);
  line-height: 1.35;
  letter-spacing: .02em;
}

@media (max-width: 960px) {
  .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-img { max-width: 500px; }
  .founder-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .founder { padding: 80px 20px; }
  .founder-badges { grid-template-columns: 1fr 1fr; }
}

/* =================== AMBASSADORS =================== */
.ambassadors {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.amb-head {
  display: grid;
  gap: 24px;
  margin: 0 auto 80px;
  padding: 0 32px;
  max-width: 1400px;
}
.amb-head h2 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.amb-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.amb-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.amb-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 26vw, 360px);
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform .5s var(--ease);
}
.amb-card:hover { transform: translateY(-8px); }
.amb-card .amb-img {
  width: 100%; height: 100%;
}
.amb-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.amb-card:hover img { transform: scale(1.06); }
.amb-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.95) 100%);
  pointer-events: none;
}
.amb-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  z-index: 1;
  display: grid; gap: 4px;
}
.amb-num {
  font-family: 'Google Sans', sans-serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.amb-meta h3 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.amb-meta p {
  font-size: .82rem;
  color: var(--ink-2);
  letter-spacing: .02em;
}

/* =================== QUOTES =================== */
.quotes {
  padding: 80px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.quotes-title {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  margin-top: 32px;
}
.quotes-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quotes-list blockquote {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.quotes-list blockquote:nth-child(2) { transform: translateY(40px); }
.quotes-list p {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}
.quotes-list footer {
  display: grid; gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quotes-list footer span {
  font-family: 'Google Sans', sans-serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}
.quotes-list footer i {
  font-style: normal;
  font-size: .75rem;
  color: var(--ink-2);
  letter-spacing: .05em;
}

/* =================== FAQ =================== */
.faq {
  padding: 80px 32px;
  background: var(--bg);
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-head {
  margin-bottom: 60px;
}
.faq-head h2 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-top: 16px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 1px solid rgba(255,255,255,.08);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--ink);
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 0 28px;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-body p {
  margin-bottom: 12px;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong {
  color: var(--ink);
  font-weight: 600;
}
.faq-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-body ul li {
  padding-left: 20px;
  position: relative;
}
.faq-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* =================== CTA =================== */
.cta {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-header {
  text-align: center;
  margin-bottom: 60px;
}
.cta-title {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-top: 16px;
}
.cta-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.cta-card {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,175,55,.06), transparent 50%),
    rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  backdrop-filter: blur(12px);
}

.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 8px; }
.form label span {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form label span i {
  font-size: .8rem;
  color: var(--gold);
  opacity: .7;
}
.form input,
.form textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255,255,255,.2);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,175,55,.04);
}
.form textarea { resize: none; }

.btn-blob {
  margin-top: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 14px;
  background: var(--gold);
  color: #0a0700;
  font-size: .95rem;
  letter-spacing: -.005em;
  font-weight: 600;
  overflow: hidden;
  justify-self: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-blob span { position: relative; z-index: 1; }
.btn-blob i { position: relative; z-index: 1; font-size: .9rem; transition: transform .3s var(--ease); }
.btn-blob:hover i { transform: translateX(4px); }
.btn-blob::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.btn-blob:hover { color: var(--bg); box-shadow: 0 8px 32px rgba(212,175,55,.2); }
.btn-blob:hover::before { transform: scaleX(1); }

.form-msg {
  margin-top: 8px;
  font-family: 'Google Sans', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  display: none;
}
.form-msg.show { display: block; }

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-info-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.cta-info-card:hover {
  border-color: rgba(212,175,55,.2);
  background: rgba(212,175,55,.03);
}
.cta-info-card i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.cta-info-card h4 {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.cta-info-card p {
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.5;
}

/* =================== FOOTER =================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 100px 32px 32px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.08), transparent 60%),
    #050506;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

.footer-intro { display: grid; gap: 28px; max-width: 380px; }
.footer-logo {
  width: clamp(160px, 18vw, 220px);
  height: auto;
}
.footer-intro p {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.footer-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: -.005em;
  transition: all .3s var(--ease);
  width: fit-content;
}
.footer-arrow:hover {
  background: var(--gold);
  color: #0a0700;
  border-color: var(--gold);
}
.footer-arrow i { transition: transform .3s var(--ease); font-size: 1rem; }
.footer-arrow:hover i { transform: translateX(4px); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.footer-cols a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.footer-cols a i {
  width: 20px;
  display: inline-flex;
  justify-content: center;
  font-size: .95rem;
  color: var(--gold);
  transition: transform .3s var(--ease);
}
.footer-cols a:hover { color: var(--gold); padding-left: 6px; }
.footer-cols a:hover i { transform: scale(1.15); }

.footer-bottom {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.footer-bottom .gold { font-size: .9rem; }

/* =================== REVEAL =================== */
.reveal-up { opacity: 0; transform: translateY(40px); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 50vh; order: 2; }
  .hero-title .line-italic { padding-left: 40px; }
  .hero-title .line-end { padding-left: 0; }
  .hero-counter { top: 0; }

  .manifesto-body { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-aside { max-width: 400px; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .showcase-sticky { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto; min-height: auto; position: relative; }
  .showcase-side { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 24px; }
  .showcase-stage { min-height: 0; }
  .prod {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 24px;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .prod.active { display: grid; }
  .prod-img { max-height: 40vh; order: 2; }
  .prod-info { order: 1; }

  .method-list li { grid-template-columns: 50px 40px 1fr; gap: 16px; }
  .method-list li > p { grid-column: 1 / -1; }

  .amb-card { width: clamp(240px, 70vw, 300px); }
  .amb-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .amb-track {
    gap: 16px;
    padding: 0 20px;
  }

  .quotes-list { grid-template-columns: 1fr; }
  .quotes-list blockquote:nth-child(2) { transform: none; }

  .cta { padding: 100px 24px; }
  .cta-body { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav { padding: 16px 20px; gap: 10px; grid-template-columns: auto 1fr auto auto; }
  .nav-cta, .nav-social { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    padding: 10px;
    grid-column: 3;
    justify-self: end;
    cursor: pointer;
    z-index: 210;
    position: relative;
  }
  .nav-toggle span {
    display: block; width: 26px; height: 2px; background: var(--ink);
    transition: transform .35s var(--ease), opacity .25s var(--ease);
    transform-origin: center;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    background: var(--bg);
    z-index: 200;
    padding: 0 36px;
    overflow: hidden;
    overscroll-behavior: contain;
    transform: none;
  }
  .nav-links.mobile-open a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 16px 0;
    color: var(--ink-2);
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.06);
    opacity: 0;
    transform: translateX(-12px);
    animation: mobileNavIn .35s var(--ease) forwards;
    transition: color .25s var(--ease);
  }
  .nav-links.mobile-open a:hover,
  .nav-links.mobile-open a:active { color: var(--gold); }
  .nav-links.mobile-open a:nth-child(1) { animation-delay: .05s; }
  .nav-links.mobile-open a:nth-child(2) { animation-delay: .1s; }
  .nav-links.mobile-open a:nth-child(3) { animation-delay: .15s; }
  .nav-links.mobile-open a:nth-child(4) { animation-delay: .2s; }
  .nav-links.mobile-open a:nth-child(5) { animation-delay: .25s; }
  .nav-links.mobile-open a:nth-child(6) { animation-delay: .3s; }
  @keyframes mobileNavIn {
    to { opacity: 1; transform: translateX(0); }
  }
  .nav-links.mobile-open a i {
    color: var(--gold);
    font-size: .85em;
    min-width: 22px;
  }

  .hero { padding: 110px 20px 40px; }
  .hero-right { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .manifesto, .method, .ambassadors, .quotes, .faq { padding: 80px 20px; }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stat-card {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    padding: 18px 20px;
    column-gap: 14px;
    align-items: center;
  }
  .stat-card i { grid-row: 1; font-size: 1.1rem; }
  .stat-card strong { font-size: 1.4rem; grid-row: 1; }
  .stat-card span { font-size: .78rem; grid-row: 1; grid-column: 3; text-align: right; }
  .cta { padding: 80px 20px; }
  .cta-body { grid-template-columns: 1fr; gap: 28px; }
  .cta-card { padding: 28px; }
  .cta-info { flex-direction: row; overflow-x: auto; gap: 12px; }
  .cta-info-card { min-width: 200px; padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 20px 24px; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
