:root {
  --ink: #0a0a0a;
  --paper: #f1efe8;
  --paper-2: #e6e3da;
  --accent: #c8ff00;
  --muted: #a6a49d;
  --line: rgba(10, 10, 10, 0.18);
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 var(--pad);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 102;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-size: 12px;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 13px;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  color: var(--ink);
  background: var(--accent);
}

.nav-cta span {
  font-size: 17px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  min-height: 100svh;
  padding: clamp(140px, 17vh, 190px) var(--pad) 48px;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.hero__copy,
.hero__visual,
.hero__meta {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 7px;
  background: var(--accent);
}

.hero h1,
.section-heading h2,
.showcase h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(62px, 7.8vw, 126px);
}

.hero h1 em,
.section-heading h2 em,
.showcase h2 em,
.contact h2 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.07em;
  text-transform: none;
}

.hero__lead {
  max-width: 600px;
  margin: 40px 0 0;
  color: rgba(241, 239, 232, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 240px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 rgba(200, 255, 0, 0.18);
}

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

.button span,
.text-link span {
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: rgba(241, 239, 232, 0.78);
  border-bottom: 1px solid rgba(241, 239, 232, 0.34);
  font-size: 13px;
  font-weight: 650;
}

.hero__visual {
  align-self: center;
  justify-self: end;
  width: min(38vw, 550px);
  aspect-ratio: 0.86;
  margin-top: -20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #121212;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(200, 255, 0, 0.17), transparent 54%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(200, 255, 0, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--one {
  width: 83%;
  aspect-ratio: 1;
  animation: orbit 18s linear infinite;
}

.orbit--one::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 13%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 25px var(--accent);
}

.orbit--two {
  width: 57%;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.18);
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.social-frame {
  position: absolute;
  inset: 15% 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: var(--paper);
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 18px 18px 0 var(--accent);
  transform: rotate(-3deg);
}

.social-frame__top,
.social-frame__bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.social-frame__top span:first-child {
  color: var(--accent);
}

.social-frame__center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-frame__center strong {
  font-family: var(--display);
  font-size: clamp(33px, 3.3vw, 58px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.play {
  position: absolute;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 14px;
  transform: translate(130%, -145%);
}

.hero__stamp {
  position: absolute;
  right: 4%;
  bottom: 4%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--ink);
}

.hero__stamp span {
  position: absolute;
  width: 78px;
  height: 78px;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
  animation: orbit 14s linear infinite reverse;
}

.hero__stamp b {
  color: var(--accent);
  font-size: 25px;
}

.hero__logo {
  position: absolute;
  bottom: -7%;
  left: -13%;
  width: 55%;
  opacity: 0.95;
  pointer-events: none;
}

.hero__meta {
  grid-column: 1 / -1;
  display: flex;
  align-self: end;
  gap: clamp(20px, 4vw, 70px);
  margin-top: 60px;
  color: rgba(241, 239, 232, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__meta span::before {
  content: "+";
  margin-right: 8px;
  color: var(--accent);
}

.ticker {
  overflow: hidden;
  padding: 19px 0 15px;
  color: var(--ink);
  background: var(--accent);
  border-bottom: 1px solid var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: ticker 24s linear infinite;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ticker__track b {
  font-size: 20px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) var(--pad);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(54px, 7vw, 108px);
}

.section-heading > p:last-child {
  align-self: end;
  max-width: 520px;
  margin: 0;
  color: #55544f;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(280px, 1fr) minmax(280px, 0.7fr) 44px;
  gap: 28px;
  align-items: center;
  padding: 36px 12px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.28s ease, background 0.28s ease, padding 0.28s ease;
}

.service-card:hover {
  padding-right: 24px;
  padding-left: 24px;
  color: var(--paper);
  background: var(--ink);
}

.service-card__number {
  align-self: start;
  padding-top: 6px;
  color: #77766f;
  font-family: var(--mono);
  font-size: 11px;
}

.service-card h3 {
  margin: 0 0 11px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 60px);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.service-card p {
  max-width: 600px;
  margin: 0;
  color: #6a6963;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.28s ease;
}

.service-card:hover p {
  color: rgba(241, 239, 232, 0.66);
}

.service-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card li::before {
  content: "+";
  margin-right: 7px;
  color: #77766f;
}

.service-card:hover li::before {
  color: var(--accent);
}

.service-card__arrow {
  font-size: 28px;
  transition: transform 0.28s ease;
}

.service-card:hover .service-card__arrow {
  color: var(--accent);
  transform: rotate(45deg);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(100px, 10vw, 160px) var(--pad);
  color: var(--paper);
  background: var(--ink);
}

.showcase__intro {
  align-self: center;
}

.eyebrow--light {
  color: rgba(241, 239, 232, 0.62);
}

.showcase h2 {
  font-size: clamp(58px, 7vw, 108px);
}

.showcase__intro > p:last-child {
  max-width: 480px;
  margin: 36px 0 0;
  color: rgba(241, 239, 232, 0.58);
  line-height: 1.6;
}

.showcase__canvas {
  position: relative;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.mock {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.8);
}

.mock--video {
  top: 7%;
  left: 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 43%;
  aspect-ratio: 0.69;
  padding: 15px;
  background: #161616;
  transform: rotate(-3deg);
}

.mock__top,
.mock__bottom,
.mock__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.mock__visual p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.1vw, 51px);
  font-weight: 850;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.mock__visual em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.mock__play {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 22px auto;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 12px;
}

.mock--cover {
  top: 14%;
  right: 6%;
  width: 42%;
  aspect-ratio: 1;
  padding: 15px;
  color: var(--ink);
  background: var(--accent);
  transform: rotate(5deg);
}

.mock--cover p {
  position: absolute;
  bottom: 26px;
  left: 22px;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 75px);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.mock--cover small {
  position: absolute;
  right: 14px;
  bottom: 14px;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.mock__shape {
  position: absolute;
  top: 20%;
  right: 13%;
  width: 55%;
  aspect-ratio: 1;
  background: var(--ink);
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 36%);
}

.mock--system {
  right: 13%;
  bottom: 7%;
  width: 52%;
  min-height: 250px;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  transform: rotate(-2deg);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 72%;
  margin-top: 24px;
}

.system-grid i {
  aspect-ratio: 1;
  background: var(--ink);
}

.system-grid i:nth-child(2),
.system-grid i:nth-child(6) {
  background: var(--accent);
}

.system-grid i:nth-child(3) {
  border-radius: 50%;
}

.mock--system p {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 850;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-heading--wide {
  display: block;
}

.section-heading--wide .eyebrow {
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 280px;
  padding: 25px 25px 28px 0;
  border-right: 1px solid var(--ink);
}

.steps li:not(:first-child) {
  padding-left: 25px;
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  font-family: var(--mono);
  font-size: 10px;
}

.steps h3 {
  margin: 95px 0 12px;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 44px);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.steps p {
  max-width: 250px;
  margin: 0;
  color: #66645f;
  font-size: 13px;
  line-height: 1.6;
}

.pricing {
  padding-top: 20px;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 26px;
  border: 1px solid var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 var(--ink);
}

.price-card--featured {
  background: var(--accent);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 20px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-card__top b {
  font-weight: 400;
}

.price-card h3 {
  margin: 88px 0 14px;
  font-family: var(--display);
  font-size: clamp(35px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.price-card p {
  max-width: 370px;
  margin: 0;
  color: #5e5c57;
  font-size: 14px;
  line-height: 1.55;
}

.price-card strong {
  margin-top: auto;
  padding: 35px 0 18px;
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 38px);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.price-card a {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.price-card a span {
  font-size: 19px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  min-height: 790px;
  padding: clamp(90px, 10vw, 150px) var(--pad);
  color: var(--ink);
  background: var(--accent);
}

.contact__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact h2 {
  max-width: 1000px;
  font-size: clamp(57px, 8vw, 124px);
}

.contact h2 em {
  color: var(--ink);
}

.contact__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 620px);
  margin-top: 70px;
  padding: 22px 0 14px;
  border-bottom: 4px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact__cta span {
  transition: transform 0.25s ease;
}

.contact__cta:hover span {
  transform: translate(6px, -6px);
}

.contact__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 54px;
  padding-left: clamp(30px, 5vw, 80px);
  border-left: 1px solid var(--ink);
}

.contact__aside p {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact__aside > div > a {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  display: inline-flex;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  color: var(--paper);
  background: var(--ink);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.availability i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.75); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px var(--pad);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.brand--footer {
  justify-self: start;
}

.site-footer p {
  margin: 0;
  color: rgba(241, 239, 232, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

.cursor-dot {
  position: fixed;
  top: -18px;
  left: -18px;
  z-index: 999;
  width: 36px;
  height: 36px;
  pointer-events: none;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: width 0.18s ease, height 0.18s ease, margin 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.cursor-dot.is-active {
  width: 58px;
  height: 58px;
  margin: -11px;
  background: rgba(200, 255, 0, 0.13);
}

@media (pointer: fine) {
  .cursor-dot { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero h1 {
    font-size: clamp(58px, 8.4vw, 88px);
  }

  .hero__visual {
    width: 38vw;
  }

  .service-card {
    grid-template-columns: 55px 1fr 0.7fr 34px;
  }

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

  .showcase__intro {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
  }

  .showcase__intro .eyebrow {
    grid-column: 1 / -1;
  }

  .showcase__intro > p:last-child {
    align-self: end;
    margin: 0;
  }

  .showcase__canvas {
    width: min(100%, 800px);
    justify-self: center;
  }

  .price-card {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 20px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 68px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--paper);
    background: transparent;
    border: 0;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px var(--pad) 40px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(49px, 14.8vw, 74px);
  }

  .hero__lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: space-between;
  }

  .hero__visual {
    justify-self: center;
    width: 100%;
    max-width: 500px;
    margin-top: 72px;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
    margin-top: 70px;
  }

  .section-heading,
  .showcase__intro {
    display: block;
  }

  .section-heading h2,
  .showcase h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .section-heading > p:last-child,
  .showcase__intro > p:last-child {
    margin-top: 28px;
  }

  .service-card {
    grid-template-columns: 38px 1fr 28px;
    gap: 14px;
    padding: 28px 0;
  }

  .service-card:hover {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-card ul {
    grid-column: 2 / -1;
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
  }

  .showcase {
    padding-right: var(--pad);
    padding-left: var(--pad);
  }

  .showcase__canvas {
    min-height: 560px;
  }

  .mock--video {
    top: 6%;
    left: 4%;
    width: 52%;
  }

  .mock--cover {
    top: 12%;
    right: 1%;
    width: 47%;
  }

  .mock--system {
    right: 5%;
    bottom: 6%;
    width: 72%;
    min-height: 210px;
  }

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

  .steps li {
    min-height: 240px;
    border-bottom: 1px solid var(--ink);
  }

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(n+3) {
    border-bottom: 0;
  }

  .steps li:nth-child(3) {
    padding-left: 0;
  }

  .steps h3 {
    margin-top: 65px;
  }

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

  .price-card {
    min-height: 410px;
  }

  .contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact h2 {
    font-size: clamp(49px, 14vw, 72px);
  }

  .contact__aside {
    gap: 38px;
    margin-top: 90px;
    padding: 38px 0 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:nth-of-type(1) {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 13.5vw;
  }

  .social-frame {
    inset: 14% 16%;
  }

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

  .steps li,
  .steps li:not(:first-child),
  .steps li:nth-child(3) {
    min-height: 200px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .steps li:last-child {
    border-bottom: 0;
  }

  .steps h3 {
    margin-top: 45px;
  }
}

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