:root {
  --bg: #f5efe4;
  --bg-deep: #e7decd;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: rgba(255, 248, 238, 0.94);
  --ink: #1d1812;
  --muted: #5f574d;
  --line: rgba(29, 24, 18, 0.14);
  --line-strong: rgba(29, 24, 18, 0.24);
  --accent: #143c39;
  --accent-soft: #1f5d57;
  --accent-warm: #cf9643;
  --shadow: 0 22px 70px rgba(40, 29, 13, 0.14);
  --radius: 28px;
  --content-width: min(1180px, calc(100vw - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(207, 150, 67, 0.24), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(20, 60, 57, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f2e7 0%, #efe6d6 55%, #e6dcc8 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header,
.section,
.hero,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(247, 241, 229, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(45, 30, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--accent), #21514d);
  color: #f8f2e7;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.73rem;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  padding: 0.7rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.4rem;
  align-items: center;
  min-height: calc(100svh - 7.5rem);
  padding: 5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-soft);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 6.5rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.lede,
.supporting-copy,
.split-grid p,
.step p,
.proof-grid p,
.faq-list p,
.demo-copy p,
.demo-note {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.lede {
  margin: 1.35rem 0 0;
  font-size: 1.16rem;
}

.supporting-copy {
  margin: 1rem 0 0;
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  gap: 0.9rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  min-height: 3.35rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #f8f2e7;
  box-shadow: 0 14px 36px rgba(20, 60, 57, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1e514d;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
}

.button-full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.62rem 0.92rem;
  border: 1px solid rgba(29, 24, 18, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.visual-surface {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.9), rgba(243, 235, 221, 0.78)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-column,
.visual-path {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(29, 24, 18, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
}

.visual-column strong,
.visual-path {
  letter-spacing: -0.02em;
}

.visual-column strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.14rem;
}

.visual-column p {
  margin: 0;
  color: var(--muted);
}

.visual-column-offset {
  margin-left: 2rem;
}

.visual-column-accent {
  margin-right: 1rem;
  background: linear-gradient(
    135deg,
    rgba(20, 60, 57, 0.95),
    rgba(31, 93, 87, 0.9)
  );
  color: #f8f2e7;
}

.visual-column-accent p,
.visual-column-accent .visual-label {
  color: rgba(248, 242, 231, 0.76);
}

.visual-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--muted);
}

.path-node {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.path-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 999px;
  background: var(--accent-warm);
  transform: translateY(-50%);
  animation: pulse 2.4s ease-in-out infinite;
}

.path-node:nth-child(2)::before {
  animation-delay: 320ms;
}

.path-node:nth-child(3)::before {
  animation-delay: 640ms;
}

.pulse-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.2rem;
  padding: 1rem;
  pointer-events: none;
}

.pulse-grid span {
  border: 1px dashed rgba(29, 24, 18, 0.08);
  border-radius: 1.8rem;
  opacity: 0.55;
}

.visual-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.85;
}

.visual-glow-one {
  inset: auto auto 15% 8%;
  width: 8rem;
  height: 8rem;
  background: rgba(207, 150, 67, 0.3);
}

.visual-glow-two {
  inset: 6% 10% auto auto;
  width: 7rem;
  height: 7rem;
  background: rgba(20, 60, 57, 0.22);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.trust-strip p {
  margin: 0;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.section {
  padding: 5.8rem 0 0;
}

.section:last-of-type {
  padding-bottom: 4rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.split-grid,
.steps,
.proof-grid,
.contrast-grid,
.roadmap-grid,
.demo-section {
  display: grid;
  gap: 1.1rem;
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.question-list,
.contrast-grid ul,
.roadmap-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list {
  display: grid;
  gap: 0.9rem;
}

.question-list li,
.contrast-grid li,
.roadmap-grid li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.3rem 0 1.1rem;
  border-top: 1px solid var(--line);
}

.step-number {
  color: var(--accent-soft);
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.step p {
  margin: 0.65rem 0 0;
}

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

.proof-grid article,
.roadmap-grid article,
.demo-panel,
.faq-list details {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(29, 24, 18, 0.08);
  border-radius: 1.6rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.proof-grid article h3,
.roadmap-grid article h3 {
  margin-bottom: 0.7rem;
}

.proof-grid article p,
.roadmap-grid article p {
  margin: 0;
}

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

.contrast-label,
.demo-label {
  margin: 0 0 0.85rem;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.roadmap-grid article h3 {
  margin-bottom: 0.25rem;
}

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

.faq-list summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  margin-bottom: 0.85rem;
}

.faq-list p {
  margin: 0;
}

.demo-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: center;
}

.demo-copy p {
  margin-top: 1rem;
}

.demo-panel {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(240, 233, 221, 0.86)),
    rgba(255, 255, 255, 0.75);
}

.demo-note {
  margin: 1rem 0 0;
}

.demo-note a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0 2.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.error-shell {
  width: min(38rem, 100%);
  padding: 2rem;
  border: 1px solid rgba(29, 24, 18, 0.1);
  border-radius: 2rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-50%) scale(1.25);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-grid,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4.2rem;
  }

  .visual-column-offset,
  .visual-column-accent {
    margin-left: 0;
    margin-right: 0;
  }

  .steps,
  .proof-grid,
  .contrast-grid,
  .roadmap-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.25rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  h1 {
    max-width: 12ch;
  }

  h2 {
    max-width: 16ch;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .hero,
  .site-footer {
    width: min(100vw - 1.4rem, 100%);
  }

  .site-header {
    margin-top: 0.7rem;
    padding: 0.85rem 0.95rem;
  }

  .hero {
    gap: 1.5rem;
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .steps,
  .proof-grid,
  .contrast-grid,
  .roadmap-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .visual-path {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-top: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
