:root {
  --cream: #fbf7ef;
  --white: #ffffff;
  --soft-gold: #d7b76a;
  --gold-dark: #a77b23;
  --navy: #14213d;
  --charcoal: #263238;
  --muted: #6b7280;
  --line: #e9dfcf;
  --green: #587c67;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: 100%;
  padding: 22px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--soft-gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-wrap h1 {
  margin: 0;
  font-size: 19px;
  color: var(--navy);
}

.logo-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta, .primary-btn, .secondary-btn {
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-block;
  font-weight: 800;
}

.nav-cta, .primary-btn {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.2);
}

.secondary-btn {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}

.hero {
  min-height: 720px;
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(215,183,106,0.25), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(88,124,103,0.16), transparent 26%),
    var(--cream);
}

.eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 900;
}

.hero h2, .section-heading h2, .split-section h2, .trial-section h2 {
  color: var(--navy);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  margin: 16px 0;
  letter-spacing: -0.05em;
}

.hero-text {
  font-size: 20px;
  max-width: 680px;
  color: #3f4a56;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.microcopy {
  color: var(--muted);
  font-size: 13px;
  margin-top: 18px;
}

.dashboard-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  background: var(--line);
  border-radius: 999px;
}

.dashboard-card h3 {
  color: var(--navy);
  font-size: 26px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric-grid div {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}

.metric-grid strong {
  display: block;
  font-size: 34px;
  color: var(--green);
}

.metric-grid small {
  color: var(--muted);
  font-weight: 700;
}

.assistant-box {
  margin-top: 20px;
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(215,183,106,0.22), rgba(88,124,103,0.13));
  border: 1px solid var(--line);
}

.trust-strip {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 7%;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
}

.section {
  padding: 90px 7%;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 5vw, 54px);
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article, .light-card, .price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(20,33,61,0.08);
}

.feature-grid h3, .light-card h3, .price-card h3 {
  color: var(--navy);
  margin-top: 0;
}

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

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
  background: white;
}

.split-section h2 {
  font-size: clamp(32px, 5vw, 54px);
}

.disclaimer {
  background: #fbfaf7;
  border-left: 5px solid var(--soft-gold);
  padding: 18px;
  border-radius: 14px;
}

.light-card ul, .price-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.pricing-section {
  background: var(--cream);
}

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

.price-card {
  position: relative;
}

.price-card.featured {
  transform: translateY(-14px);
  border: 2px solid var(--soft-gold);
}

.badge {
  position: absolute;
  right: 22px;
  top: 22px;
  background: rgba(215,183,106,0.2);
  color: var(--gold-dark);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

.price {
  font-size: 42px;
  color: var(--navy);
  font-weight: 900;
  margin: 10px 0;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.trial-section {
  margin: 0 7% 80px;
  border-radius: 34px;
  padding: 60px;
  background: linear-gradient(135deg, white, #f7edd7);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  box-shadow: var(--shadow);
}

.trial-section h2 {
  font-size: clamp(30px, 4vw, 50px);
}

form {
  display: grid;
  gap: 14px;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  font-size: 16px;
  background: white;
}

button {
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

form small {
  color: var(--muted);
}

footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 28px 7%;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header, nav, footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero, .split-section, .trial-section {
    grid-template-columns: 1fr;
  }

  .feature-grid, .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .feature-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero, .section {
    padding: 60px 6%;
  }

  .trial-section {
    margin: 0 6% 60px;
    padding: 34px;
  }

  nav {
    width: 100%;
  }
}
