:root {
  color-scheme: light;
  --ink: rgb(23 32 51);
  --muted: rgb(95 104 117);
  --quiet: rgb(138 148 163);
  --line: rgb(228 224 215);
  --line-strong: rgb(207 200 187);
  --surface-page: rgb(250 248 243);
  --surface-shell: rgb(255 253 250);
  --surface-panel: rgb(245 242 236);
  --surface-card: rgb(255 253 250);
  --surface-muted: rgb(239 235 227);
  --accent: rgb(255 149 73);
  --accent-strong: rgb(194 65 12);
  --accent-soft: rgb(255 241 223);
  --shadow-soft: 0 22px 60px rgb(23 32 51 / 0.1);
  --shadow-card: 0 16px 34px rgb(23 32 51 / 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--surface-page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  margin: 0;
  background: var(--surface-page);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 clamp(18px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 253 / 0.96);
  backdrop-filter: blur(16px);
}

.brand,
.nav-link,
.nav-cta {
  text-decoration: none;
}

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

.nav-link,
.nav-cta {
  font-size: 0.84rem;
  font-weight: 500;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 13px;
}

.nav-link {
  color: var(--muted);
}

.nav-link:hover {
  color: var(--ink);
}

.nav-cta {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
}

.brand:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(57, 120, 246, 0.32);
  outline-offset: 4px;
}

main {
  overflow: hidden;
  background: var(--surface-page);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(560px, calc(82svh - 64px));
  display: grid;
  align-content: center;
  padding: clamp(46px, 6.2vw, 84px) clamp(18px, 4vw, 44px);
  background: linear-gradient(145deg, rgb(255 254 250) 0%, rgb(248 244 236) 52%, rgb(255 251 245) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.58' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.52'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 980px;
  justify-self: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  max-width: 960px;
  text-align: center;
}

.hero-subcopy {
  margin: 20px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.48;
  text-align: center;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.primary-cta:focus-visible {
  outline: 3px solid rgba(57, 120, 246, 0.38);
  outline-offset: 3px;
}

.flow-visual {
  position: relative;
  width: min(100%, 1220px);
  display: grid;
  gap: clamp(20px, 2.6vw, 34px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 52px);
}

.morph-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) 112px minmax(0, 0.86fr);
  gap: clamp(12px, 1.8vw, 24px);
  align-items: center;
  justify-items: center;
}

.morph-panel {
  display: grid;
  place-items: center;
  padding: clamp(8px, 0.9vw, 12px);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.06);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.12),
    0 24px 64px rgb(0 0 0 / 0.26);
}

.morph-raw-shot,
.morph-generated-shot {
  display: block;
  width: auto;
  object-fit: cover;
}

.morph-raw-shot {
  height: min(440px, 38vw);
  max-height: 100%;
  border-radius: 8px;
}

.morph-generated-shot {
  height: min(440px, 38vw);
  max-height: 100%;
  border-radius: 8px;
}

.morph-arrow {
  display: grid;
  justify-items: center;
  color: var(--accent);
}

.morph-arrow svg {
  display: block;
  width: 132px;
  height: 52px;
  overflow: visible;
}

.morph-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-stroke {
  stroke-width: 9;
  opacity: 0.92;
  filter: drop-shadow(0 5px 12px rgb(255 149 73 / 0.2));
}

.content-band {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 6vw, 84px);
  background: var(--surface-shell);
}

.dark-band {
  background:
    radial-gradient(circle at 18% 16%, rgb(255 149 73 / 0.18), transparent 36%),
    var(--ink);
  color: #fff;
}

.dark-band .eyebrow {
  color: var(--accent);
}

.dark-band h2 {
  font-size: clamp(2rem, 3.25vw, 3.8rem);
}


.dark-band .steps-grid article {
  border-color: rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.06);
}

.dark-band .steps-grid p {
  color: rgb(239 235 227);
}

.dark-band .steps-grid span {
  background: rgb(255 149 73 / 0.16);
  color: var(--accent);
}

.section-heading {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(64px, 7vw, 96px);
}

.steps-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-panel);
}

.steps-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

h3 {
  margin: 24px 0 10px;
  font-size: 1.42rem;
  line-height: 1.1;
}

.steps-grid p,
.zero-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  background: var(--surface-shell);
  color: var(--ink);
}

.split-band .eyebrow {
  color: var(--accent-strong);
}

.split-band h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.5rem);
}

.zero-copy {
  max-width: 680px;
}

.zero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.zero-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.zero-copy li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-panel);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(24px, 6vw, 84px) 34px;
  border-top: 1px solid var(--line);
  background: var(--surface-shell);
  color: var(--muted);
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.site-footer a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-strong);
}

.site-footer a:focus-visible {
  outline: 3px solid rgb(255 149 73 / 0.32);
  outline-offset: 4px;
}


@media (max-width: 1180px) {
  .morph-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(52px, 0.12fr) minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 0 16px;
  }

  .nav-cta {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 42px 16px 48px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero-subcopy {
    font-size: 1.04rem;
  }

  .flow-visual {
    gap: 24px;
  }

  .morph-panel {
    padding: 8px;
    border-radius: 14px;
  }

  .morph-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .morph-raw-shot {
    height: min(440px, 86vw);
  }

  .morph-generated-shot {
    height: min(440px, 86vw);
  }

  .morph-arrow {
    transform: rotate(90deg);
  }

  .steps-grid,
  .split-band {
    grid-template-columns: 1fr;
  }
}

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