:root {
  color-scheme: dark;
  --mocha-950: #120e0b;
  --mocha-900: #1a1512;
  --mocha-850: #2a211b;
  --mocha-800: #251d19;
  --bronze: rgba(90, 60, 30, 0.62);
  --bronze-soft: rgba(90, 60, 30, 0.36);
  --cream-100: #f7f2ec;
  --cream-200: #d3c8ba;
  --cream-muted: rgba(211, 200, 186, 0.75);
  --cream-faint: rgba(211, 200, 186, 0.45);
  --caramel: #e69c5a;
  --caramel-strong: #f0b074;
  --caramel-button: #d48b4a;
  --caramel-dark: #271806;
  --blue: #6fb6f2;
  --sage: #8bd56a;
  --terracotta: #ff704a;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% -4%, rgba(224, 168, 92, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(111, 182, 242, 0.08), transparent 30rem),
    linear-gradient(180deg, var(--mocha-950), #0e0805 42%, var(--mocha-950));
  color: var(--cream-100);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(247, 242, 236, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 236, 0.42) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-weight: 300;
  letter-spacing: -0.025em;
}

h3 {
  color: var(--cream-100);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

p {
  color: var(--cream-muted);
  line-height: 1.72;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 40%, rgba(224, 168, 92, 0.06), transparent 44rem),
    transparent;
}

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(var(--max), calc(100% - 2rem));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.05rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream-100);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(224, 168, 92, 0.44);
  border-radius: 0.72rem;
  overflow: hidden;
  background: #080604;
  color: var(--caramel-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(224, 168, 92, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(90, 60, 30, 0.62);
  border-radius: 999px;
  padding: 0.35rem;
  background: rgba(18, 12, 7, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.nav-links a {
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
  color: rgba(255, 246, 232, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(224, 168, 92, 0.14);
  color: var(--cream-100);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(100deg, rgba(18, 12, 7, 0.96) 0%, rgba(18, 12, 7, 0.72) 40%, rgba(18, 12, 7, 0.06) 68%),
    linear-gradient(0deg, var(--mocha-950) 0%, rgba(18, 12, 7, 0.2) 38%, rgba(18, 12, 7, 0.1) 100%);
}

.hero-inner {
  display: flex;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  align-items: center;
  padding: 8rem 0 6rem;
}

.hero-copy {
  max-width: 720px;
  animation: fadeUp 0.9s var(--ease) both;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--caramel);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.terracotta {
  color: var(--terracotta);
}

.blue-text {
  color: var(--blue);
}

.sage-text {
  color: var(--sage);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: block;
}

.hero h1 span {
  color: var(--caramel);
  font-style: italic;
}

.hero h1 em {
  color: var(--caramel);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin-top: 1.75rem;
  color: rgba(211, 200, 186, 0.85);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.72;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 2rem;
}

.button,
.coming-pill {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.95rem 1.35rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.coming-pill:hover {
  transform: translateY(-2px);
}

.button-primary,
.coming-pill {
  border: 1px solid rgba(224, 168, 92, 0.35);
  background: var(--caramel-button);
  color: var(--mocha-950);
  box-shadow: 0 22px 48px -18px rgba(224, 168, 92, 0.78);
}

.button-secondary {
  border: 1px solid var(--bronze);
  background: rgba(33, 23, 17, 0.56);
  color: var(--cream-100);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  border-color: rgba(224, 168, 92, 0.55);
  background: rgba(43, 29, 20, 0.76);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 2.2rem;
  color: rgba(255, 246, 232, 0.7);
  font-size: 0.75rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-proof span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--caramel);
}

.hero-proof span:nth-child(2)::before {
  background: var(--blue);
}

.hero-proof span:nth-child(3)::before {
  background: var(--sage);
}

.section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(90, 60, 30, 0.55);
}

.section::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  top: 6rem;
  left: 8%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224, 168, 92, 0.1), transparent 72%);
  filter: blur(44px);
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.narrow {
  max-width: 980px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.sticky-copy {
  position: sticky;
  top: 7rem;
}

.section h2 {
  max-width: 54rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.problem h2,
.final-cta h2 {
  max-width: 48rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.04;
}

.section h2 span {
  color: rgba(234, 215, 189, 0.44);
}

.section h2 em,
.section h2 > span:last-child {
  color: var(--caramel);
  font-style: normal;
}

.lead,
.sticky-copy p,
.assistant-header p,
.showcase-header p,
.contact-card p,
.final-inner p {
  max-width: 680px;
  margin-top: 1.5rem;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.75;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4.5rem;
  border-top: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze-soft);
}

.pain-grid article {
  min-height: 13rem;
  padding: 2rem 2rem 2rem 0;
}

.pain-grid article + article {
  border-left: 1px solid var(--bronze-soft);
  padding-left: 2rem;
}

.pain-grid span,
.timeline span,
.feature-list .icon {
  color: var(--caramel);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 500;
}

.pain-grid h3 {
  margin-top: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pain-grid p {
  margin-top: 0.65rem;
  font-size: 0.95rem;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  border-bottom: 1px solid rgba(90, 60, 30, 0.5);
  padding: 1.6rem 0;
}

.feature-list article:first-child {
  padding-top: 0;
}

.feature-list p {
  max-width: 620px;
  margin-top: 0.5rem;
}

.icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(224, 168, 92, 0.5);
  background: rgba(224, 168, 92, 0.13);
}

.icon.blue {
  border-color: rgba(111, 182, 242, 0.52);
  background: rgba(18, 40, 63, 0.9);
  color: var(--blue);
}

.icon.sage {
  border-color: rgba(139, 213, 106, 0.48);
  background: rgba(28, 53, 31, 0.9);
  color: var(--sage);
}

.icon.terracotta-bg {
  border-color: rgba(255, 112, 74, 0.52);
  background: rgba(63, 31, 23, 0.9);
  color: var(--terracotta);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1.6rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0.35rem;
  width: 1px;
  background: linear-gradient(var(--caramel), rgba(224, 168, 92, 0.05));
}

.timeline article {
  position: relative;
  padding: 0 0 2.2rem 1.4rem;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: -1.48rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid rgba(224, 168, 92, 0.5);
  border-radius: 999px;
  background: var(--mocha-950);
  box-shadow: 0 0 0 0.35rem rgba(224, 168, 92, 0.05);
}

.timeline h3 {
  margin-top: 0.55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.timeline p {
  max-width: 620px;
  margin-top: 0.5rem;
}

.showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 3rem;
}

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

.screen-card {
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid rgba(90, 60, 30, 0.72);
  border-radius: 1.05rem;
  background: rgba(33, 23, 17, 0.74);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.screen-card.large {
  grid-column: span 6;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 3024 / 1720;
  object-fit: cover;
  background: var(--mocha-850);
}

.screen-card figcaption {
  border-top: 1px solid rgba(90, 60, 30, 0.5);
  padding: 0.95rem 1rem;
  color: rgba(247, 231, 210, 0.68);
  font-size: 0.86rem;
}

.assistant-header {
  max-width: 780px;
  margin-bottom: 3rem;
}

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

.ai-card {
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid rgba(90, 60, 30, 0.62);
  border-radius: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 22% 12%, rgba(224, 168, 92, 0.16), transparent 18rem),
    rgba(33, 23, 17, 0.72);
  box-shadow: var(--shadow);
}

.ai-card-blue {
  background:
    radial-gradient(circle at 22% 12%, rgba(111, 182, 242, 0.14), transparent 18rem),
    rgba(33, 23, 17, 0.72);
}

.ai-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  color: rgba(247, 231, 210, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ai-orb {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.78rem;
  border: 1px solid rgba(224, 168, 92, 0.44);
  background: rgba(224, 168, 92, 0.16);
  box-shadow: 0 0 28px rgba(224, 168, 92, 0.16);
}

.ai-orb.blue {
  border-color: rgba(111, 182, 242, 0.58);
  background: rgba(18, 40, 63, 0.9);
  box-shadow: 0 0 28px rgba(111, 182, 242, 0.18);
}

.ai-card p {
  margin-top: 0.8rem;
}

.prompt-card {
  margin-top: 2rem;
  border: 1px solid rgba(90, 60, 30, 0.62);
  border-radius: 0.95rem;
  padding: 1.2rem;
  background: rgba(18, 12, 7, 0.48);
}

.prompt-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--caramel);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.prompt-card strong {
  display: block;
  color: var(--cream-100);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
}

.prompt-card p {
  border-left: 1px solid rgba(224, 168, 92, 0.42);
  margin-top: 1rem;
  padding-left: 1rem;
  font-size: 0.9rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-card {
  border: 1px solid var(--bronze);
  border-radius: 1.15rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(33, 23, 17, 0.7);
  box-shadow: var(--shadow);
}

.contact-card a {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--caramel-strong);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.final-cta {
  min-height: 44rem;
  display: grid;
  place-items: center;
}

.final-cta::before {
  width: 52rem;
  height: 52rem;
  top: 50%;
  left: 50%;
  background: radial-gradient(circle, rgba(224, 168, 92, 0.15), transparent 70%);
  filter: blur(90px);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(247, 242, 236, 0.62) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 236, 0.62) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 24%, transparent 72%);
}

.final-inner {
  text-align: center;
  padding: 7rem 0;
}

.final-inner h2 {
  margin-left: auto;
  margin-right: auto;
}

.final-inner h2 span {
  display: block;
  color: var(--caramel);
}

.final-inner p {
  margin-left: auto;
  margin-right: auto;
}

.final-actions {
  justify-content: center;
}

.coming-pill {
  min-width: min(100%, 20rem);
  cursor: default;
}

.tagline {
  margin-top: 3rem;
  color: rgba(247, 231, 210, 0.36);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid rgba(90, 60, 30, 0.55);
}

.footer-inner {
  display: grid;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
}

.footer p,
.footer span {
  color: rgba(247, 231, 210, 0.48);
  font-size: 0.86rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .split,
  .reverse,
  .showcase-header,
  .assistant-grid,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

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

  .pain-grid article,
  .pain-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--bronze-soft);
    padding: 1.7rem 0;
  }

  .pain-grid article:first-child {
    border-top: 0;
  }

  .screen-card,
  .screen-card.large {
    grid-column: span 6;
  }

  .footer-inner {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 7rem;
  }

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

  .button,
  .coming-pill {
    width: 100%;
  }

  .section-inner {
    padding: 5rem 0;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .screen-stage {
    gap: 0.75rem;
  }

  .ai-card {
    min-height: auto;
  }
}

@supports not (backdrop-filter: blur(10px)) {
  .nav-links,
  .button-secondary {
    background: rgba(18, 12, 7, 0.88);
  }
}
