:root {
  --bg: #faf8f4;
  --bg-dark: #1a3a24;
  --bg-card: #f0ece4;
  --fg: #1a1a18;
  --fg-light: #6b6b5d;
  --fg-muted: #9c9c8e;
  --accent: #e89b3c;
  --accent-dark: #c47d24;
  --green: #1a3a24;
  --green-light: #2d5c3d;
  --green-subtle: rgba(26, 58, 36, 0.08);
  --cream: #faf8f4;
  --amber: #e89b3c;
  --amber-light: rgba(232, 155, 60, 0.12);
  --amber-border: rgba(232, 155, 60, 0.3);
  --border: rgba(26, 58, 36, 0.12);
  --shadow: 0 1px 3px rgba(26,58,36,0.08), 0 4px 16px rgba(26,58,36,0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  background: var(--cream);
  padding: 0 0 80px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  border: 1px solid var(--amber-border);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
}

.proof-item:first-child { padding-left: 0; }

.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.proof-label {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}

/* Hero visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 340px;
  height: 340px;
}

.visual-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.card-1 {
  top: 20px;
  left: 0;
  min-width: 220px;
  animation: float 4s ease-in-out infinite;
}

.card-2 {
  top: 110px;
  right: 0;
  min-width: 200px;
  animation: float 4s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 30px;
  left: 30px;
  min-width: 200px;
  animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-subtle);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon--amber { background: var(--amber-light); color: var(--accent-dark); }
.card-icon--green { background: rgba(26,58,36,0.08); color: var(--green); }

.card-label { font-size: 11px; color: var(--fg-muted); font-weight: 400; }
.card-value { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg); }

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(26,58,36,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit-dots { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.dot-1 { top: -130px; left: -4px; }
.dot-2 { top: -4px; left: 130px; }
.dot-3 { top: 130px; left: -4px; }

/* Ticker */
.hero-ticker {
  margin-top: 80px;
  background: var(--green);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.ticker-sep { color: var(--accent) !important; }

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-light);
  max-width: 480px;
  margin-bottom: 64px;
}

/* TEMPLATES */
.templates {
  padding: 100px 0;
  background: var(--cream);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.template-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.template-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,58,36,0.1);
}

.template-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(to bottom, #fffdf8, white);
}

.t-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-display);
}

.t-card-icon {
  color: var(--green);
  margin-bottom: 20px;
}

.t-card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.t-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.t-card-desc {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.t-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-card-features span {
  font-size: 13px;
  color: var(--fg-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-card-features span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.t-card-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.t-card-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.t-card-cta:active {
  transform: scale(0.98);
}

/* BUNDLES */
.bundles {
  padding: 100px 0;
  background: var(--bg);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bundle-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.2s;
}

.bundle-card:hover { transform: translateY(-2px); }

.bundle-card--featured {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.b-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.b-badge--amber { color: var(--accent); }

.b-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.b-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 32px;
}

.bundle-card--featured .b-price { color: white; }

.b-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b-features li {
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bundle-card--featured .b-features li { color: rgba(255,255,255,0.85); }

.b-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-subtle);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-6' stroke='%231a3a24' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.bundle-card--featured .b-features li::before {
  background-color: rgba(255,255,255,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.b-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: var(--green-subtle);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.b-cta:hover { background: rgba(26,58,36,0.14); }

.b-cta--primary {
  background: var(--accent);
  color: white;
}

.b-cta--primary:hover { background: var(--accent-dark); }

/* MATH */
.math {
  padding: 100px 0;
  background: var(--cream);
}

.math-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.math-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.math-sub {
  font-size: 16px;
  color: var(--fg-light);
  line-height: 1.65;
  margin-bottom: 36px;
}

.math-advantages {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.adv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

.adv-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Workflow */
.math-workflow {
  display: flex;
  flex-direction: column;
}

.wf-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.wf-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  width: 28px;
  flex-shrink: 0;
  padding-top: 3px;
}

.wf-content {
  padding-bottom: 24px;
}

.wf-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.wf-desc {
  font-size: 13px;
  color: var(--fg-light);
  line-height: 1.5;
}

.wf-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin-left: 13px;
  margin-bottom: 4px;
}

/* INDUSTRIES */
.industries {
  padding: 100px 0;
  background: var(--bg);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.industry-card--general {
  background: var(--green);
  border-color: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.industry-card--general .ind-label,
.industry-card--general .ind-general-desc,
.industry-card--general .ind-general-cta {
  color: white;
}

.ind-visual {
  position: relative;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
}

.ind-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 { width: 60px; height: 60px; top: 0; right: 20px; background: var(--amber-light); }
.shape-2 { width: 30px; height: 30px; top: 20px; left: 40px; background: var(--green-subtle); }
.shape-3 { width: 50px; height: 50px; top: 0; right: 10px; background: var(--amber-light); }
.shape-4 { width: 25px; height: 25px; bottom: 20px; left: 0; background: var(--green-subtle); }
.shape-5 { width: 55px; height: 55px; top: 0; right: 30px; background: var(--amber-light); }
.shape-6 { width: 20px; height: 20px; bottom: 10px; left: 20px; background: var(--green-subtle); }
.shape-7 { width: 48px; height: 48px; top: 0; right: 10px; background: var(--amber-light); }
.shape-8 { width: 28px; height: 28px; bottom: 15px; left: 30px; background: var(--green-subtle); }
.shape-9 { width: 52px; height: 52px; top: 0; right: 20px; background: var(--amber-light); }
.shape-10 { width: 22px; height: 22px; bottom: 10px; left: 10px; background: var(--green-subtle); }

.ind-icon-wrap {
  position: relative;
  z-index: 1;
  color: var(--green);
}

.ind-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.ind-desc {
  font-size: 13px;
  color: var(--fg-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ind-tags span {
  font-size: 11px;
  font-weight: 500;
  background: var(--green-subtle);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 100px;
}

.ind-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.ind-general-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.ind-general-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 0;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 48px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--green);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.manifesto-sub {
  font-size: 16px;
  color: var(--fg-light);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 100px 0 120px;
  background: var(--green);
}

.closing-inner {
  text-align: center;
}

.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 60px;
  line-height: 1.65;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 48px;
}

.cta-start { text-align: left; }

.cta-price-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

.cta-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.cta-right { text-align: left; }

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.cta-features span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-features span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* FOOTER */
.footer {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 320px;
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sep { opacity: 0.5; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .template-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .math-inner { grid-template-columns: 1fr; gap: 48px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-cta { flex-direction: column; gap: 24px; text-align: center; }
  .cta-start, .cta-right { text-align: center; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 80px 24px 0; }
  .section-inner { padding: 0 24px; }
  .section-heading { font-size: 30px; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }
  .industry-grid { grid-template-columns: 1fr; }
  .hero-ticker { padding: 12px 0; }
  .closing-cta { padding: 24px; }
  .footer-inner { padding: 0 24px; }
}