:root {
  color-scheme: light;
  --ink: #0b0f14;
  --muted: #4b5563;
  --brand: #0f766e;
  --brand-2: #f59e0b;
  --bg: #f7f3ee;
  --surface: #ffffff;
  --line: #e6e1d8;
  --shadow: 0 24px 60px rgba(12, 18, 28, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body { position: relative; }

body::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 60vh;
  background: radial-gradient(circle at 20% 30%, rgba(15, 118, 110, 0.18), transparent 60%),
              radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.4), transparent 40%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
.hidden { display: none; }

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 18, 28, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover { color: var(--brand); }

.cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.26);
}

.btn-secondary {
  border-color: rgba(15, 118, 110, 0.2);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}

.btn:hover { transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 72px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
}

.headline {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 16px 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.metric strong { font-size: 1.4rem; display: block; }

.hero-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 40%);
}

.hero-card-content { position: relative; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  color: #92400e;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 12px 0 0;
}

.logo-chip {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--muted);
}

.mockup-chart {
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.18), rgba(245, 158, 11, 0.12));
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 12px;
}

.mockup-chart span {
  width: 14%;
  border-radius: 8px 8px 0 0;
  background: rgba(15, 118, 110, 0.5);
}

.testimonial-carousel {
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(12, 18, 28, 0.08);
  min-height: 200px;
}

.testimonial-slide.is-hidden { display: none; }

.testimonial-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
  border: none;
}

.testimonial-dot.is-active { background: var(--brand); }

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(12, 18, 28, 0.18);
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-cta .primary {
  background: var(--brand);
  color: #fff;
}

.mobile-cta .secondary {
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand);
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.section p { color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(12, 18, 28, 0.08);
}

.feature span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 600;
}

.highlight {
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.12));
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
}

.highlight h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
}

.minisite-preview {
  border-radius: 24px;
  background: #0b0f14;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(12, 18, 28, 0.18);
}

.minisite-frame {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
}

.testimonial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.quote {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  position: relative;
}

.quote::before {
  content: "\"";
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: rgba(15, 118, 110, 0.2);
  position: absolute;
  top: 10px;
  left: 20px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.price-card {
  border-radius: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}

.price-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.price-card.highlight {
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: var(--shadow);
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand);
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

details {
  background: var(--surface);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.92), rgba(13, 148, 136, 0.82));
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: start;
}

.cta-band p {
  color: #f8fafc;
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.hero-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 118, 110, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(245, 158, 11, 0.16), transparent 55%),
    linear-gradient(180deg, #f7f3ee, #ffffff);
}

.v2-surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.reveal { opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .cta-group { width: 100%; justify-content: flex-end; }
  .hero { padding-top: 50px; }
}

@media (max-width: 640px) {
  .cta-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .cta-band { padding: 28px; }
  .highlight { padding: 28px; }
  .mobile-cta { display: flex; }
  .minisite-frame { height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .btn { transition: none; }
}
