:root {
  --bg: #FAF7F2;
  --bg-warm: #FEF3E2;
  --fg: #1B1A17;
  --fg-muted: #6B5E4A;
  --accent: #E07B39;
  --accent-dark: #B85C28;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --cream: #FAF7F2;
  --warm-border: #E8D9C5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0; left: 50%;
  width: 55%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--bg-warm);
  z-index: 0;
}

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

.hero-left {
  padding-right: 20px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 28px;
}

.hero-headline .line-one {
  display: block;
  font-size: clamp(52px, 6vw, 80px);
}

.hero-headline .line-two {
  display: block;
  font-size: clamp(52px, 6vw, 80px);
  color: var(--accent);
}

.hero-headline .line-three {
  display: block;
  font-size: clamp(52px, 6vw, 80px);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.3;
  max-width: 100px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--warm-border);
}

.hero-right {
  position: relative;
  z-index: 1;
}

.hero-illustration {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12);
}

.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Bridge ── */
.bridge {
  background: var(--green);
  padding: 80px 60px;
  color: var(--cream);
}

.bridge-inner { max-width: 1200px; margin: 0 auto; }

.bridge-headline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.bridge-headline h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
}

.bridge-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.bridge-col { }

.bridge-col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cream);
}

.bridge-col p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
  color: var(--cream);
}

.bridge-col.students h3 { color: #F5C842; }
.bridge-col.businesses h3 { color: #E07B39; }

.connector {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.floater-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.floater-1 { top: 12%; left: 8%; }
.floater-2 { top: 55%; left: 3%; }
.floater-3 { top: 20%; right: 5%; }
.floater-4 { bottom: 18%; right: 10%; }

@media (max-width: 768px) {
  .floater-shape { display: none; }
}

.connector-tag {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  opacity: 0.8;
}

/* ── How It Works ── */
.how-it-works {
  padding: 80px 60px;
  background: var(--bg);
}

.hiw-inner { max-width: 1200px; margin: 0 auto; }

.hiw-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 60px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hiw-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.step-content > p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.step-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon { flex-shrink: 0; margin-top: 2px; }

.step-features strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.step-features span {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.step-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--warm-border);
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-stat span {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}

.mini-stat label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ── Pricing ── */
.pricing {
  padding: 80px 60px;
  background: var(--bg-warm);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
}

.pricing-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
  border: 2px solid var(--warm-border);
}

.pricing-card.exclusivity {
  border-color: var(--green);
  position: relative;
}

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.plan-label {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--fg-muted);
}

.card-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}

.plan-features li.excluded { color: var(--fg-muted); }
.plan-features li.excluded .check { opacity: 0.5; }

.check { flex-shrink: 0; }

/* ── Channels ── */
.channels {
  padding: 80px 60px;
  background: var(--bg);
}

.channels-inner { max-width: 1200px; margin: 0 auto; }

.channels h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.channels-intro {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.channels-diagram {
  width: 100%;
  aspect-ratio: 5 / 2;
  margin-bottom: 50px;
}

.channels-svg {
  width: 100%;
  height: 100%;
}

.channel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.channel-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--warm-border);
}

.channel-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-text strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.channel-text span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Guarantee ── */
.guarantee {
  padding: 80px 60px;
  background: var(--green);
  color: var(--cream);
}

.guarantee-inner { max-width: 1200px; margin: 0 auto; }

.guarantee h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 50px;
}

.guarantee-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.guarantee-side {
  padding: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}

.guarantee-side .section-label { color: var(--accent); }

.side-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 16px;
}

.side-big {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #F5C842;
  line-height: 1;
  margin-bottom: 16px;
}

.side-big.free-text { color: var(--cream); }

.side-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250,247,242,0.7);
  margin-bottom: 24px;
}

.mini-chart {
  background: rgba(250,247,242,0.05);
  border-radius: 10px;
  padding: 16px 12px 8px;
  aspect-ratio: 2 / 1;
}

.chart-svg { width: 100%; height: 100%; }

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.chart-labels span {
  font-size: 10px;
  color: rgba(250,247,242,0.4);
}

.invoice-visual {
  display: flex;
  justify-content: center;
}

.invoice-svg {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 14 / 9;
  height: 100%;
}

.guarantee-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.divider-line {
  width: 2px;
  height: 120px;
  background: rgba(250,247,242,0.2);
}

.divider-or {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.5;
}

/* ── Manifesto ── */
.manifesto {
  padding: 80px 60px;
  background: var(--bg-warm);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.manifesto-content blockquote {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 24px;
  font-style: italic;
}

.manifesto-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.manifesto-content p:last-child { margin-bottom: 0; }

.manifesto-visual { flex-shrink: 0; }
.manifesto-svg { width: 180px; height: 180px; }

/* ── Footer ── */
.site-footer {
  background: var(--green);
  color: var(--cream);
  padding: 60px 60px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(250,247,242,0.12);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250,247,242,0.35);
  letter-spacing: 0.03em;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { display: none; }
  .hero-left { padding-right: 0; }
  .hero-illustration {
    margin-top: 20px;
    aspect-ratio: 4 / 3;
  }
  .channels-diagram { aspect-ratio: 16 / 9; }
  .mini-chart { aspect-ratio: 16 / 9; }
  .invoice-svg { max-width: 120px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  
  .bridge { padding: 60px 24px; }
  .bridge-columns { grid-template-columns: 1fr; gap: 32px; }
  .connector { display: none; }
  
  .how-it-works { padding: 60px 24px; }
  .hiw-steps { grid-template-columns: 1fr; }
  
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  
  .channels { padding: 60px 24px; }
  .channel-list { grid-template-columns: 1fr; }
  
  .guarantee { padding: 60px 24px; }
  .guarantee-visual { grid-template-columns: 1fr; }
  .guarantee-divider { flex-direction: row; }
  .divider-line { width: 80px; height: 2px; }
  
  .manifesto { padding: 60px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-visual { display: none; }
  
  .site-footer { padding: 60px 24px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
}
