:root {
  --ink: #0d1114;
  --slate: #1d2630;
  --fog: #e6e8ec;
  --cloud: #f6f4f1;
  --sun: #ffb15e;
  --citrus: #ff7a3e;
  --mint: #5ed4b7;
  --ocean: #2c6cf5;
  --rose: #f35b83;
  --shadow: rgba(13, 17, 20, 0.12);
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff1e0 0%, #f7f4ef 45%, #eef1f6 100%);
  line-height: 1.5;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 244, 241, 0.7);
  backdrop-filter: blur(16px);
  z-index: 10;
  border-bottom: 1px solid rgba(13, 17, 20, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--citrus), var(--ocean));
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}

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

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 3.4vw, 3.9rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.primary {
  background: linear-gradient(135deg, var(--citrus), var(--sun));
  color: #1c1410;
  box-shadow: 0 12px 24px rgba(255, 122, 62, 0.2);
}

.cta.secondary {
  background: #ffffff;
  border: 1px solid rgba(13, 17, 20, 0.1);
  color: var(--slate);
}

.cta.ghost {
  background: transparent;
  border: 1px solid rgba(13, 17, 20, 0.2);
}

.cta.small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.cta.full {
  width: 100%;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--shadow);
}

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

.metric {
  font-weight: 700;
  font-size: 1.1rem;
}

.metric-label {
  color: var(--slate);
  font-size: 0.85rem;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(13, 17, 20, 0.15);
  border: 1px solid rgba(13, 17, 20, 0.06);
  animation: float 6s ease-in-out infinite;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(94, 212, 183, 0.2);
}

.chip {
  background: rgba(44, 108, 245, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--ocean);
}

.card-body {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.signal {
  background: #f7f7fb;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.signal-title {
  font-size: 0.85rem;
  color: var(--slate);
}

.signal-value {
  font-size: 1.3rem;
  font-weight: 700;
}

.signal-trend {
  font-size: 0.8rem;
}

.signal-trend.up {
  color: #1f9a6c;
}

.signal-trend.down {
  color: #d24f3c;
}

.forecast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(44, 108, 245, 0.12), rgba(94, 212, 183, 0.2));
  border-radius: 16px;
  padding: 16px;
}

.forecast-title {
  font-size: 0.85rem;
  color: var(--slate);
}

.forecast-value {
  font-weight: 700;
  font-size: 1.4rem;
}

.hero-glow {
  position: absolute;
  inset: auto 0 -120px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 122, 62, 0.2), transparent 70%);
}

.section {
  padding: 70px 0;
}

.section-title {
  max-width: 680px;
  margin-bottom: 40px;
}

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

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(13, 17, 20, 0.08);
  box-shadow: 0 12px 24px rgba(13, 17, 20, 0.06);
  transition: transform 0.2s ease;
  opacity: 0;
  transform: translateY(16px);
}

.feature-card:hover {
  transform: translateY(-6px);
}

.tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 177, 94, 0.25);
}

.proof {
  background: linear-gradient(135deg, #f4f6fb 0%, #fff4ee 100%);
}

.proof-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quote-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(13, 17, 20, 0.08);
  opacity: 0;
  transform: translateY(16px);
}

.quote-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
}

.logo-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
  color: var(--slate);
}

.pricing {
  position: relative;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(13, 17, 20, 0.08);
  box-shadow: 0 16px 28px rgba(13, 17, 20, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(16px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.price-card.featured {
  border: 2px solid rgba(255, 122, 62, 0.5);
  transform: translateY(-8px);
}

.price-card.featured.reveal {
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--ink);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0;
}

.price span {
  font-size: 0.9rem;
  color: var(--slate);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
  color: var(--slate);
}

.faq-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq h3 {
  margin-bottom: 8px;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(255, 122, 62, 0.18), rgba(44, 108, 245, 0.16));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(13, 17, 20, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--slate);
  font-size: 0.9rem;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--slate);
}

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

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cta-actions .cta {
    width: 100%;
  }

  .hero {
    padding-top: 60px;
  }
}
