:root {
  color-scheme: dark;
  --ink: #050606;
  --black: #090a0a;
  --panel: #101211;
  --panel-2: #171918;
  --paper: #f4f2eb;
  --paper-soft: #e7e3d9;
  --muted: #a8a69e;
  --dim: #74736c;
  --line: rgba(244, 242, 235, 0.15);
  --line-dark: rgba(5, 6, 6, 0.14);
  --acid: #ccff3d;
  --red: #d12e2e;
  --cyan: #52c0cc;
  --max: 1180px;
  --pad: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

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

h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(244, 242, 235, 0.09);
  background: rgba(5, 6, 6, 0.76);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer span {
  font-size: 0.82rem;
  font-weight: 760;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--paper);
}

.nav-cta {
  border: 1px solid rgba(244, 242, 235, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 680;
  transition: border-color 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(204, 255, 61, 0.72);
  background: rgba(204, 255, 61, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: 48px;
  align-items: center;
  min-height: 100svh;
  padding: 116px var(--pad) 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(204, 255, 61, 0.08), rgba(204, 255, 61, 0) 34%),
    radial-gradient(circle at 94% 62%, rgba(82, 192, 204, 0.16), rgba(82, 192, 204, 0) 27%),
    var(--ink);
  overflow: hidden;
}

.hero > * {
  min-width: 0;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-label {
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin-top: 18px;
  font-size: clamp(4.4rem, 9vw, 8.8rem);
  line-height: 0.88;
  font-weight: 660;
}

.hero-line {
  max-width: 690px;
  margin-top: 30px;
  color: var(--paper);
  font-size: clamp(1.95rem, 3.6vw, 4rem);
  line-height: 1.02;
  font-weight: 650;
}

.hero-body {
  max-width: 610px;
  margin-top: 26px;
  color: #d7d3c8;
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--acid);
}

.button-secondary {
  border: 1px solid rgba(244, 242, 235, 0.32);
  color: var(--paper);
}

.button-secondary:hover {
  border-color: rgba(204, 255, 61, 0.74);
  background: rgba(204, 255, 61, 0.08);
}

.hero-product {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: 580px;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 12% -18% 4% 18%;
  border: 1px solid rgba(244, 242, 235, 0.12);
  transform: skewX(-10deg);
}

.hero-product img {
  position: relative;
  z-index: 1;
  height: min(66vh, 720px);
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(244, 242, 235, 0.16);
}

.product-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -1px;
  border: 1px solid rgba(244, 242, 235, 0.16);
  background: rgba(5, 6, 6, 0.78);
}

.product-strip span {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-strip span + span {
  border-left: 1px solid rgba(244, 242, 235, 0.12);
}

.snap-section,
.package-section,
.work-section,
.moments-section,
.delivery-section,
.process-section,
.scope-section,
.closing-cta {
  padding: 112px var(--pad);
}

.snap-section > *,
.package-section > *,
.work-section > *,
.moments-section > *,
.delivery-section > *,
.process-section > *,
.scope-section > *,
.closing-cta > * {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.snap-section {
  background: var(--paper);
  color: var(--ink);
}

.snap-section .section-label,
.package-section .section-label,
.moments-section .section-label {
  color: #607a0e;
}

.snap-section h2,
.moments-section h2 {
  max-width: 980px;
  margin-top: 20px;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 650;
}

.snap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  max-width: 980px;
  margin-top: 52px;
  margin-left: auto;
}

.snap-grid p {
  color: #393936;
  font-size: 1.16rem;
  line-height: 1.55;
}

.package-section {
  background: #eef0ed;
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2,
.work-intro h2,
.delivery-copy h2,
.process-section h2,
.scope-section h2,
.closing-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.98;
  font-weight: 650;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.24fr repeat(2, minmax(0, 0.88fr));
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.highlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(5, 6, 6, 0.08);
}

.highlight-large {
  grid-row: span 2;
  min-height: 520px;
  background:
    linear-gradient(160deg, rgba(204, 255, 61, 0.32), rgba(244, 242, 235, 0) 46%),
    var(--paper);
}

.highlight.dark {
  background: #111413;
  color: var(--paper);
}

.metric {
  color: #6d880c;
  font-size: clamp(2.9rem, 6vw, 6.8rem);
  line-height: 0.92;
  font-weight: 700;
}

.highlight.dark .metric {
  color: var(--acid);
}

.highlight h3 {
  max-width: 360px;
  margin-top: 34px;
  font-size: 1.42rem;
  line-height: 1.12;
}

.highlight p:last-child {
  max-width: 440px;
  margin-top: 16px;
  color: #5c5c56;
  font-size: 1rem;
  line-height: 1.5;
}

.highlight.dark p:last-child {
  color: var(--muted);
}

.work-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.work-intro {
  margin-bottom: 46px;
}

.work-intro h2 {
  max-width: 940px;
  margin-top: 20px;
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.work-card img {
  aspect-ratio: 1.42;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.work-card div {
  padding: 24px;
}

.work-card span,
.process-list span,
.delivery-stack span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 720;
}

.work-card h3,
.delivery-stack h3,
.process-list h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.work-card p,
.delivery-copy p,
.delivery-stack p,
.process-list p,
.scope-copy p,
.closing-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.work-card p,
.delivery-stack p,
.process-list p {
  margin-top: 12px;
}

.moments-section {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.moments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
  margin-top: 46px;
}

.moments-list span {
  border: 1px solid rgba(5, 6, 6, 0.18);
  border-radius: 999px;
  padding: 11px 16px;
  color: #30312f;
  font-size: 0.96rem;
  font-weight: 680;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(209, 46, 46, 0.12), rgba(209, 46, 46, 0) 38%),
    var(--black);
  border-top: 1px solid var(--line);
}

.delivery-section > * {
  margin-inline: 0;
}

.delivery-section {
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.delivery-copy h2 {
  margin-top: 20px;
}

.delivery-copy p {
  max-width: 580px;
  margin-top: 24px;
  font-size: 1.12rem;
}

.delivery-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.delivery-stack article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-stack span {
  margin-bottom: 0;
}

.delivery-stack p {
  grid-column: 2;
}

.process-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 280px;
  padding: 26px;
  background: var(--ink);
}

.process-list span {
  margin-bottom: 74px;
}

.scope-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: start;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.scope-section > * {
  margin-inline: 0;
}

.scope-section {
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.scope-section .section-label {
  color: #607a0e;
}

.scope-section h2 {
  margin-top: 20px;
}

.scope-copy {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}

.scope-copy p {
  color: #3f403b;
  font-size: 1.06rem;
}

.closing-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.closing-cta h2 {
  max-width: 890px;
  margin-top: 18px;
}

.closing-cta p:not(.section-label) {
  max-width: 620px;
  margin-top: 22px;
}

.closing-cta .button {
  margin-top: 34px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad);
  color: var(--dim);
  border-top: 1px solid var(--line);
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-product {
    min-height: 0;
  }

  .hero-product img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.8;
  }

  .snap-grid,
  .delivery-section,
  .scope-section {
    grid-template-columns: 1fr;
  }

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

  .highlight-large {
    grid-row: span 1;
  }

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

@media (max-width: 720px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    height: 66px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero {
    gap: 38px;
    padding-bottom: 42px;
  }

  h1 {
    max-width: 7.5ch;
    font-size: 3.55rem;
  }

  .hero-line {
    max-width: 11ch;
    font-size: 2.45rem;
  }

  .hero-body {
    max-width: 32ch;
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

  .hero-product img {
    aspect-ratio: 1.2;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

  .product-strip span + span {
    border-top: 1px solid rgba(244, 242, 235, 0.12);
    border-left: 0;
  }

  .snap-section,
  .package-section,
  .work-section,
  .moments-section,
  .delivery-section,
  .process-section,
  .scope-section,
  .closing-cta {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .snap-section h2,
  .moments-section h2 {
    font-size: 2.7rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .work-intro h2,
  .delivery-copy h2,
  .process-section h2,
  .scope-section h2,
  .closing-cta h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .snap-grid,
  .highlight-grid,
  .work-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .highlight,
  .highlight-large,
  .process-list li {
    min-height: auto;
  }

  .metric {
    font-size: 3.2rem;
  }

  .delivery-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .delivery-stack p {
    grid-column: auto;
  }

  .work-card span,
  .process-list span,
  .delivery-stack span {
    margin-bottom: 26px;
  }

  .site-footer {
    display: grid;
  }
}
