/* ========== Tokens ========== */
:root {
  --cream: #F5EFE0;
  --cream-2: #EDE5D2;
  --paper: #FAF6EC;
  --ink: #161513;
  --ink-2: #2A2622;
  --muted: #6B645C;
  --line: rgba(22, 21, 19, 0.12);
  --accent: #C7522A;          /* terracotta — matches deck */
  --accent-soft: rgba(199, 82, 42, 0.12);
  --black: #0E0D0C;
  --white: #FFFFFF;

  --font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --max: 1240px;
  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 8px;

  --shadow-soft: 0 30px 60px -25px rgba(40, 30, 20, 0.18);
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -10px rgba(40,30,20,.18);
}

/* ========== Reset ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-feature-settings: 'cv02', 'cv03', 'cv11';
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.accent { color: var(--accent); }
.light { color: var(--cream) !important; }

/* ========== Scroll progress ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 1000;
  transition: width .12s linear;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 239, 224, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand-mark { display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .15s ease, background .2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-login {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .15s ease, background .2s, color .2s;
}
.nav-login:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

/* Language toggle */
.lang-toggle {
  position: relative;
  display: inline-flex;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
}
.lang-toggle .lang-opt {
  position: relative;
  z-index: 2;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color .25s ease;
  user-select: none;
}
.lang-toggle .lang-opt.active { color: var(--cream); }
.lang-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform .3s cubic-bezier(.4,.8,.4,1);
  z-index: 1;
}
.lang-toggle.is-en .lang-pill { transform: translateX(100%); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.65;
}
.hero-meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px rgba(199, 82, 42, 0); }
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .2s, border-color .2s, color .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* hero image floating */
.hero-image { position: relative; }
.float-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.float-card img {
  max-height: 620px;
  filter: drop-shadow(0 50px 60px rgba(40,30,20,0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.float-tag {
  position: absolute;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
}
.tag-1 {
  top: 14%;
  left: 0;
  animation: float 6s ease-in-out infinite;
}
.tag-2 {
  bottom: 14%;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
  animation: float 7s ease-in-out infinite reverse;
}
.led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}

/* hero marquee */
.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 30px;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-weight: 800;
  font-size: 22px;
  font-style: italic;
  color: var(--ink-2);
  animation: marquee 28s linear infinite;
}
.marquee-track span:nth-child(even) { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== Sections ========== */
.section {
  padding: 120px 0;
  position: relative;
}
.section.dark {
  background: var(--black);
  color: var(--cream);
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.kicker.light { color: var(--accent); }
.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 60px;
  max-width: 1100px;
}
.section-title.light { color: var(--cream); }

/* card grids */
.card-grid {
  display: grid;
  gap: 22px;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

/* ========== Problem ========== */
.problem { background: var(--cream); }
.pain-card {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--accent);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.pain-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}
.pain-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pain-line {
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
  font-size: 14px;
}
.pain-card p:last-child {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== Stats ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, background .25s ease;
}
.stat:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.stat-number {
  font-size: clamp(56px, 6.5vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 30px;
}
.stat p {
  font-size: 14px;
  color: rgba(245, 239, 224, 0.7);
  line-height: 1.6;
}
.source {
  margin-top: 50px;
  font-size: 12px;
  font-style: italic;
  color: rgba(245, 239, 224, 0.5);
}

/* ========== Product ========== */
.product { background: var(--paper); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-huge {
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 18px 0 30px;
}
.tagline {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
}
.step-list { display: flex; flex-direction: column; gap: 24px; }
.step-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.step-list h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.step-list p { color: var(--muted); font-size: 15px; }
.product-image img {
  margin: 0 auto;
  max-height: 700px;
  filter: drop-shadow(0 50px 60px rgba(40,30,20,0.2));
}

/* ========== How ========== */
.how { background: var(--cream); }
.step-card {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}
.step-card:hover { transform: translateY(-6px); }
.step-big {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.how-tagline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  font-style: italic;
  text-align: center;
  margin-top: 60px;
  letter-spacing: -0.01em;
}

/* ========== Specs ========== */
.specs { background: var(--paper); }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.specs-image img { max-height: 600px; margin: 0 auto; }
.specs-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.spec-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.2fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.spec-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.spec-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.spec-note {
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
}

/* ========== Network ========== */
.network { background: var(--cream); }
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.network .meta {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 36px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.check-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
}
.check-list h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.check-list p { color: var(--muted); font-size: 14.5px; }
.network-image img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

/* ========== Compare table ========== */
.compare { background: var(--paper); }
.compare-table {
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ct-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1.2fr;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.ct-row:last-child { border-bottom: none; }
.ct-head {
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
}
.ct-head .ct-us {
  background: var(--accent);
  margin: -22px -28px -22px 0;
  padding: 22px 28px;
  color: var(--cream);
}
.ct-label {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ct-us {
  color: var(--accent);
  font-weight: 700;
}

/* ========== Lifestyle bento ========== */
.lifestyle { background: var(--cream); }
.bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 720px;
  margin-bottom: 60px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
  cursor: default;
  isolation: isolate;
  box-shadow: 0 20px 50px -25px rgba(40,30,20,0.35);
  transition: transform .35s ease, box-shadow .35s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -25px rgba(40,30,20,0.45);
}
.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.bento-card:hover img { transform: scale(1.06); }
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14, 13, 12, 0.85) 100%);
  z-index: 1;
}
.bento-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 26px;
  z-index: 2;
  color: var(--cream);
  transform: translateY(8px);
  transition: transform .35s ease;
}
.bento-card:hover figcaption { transform: translateY(0); }
.lf-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--cream);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.bento-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--cream);
}
.bento-card p {
  font-size: 14px;
  color: rgba(245, 239, 224, 0.78);
  line-height: 1.5;
}
.lf-1 { grid-column: 1; grid-row: 1 / 3; }
.lf-2 { grid-column: 2 / 4; grid-row: 1; }
.lf-3 { grid-column: 2; grid-row: 2; }
.lf-4 { grid-column: 3; grid-row: 2; }
.lf-1 h3 { font-size: 34px; }

/* ========== GTM ========== */
.gtm { background: var(--black); }
.phase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, background .25s ease;
}
.phase-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); }
.phase-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.phase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.phase-card:hover .phase-photo img { transform: scale(1.05); }
.phase-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 13, 12, 0.6) 100%);
}
.phase-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 280px;
}
.phase-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.phase-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.phase-body > p {
  color: rgba(245, 239, 224, 0.65);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.phase-target {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phase-target span {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(245, 239, 224, 0.5);
  text-transform: uppercase;
}
.phase-target strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
}

/* ========== Pricing ========== */
.pricing { background: var(--cream); }
.price-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border-top: 4px solid var(--accent);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.price-card.primary {
  background: var(--ink);
  color: var(--cream);
}
.price-card.primary h3,
.price-card.primary .price-num,
.price-card.primary .price-currency,
.price-card.primary .price-unit { color: var(--cream); }
.price-card.primary .price-desc,
.price-card.primary ul li { color: rgba(245, 239, 224, 0.7); }
.price-card.primary ul li::before { background: var(--accent); }
.price-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.price-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.price-currency {
  font-size: 24px;
  font-weight: 700;
}
.price-num {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-unit {
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
}
.price-desc {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 24px;
  flex: 1;
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 22px;
}
.price-card.primary ul { border-top-color: rgba(255,255,255,0.12); }
.price-card ul li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ========== Growth ========== */
.growth { background: var(--paper); }
.growth-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.chart-wrap {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 30px;
  text-align: center;
}
.chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: end;
  height: 320px;
  flex: 1;
}
.bar {
  background: linear-gradient(180deg, var(--accent), #A6411F);
  border-radius: 6px 6px 0 0;
  height: calc(var(--h, 0%));
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 6px;
  animation: grow 1s ease-out;
  transform-origin: bottom;
}
@keyframes grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.bar-num {
  position: absolute;
  top: -28px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.bar-label {
  position: absolute;
  bottom: -28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.chart-foot {
  margin-top: 50px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.econ-box {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.econ-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.econ-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.econ-row:last-child { border-bottom: none; }
.econ-row span { color: rgba(245,239,224,0.65); }
.econ-row strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ========== Competition ========== */
.competition { background: var(--cream); }
.map-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.map {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  height: 480px;
  border: 1px dashed var(--line);
}
.map::before, .map::after {
  content: '';
  position: absolute;
  background: var(--line);
}
.map::before {
  top: 50%; left: 5%; right: 5%;
  height: 1px;
  border-top: 1px dashed var(--line);
  background: transparent;
}
.map::after {
  left: 50%; top: 5%; bottom: 5%;
  width: 1px;
  border-left: 1px dashed var(--line);
  background: transparent;
}
.axis-x, .axis-y {
  position: absolute;
  display: flex;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.axis-x {
  top: 14px;
  left: 0; right: 0;
  justify-content: space-around;
}
.axis-y {
  flex-direction: column;
  justify-content: space-between;
  left: 14px;
  top: 40px;
  bottom: 14px;
}
.bubble {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  transition: transform .25s ease;
}
.bubble:hover { transform: translate(-50%, -50%) scale(1.06); }
.bubble.light {
  background: var(--cream-2);
  color: var(--ink);
}
.bubble.us {
  background: var(--accent);
  color: var(--cream);
  font-size: 16px;
  padding: 16px 30px;
  box-shadow: 0 16px 36px -12px rgba(199,82,42,0.55);
  animation: pulse-us 2.4s ease-in-out infinite;
}
@keyframes pulse-us {
  0%, 100% { box-shadow: 0 16px 36px -12px rgba(199,82,42,0.55); }
  50% { box-shadow: 0 16px 50px -8px rgba(199,82,42,0.85); }
}
.position-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 16px 0 28px;
}
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dot-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.dot-list li span {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* ========== Raise ========== */
.raise { background: var(--black); }
.raise-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 60px;
}
.raise-tag {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.amount-huge {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.amount-huge .rm {
  font-size: clamp(40px, 5vw, 64px);
}
.amount-huge .num {
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.9;
}
.amount-sub {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(245,239,224,0.65);
  font-style: italic;
}
.raise-uses {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.use-row { display: flex; flex-direction: column; gap: 8px; }
.use-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--cream);
}
.use-head strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.use-head span {
  font-size: 14px;
  color: rgba(245,239,224,0.65);
}
.use-bar {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  height: 10px;
}
.use-bar i {
  display: block;
  width: var(--w, 0%);
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 1s ease-out;
}
.deliverables {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}
.del-tag {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.del-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.del-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.del-grid strong {
  font-size: 32px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.del-grid span {
  font-size: 14px;
  color: rgba(245,239,224,0.65);
}

/* ========== Closing ========== */
.closing {
  background: var(--cream);
  padding: 140px 0;
}
.closing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.closing-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.closing-tag {
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
.contact {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  color: var(--ink-2);
}
.contact a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.contact a:hover { color: var(--accent); border-color: var(--accent); }
.thanks {
  margin-top: 36px;
  font-style: italic;
  color: var(--muted);
}
.closing-image img {
  max-height: 540px;
  margin: 0 auto;
  filter: drop-shadow(0 50px 60px rgba(40,30,20,0.18));
  animation: float 6s ease-in-out infinite;
}

/* ========== Footer ========== */
.footer {
  background: var(--ink);
  color: rgba(245,239,224,0.6);
  padding: 30px 0;
  font-size: 13px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .hero-grid,
  .product-grid,
  .specs-grid,
  .network-grid,
  .map-grid,
  .growth-grid,
  .raise-grid,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .card-grid.four,
  .card-grid.three,
  .stats-grid,
  .del-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .ct-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 22px;
  }
  .ct-head { display: none; }
  .ct-row {
    border-bottom: 8px solid var(--paper);
  }
  .ct-label { font-size: 13px; color: var(--accent); margin-bottom: 6px; }
  .map { height: 420px; }
  .bubble { padding: 10px 16px; font-size: 12px; }
  .bubble.us { font-size: 14px; padding: 12px 22px; }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
    height: auto;
  }
  .lf-1 { grid-column: 1 / 3; grid-row: 1; }
  .lf-2 { grid-column: 1 / 3; grid-row: 2; }
  .lf-3 { grid-column: 1; grid-row: 3; }
  .lf-4 { grid-column: 2; grid-row: 3; }
  .lf-1 h3 { font-size: 26px; }
}

@media (max-width: 640px) {
  .container, .nav-inner, .hero-grid { padding-left: 20px; padding-right: 20px; }
  .card-grid.four,
  .card-grid.three,
  .stats-grid,
  .del-grid {
    grid-template-columns: 1fr;
  }
  .float-card { min-height: 380px; }
  .float-card img { max-height: 460px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .nav-cta { display: none; }
  .nav-login { padding: 6px 12px; font-size: 12px; }
  .hero-marquee { font-size: 16px; }
  .marquee-track { font-size: 16px; }
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }
  .lf-1, .lf-2, .lf-3, .lf-4 {
    grid-column: 1;
  }
  .lf-1 { grid-row: 1; }
  .lf-2 { grid-row: 2; }
  .lf-3 { grid-row: 3; }
  .lf-4 { grid-row: 4; }
}
