:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111315;
  background: #f4f1ea;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #111315;
  --ink-soft: #2d3132;
  --paper: #f4f1ea;
  --paper-deep: #ebe5d8;
  --surface: #fffaf1;
  --line: #d8d0c2;
  --line-dark: rgba(255, 255, 255, 0.18);
  --muted: #777064;
  --green: #19382f;
  --copper: #a86b46;
  --steel: #b9c6ca;
  --gold: #c7a25a;
  --shadow: 0 26px 90px rgb(17 19 21 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f4f1ea 0%, #fffaf1 46%, #ede8df 100%),
    var(--paper);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: #fffaf1;
  background: rgb(17 19 21 / 78%);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.language-button,
.hero-actions,
.button,
.hero-metrics,
.mini-flow,
.contact-links,
.input-row,
.stored-count,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border-radius: 8px;
  font-weight: 800;
}

.desktop-nav {
  justify-self: center;
  gap: 28px;
  color: rgb(255 250 241 / 72%);
  font-size: 14px;
}

.desktop-nav a:hover {
  color: #fffaf1;
}

.language-button {
  justify-self: end;
  justify-content: center;
  min-width: 48px;
  min-height: 38px;
  color: #fffaf1;
  background: rgb(255 250 241 / 8%);
  border: 1px solid rgb(255 250 241 / 22%);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 760;
}

.hero {
  position: relative;
  min-height: 86vh;
  padding: 132px clamp(22px, 6vw, 88px) 84px;
  color: #fffaf1;
  background: #101315;
  border-bottom: 1px solid #1f2524;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(16 19 21 / 92%));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.hero-subtitle {
  width: min(650px, 100%);
  margin-bottom: 34px;
  color: rgb(255 250 241 / 78%);
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid #fffaf1;
}

.button.ghost {
  color: #fffaf1;
  background: rgb(255 250 241 / 9%);
  border: 1px solid rgb(255 250 241 / 24%);
}

.button.ghost.is-liked {
  color: #fffaf1;
  background: rgb(168 107 70 / 50%);
  border-color: rgb(255 250 241 / 38%);
}

.like-count {
  min-width: 34px;
  padding: 4px 8px;
  color: var(--ink);
  background: #fffaf1;
  border-radius: 8px;
  font-size: 12px;
}

.hero-metrics {
  position: relative;
  z-index: 4;
  flex-wrap: wrap;
  gap: 10px;
  width: min(760px, 100%);
  color: #fffaf1;
}

.hero-metrics div {
  min-width: 152px;
  padding: 14px 16px;
  background: rgb(255 250 241 / 9%);
  border: 1px solid rgb(255 250 241 / 18%);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.hero-metrics span {
  color: rgb(255 250 241 / 70%);
  font-size: 13px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgb(16 19 21 / 96%) 0%, rgb(16 19 21 / 78%) 42%, rgb(16 19 21 / 14%) 100%),
    linear-gradient(180deg, rgb(16 19 21 / 18%), transparent 38%);
}

.hero-image {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgb(255 250 241 / 14%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-image-main {
  top: 112px;
  right: clamp(24px, 7vw, 104px);
  width: min(36vw, 450px);
  aspect-ratio: 3 / 4;
}

.hero-image-side {
  right: clamp(250px, 32vw, 500px);
  bottom: 72px;
  width: min(31vw, 460px);
  aspect-ratio: 3 / 2;
}

.hero-image-source {
  right: clamp(24px, 5vw, 86px);
  bottom: 78px;
  width: min(17vw, 200px);
  aspect-ratio: 1;
}

.section {
  padding: 96px clamp(22px, 6vw, 88px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.section-copy {
  padding-top: 6px;
}

.section-copy p {
  margin-bottom: 26px;
  font-size: 18px;
}

.mini-flow {
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
}

.mini-flow span:not(:nth-child(2)):not(:nth-child(4)) {
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-heading {
  width: min(920px, 100%);
  margin-bottom: 42px;
}

.transformation {
  background: #fffaf1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transform-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) 56px minmax(240px, 1fr) minmax(200px, 0.72fr) minmax(200px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

figure {
  margin: 0;
}

.source-frame,
.result-frame {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-frame img,
.result-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-frame img {
  padding: 24px;
  object-fit: contain;
}

figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 10px;
  color: #fffaf1;
  background: rgb(17 19 21 / 70%);
  border: 1px solid rgb(255 250 241 / 18%);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.arrow-divider {
  display: grid;
  min-height: 340px;
  place-items: center;
  color: var(--copper);
  font-size: 34px;
  font-weight: 500;
}

.result-large {
  min-height: 440px;
}

.results-band {
  color: #fffaf1;
  background:
    linear-gradient(180deg, #111315, #17342c 64%, #111315);
}

.results-band h2,
.why-band h2 {
  color: #fffaf1;
}

.scene-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.scene-card {
  min-width: 0;
  overflow: hidden;
  background: rgb(255 250 241 / 8%);
  border: 1px solid rgb(255 250 241 / 16%);
  border-radius: 8px;
}

.scene-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.scene-card div {
  padding: 18px;
}

.scene-card h3 {
  color: #fffaf1;
}

.scene-card p {
  margin-bottom: 0;
  color: rgb(255 250 241 / 72%);
  font-size: 14px;
}

.why-band {
  background: #111315;
  border-top: 1px solid #25302e;
}

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

.benefit-card {
  padding: 26px;
  color: #fffaf1;
  background: rgb(255 250 241 / 7%);
  border: 1px solid rgb(255 250 241 / 14%);
  border-radius: 8px;
}

.benefit-number {
  display: block;
  margin-bottom: 34px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.benefit-card h3 {
  color: #fffaf1;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgb(255 250 241 / 70%);
}

.beta-band {
  background:
    linear-gradient(90deg, rgb(244 241 234 / 100%) 0%, rgb(255 250 241 / 100%) 50%, rgb(235 229 216 / 100%) 100%);
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 44px;
  align-items: start;
}

.beta-layout p {
  max-width: 700px;
  font-size: 18px;
}

.contact-links {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  padding: 10px 12px;
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.waitlist-form {
  padding: 26px;
  background: #111315;
  border: 1px solid #2a302f;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.waitlist-form label {
  display: block;
  margin-bottom: 14px;
  color: #fffaf1;
  font-size: 22px;
  font-weight: 820;
}

.input-row {
  gap: 10px;
  align-items: stretch;
}

.input-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #fffaf1;
  background: rgb(255 250 241 / 8%);
  border: 1px solid rgb(255 250 241 / 20%);
  border-radius: 8px;
  outline: none;
}

.input-row input:focus {
  border-color: var(--gold);
}

.input-row button {
  min-width: 92px;
  padding: 0 16px;
  color: var(--ink);
  background: #fffaf1;
  border: 1px solid #fffaf1;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 780;
}

.form-status {
  min-height: 48px;
  margin: 16px 0 18px;
  color: rgb(255 250 241 / 70%);
  font-size: 13px;
  line-height: 1.6;
}

.stored-count {
  gap: 8px;
  color: rgb(255 250 241 / 72%);
  font-size: 13px;
}

.stored-count [data-waitlist-count] {
  color: #fffaf1;
  font-size: 26px;
  font-weight: 820;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 88px);
  color: rgb(255 250 241 / 72%);
  background: #111315;
  border-top: 1px solid #242928;
  font-size: 14px;
}

.site-footer span:first-child {
  color: #fffaf1;
  font-weight: 820;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-image-main {
    width: 380px;
  }

  .hero-image-side {
    right: 300px;
    width: 360px;
  }

  .transform-grid {
    grid-template-columns: minmax(180px, 0.7fr) 42px minmax(240px, 1fr);
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-media {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 12px;
    margin-top: 34px;
    overflow: visible;
  }

  .hero-media::before,
  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-image-main {
    grid-row: span 2;
  }

  .hero-image-side,
  .hero-image-source {
    aspect-ratio: 1;
  }

  .section-grid,
  .beta-layout,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .arrow-divider {
    min-height: 42px;
  }

  .source-frame,
  .result-frame,
  .result-large {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-subtitle,
  .section-copy p,
  .beta-layout p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-metrics,
  .input-row,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .hero-metrics div,
  .input-row button {
    width: 100%;
  }

  .scene-gallery {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    padding: 20px;
  }
}
