:root {
  --bg: #f7f0e7;
  --bg-2: #f3e4d1;
  --surface: #fffcf7;
  --surface-2: #fff7ed;
  --text: #2e1f14;
  --muted: #6f5745;
  --line: rgba(108, 76, 50, 0.22);
  --brand: #c56a27;
  --brand-2: #9e4f19;
  --ok: #1f7d53;
  --shadow-lg: 0 30px 60px rgba(75, 42, 20, 0.16);
  --shadow-md: 0 16px 30px rgba(75, 42, 20, 0.12);
  --radius-lg: 26px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at -4% -15%, #ffe9ce 0%, transparent 62%),
    radial-gradient(900px 460px at 100% -10%, #f4dbbf 0%, transparent 60%),
    linear-gradient(180deg, var(--bg), #f9f3eb 38%, #f8f1e8 100%);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.72rem;
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
}

.ambient-top {
  width: 360px;
  height: 360px;
  right: -100px;
  top: -90px;
  background: rgba(255, 201, 150, 0.45);
  animation: bob 8s ease-in-out infinite;
}

.ambient-bottom {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: 7vh;
  background: rgba(230, 166, 109, 0.25);
  animation: bob 10s ease-in-out infinite reverse;
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(14px);
  }

  100% {
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 72, 44, 0.12);
  background: rgba(251, 244, 235, 0.72);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.16rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  color: #fff8ef;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-switch {
  display: inline-flex;
  gap: 0.22rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem;
  background: rgba(255, 250, 243, 0.88);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.32rem 0.52rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(253, 236, 217, 0.8);
}

.lang-btn.active {
  color: #fff8ef;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 0.48rem 0.9rem;
  font: inherit;
  font-weight: 600;
}

.hero {
  padding-top: 5.4rem;
  padding-bottom: 4.1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(175, 112, 65, 0.35);
  background: rgba(255, 248, 239, 0.92);
  color: #8f4c1e;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.82rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  max-width: 16ch;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-inline-link {
  align-self: center;
  color: var(--muted);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-inline-link:hover {
  color: var(--text);
}

.hero-demo-note {
  margin-top: 0.7rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: #5b3e2a;
  font-weight: 600;
}

.hero-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.hero-points li {
  color: #5f432f;
  font-weight: 600;
  font-size: 0.94rem;
}

.hero-trust {
  margin-top: 0.92rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ok);
}

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

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

.btn-primary {
  color: #fffaf4;
  background: linear-gradient(145deg, var(--brand), #d07d3d);
  box-shadow: 0 14px 24px rgba(151, 85, 33, 0.3);
}

.btn-secondary {
  border-color: rgba(111, 80, 55, 0.35);
  background: rgba(255, 251, 245, 0.84);
}

.hero-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 102, 66, 0.3);
  background: linear-gradient(166deg, #fff9f0, #f8e2c8 68%, #f5d6b2);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem;
}

.hero-panel h2 {
  font-size: clamp(1.4rem, 3.3vw, 2rem);
}

.hero-panel-value {
  margin-top: 0.8rem;
  margin-bottom: 0;
  border-radius: 12px;
  border: 1px solid rgba(132, 87, 56, 0.25);
  background: rgba(255, 253, 248, 0.82);
  padding: 0.82rem;
  color: #4d311f;
  font-weight: 700;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.hero-panel li {
  border-radius: 12px;
  border: 1px solid rgba(132, 87, 56, 0.25);
  background: rgba(255, 253, 248, 0.82);
  padding: 0.72rem;
  display: grid;
  gap: 0.1rem;
}

.hero-panel strong {
  font-size: 1.08rem;
}

.hero-panel span {
  color: #664a38;
  font-size: 0.88rem;
}

.steps,
.demo-cta,
.why,
.features,
.pricing,
.milestones,
.peak,
.faq,
.final-cta {
  padding-block: 4.6rem;
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head h2,
.final-cta h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  max-width: 24ch;
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
}

.why-intro {
  margin-bottom: 0.65rem;
  color: #5d3f2b;
  font-weight: 700;
}

.steps-grid,
.feature-grid,
.price-grid,
.milestone-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-cta-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 102, 66, 0.32);
  background: linear-gradient(160deg, #fff4e5, #ffe8cc 56%, #f7d9b8);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
}

.demo-cta-card h2 {
  max-width: 22ch;
}

.demo-cta-card p {
  color: #5d3f2b;
  max-width: 68ch;
}

.demo-caption {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #68462e;
}

.step-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.step-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  color: #5c2f14;
  background: linear-gradient(150deg, #f9d4ac, #efba85);
  margin-bottom: 0.72rem;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.why-points,
.calc-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: rgba(255, 253, 249, 0.93);
}

.why-points {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.why-points li {
  border-radius: 12px;
  border: 1px solid rgba(123, 89, 62, 0.26);
  background: var(--surface);
  padding: 0.72rem 0.8rem;
  font-weight: 600;
}

.calc-card {
  padding: 1rem;
  background: linear-gradient(162deg, #fff8ee, #f8ead8);
}

.calc-card h3 {
  margin-bottom: 0.58rem;
}

.calc-card label {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.calc-card input {
  width: 100%;
  border: 1px solid rgba(110, 81, 57, 0.34);
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
  background: #fffcf8;
}

.calc-card input:focus {
  outline: 2px solid rgba(194, 123, 64, 0.42);
  border-color: rgba(149, 95, 50, 0.62);
}

.calc-helper {
  margin-top: 0.52rem;
  margin-bottom: 0.58rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.calc-result {
  margin: 0;
  color: #4f321f;
  font-weight: 700;
  font-size: 1.03rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.93);
  box-shadow: var(--shadow-md);
  padding: 1.15rem;
}

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

.price-grid {
  grid-template-columns: 1fr 1fr;
}

.pricing-intro {
  margin-bottom: 1rem;
  color: #5a3b25;
  font-weight: 700;
}

.price-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.price-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-card li {
  margin-bottom: 0.42rem;
}

.price {
  font-size: 2.2rem;
}

.price span {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card.featured {
  border-color: rgba(160, 93, 42, 0.46);
  background: linear-gradient(168deg, #fff7eb, #ffe9ce 85%);
  transform: translateY(-4px);
}

.chip {
  position: absolute;
  top: -12px;
  right: 14px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--brand-2), #b3672d);
  color: #fff7ef;
  padding: 0.34rem 0.66rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.compare {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 560px;
}

.compare th,
.compare td {
  border-bottom: 1px solid rgba(112, 81, 56, 0.2);
  padding: 0.76rem 0.84rem;
  text-align: left;
}

.compare th {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5a3a24;
  background: rgba(255, 244, 229, 0.9);
}

.compare td {
  color: var(--muted);
}

.compare tr:last-child td {
  border-bottom: 0;
}

.milestone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.milestone-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.milestone-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.transition-note {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.93);
  box-shadow: var(--shadow-md);
  padding: 1.1rem;
}

.transition-note p {
  color: #5d3f2b;
  margin: 0;
  font-weight: 700;
}

.peak-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.peak-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.peak-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.74rem;
}

.faq-list details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.93);
  box-shadow: var(--shadow-md);
  padding: 0.96rem 1rem 0.62rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

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

.final-cta {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(143, 95, 58, 0.3);
  background: linear-gradient(160deg, #f7d8b8, #eebf8f 55%, #f4d6b5);
  box-shadow: var(--shadow-lg);
  margin-bottom: 4.6rem;
  padding: 2rem;
}

.final-cta p {
  color: #553523;
  max-width: 68ch;
}

.site-footer {
  border-top: 1px solid rgba(107, 77, 52, 0.22);
  color: var(--muted);
  padding: 1.2rem 0;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-shell a {
  font-weight: 700;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .why-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .milestone-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.52rem);
    left: 1rem;
    right: 1rem;
    padding: 0.8rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    background: rgba(255, 251, 244, 0.98);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.68rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .steps,
  .demo-cta,
  .why,
  .features,
  .pricing,
  .milestones,
  .peak,
  .faq,
  .final-cta {
    padding-block: 3.4rem;
  }

  .steps-grid,
  .feature-grid,
  .milestone-grid,
  .peak-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .final-cta {
    margin-bottom: 3.4rem;
    padding: 1.4rem;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
