:root {
  --black: #030506;
  --black-soft: #080b0f;
  --panel: rgba(5, 8, 12, 0.88);
  --white: #f4f4f2;
  --muted-white: #b9bcc3;
  --gold: #d9a536;
  --gold-light: #f1c75b;
  --blue: #0077ff;
  --blue-glow: rgba(0, 119, 255, 0.55);
  --border-soft: rgba(255, 255, 255, 0.14);
  --header-h: 74px;
  --display: "Teko", "Bebas Neue", Impact, sans-serif;
  --body: "Rajdhani", "Arial Narrow", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--body);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 119, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 83% 20%, rgba(217, 165, 54, 0.08), transparent 24rem),
    linear-gradient(180deg, #070a0d 0%, var(--black) 38%, #010203 100%);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  content: "";
  opacity: 0.25;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 85%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.svg-sprite,
.mailchimp-frame {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0;
}

.site-header {
  position: static;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-h);
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 3, 5, 0.86);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 0.85;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.brand-sub {
  color: var(--muted-white);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.desktop-nav,
.desktop-social {
  display: none;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  grid-area: 1 / 1;
  width: 31px;
  height: 31px;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 25;
  padding: 24px 22px 26px;
  border-bottom: 1px solid rgba(0, 119, 255, 0.32);
  background: rgba(1, 3, 5, 0.97);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.55);
}

.mobile-menu nav {
  display: grid;
  gap: 16px;
}

.mobile-menu a,
.desktop-nav a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu nav a {
  font-size: 2rem;
  line-height: 0.95;
}

.mobile-menu-social {
  display: flex;
  gap: 20px;
  margin-top: 26px;
}

.mobile-menu-social svg,
.desktop-social svg,
.footer-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-stage {
  display: none;
}

.mobile-stage {
  display: block;
  min-height: calc(100svh - var(--header-h));
  background:
    linear-gradient(180deg, rgba(0, 119, 255, 0.16) 0, transparent 27rem),
    linear-gradient(180deg, #020406 0, #020406 42%, #010203 100%);
}

.mobile-hero {
  position: relative;
  overflow: hidden;
  height: clamp(310px, 44svh, 430px);
  border-bottom: 1px solid rgba(0, 119, 255, 0.28);
  background: #020406;
  isolation: isolate;
}

.mobile-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, transparent, #020406 82%);
}

.mobile-hero-main {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.06);
}

.mobile-content {
  width: min(100%, 650px);
  margin: 0 auto;
  padding: 17px clamp(18px, 5vw, 34px) 30px;
}

.mobile-title,
.title-lockup h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.mobile-title {
  font-size: clamp(4.2rem, 18vw, 7rem);
  line-height: 0.78;
  white-space: nowrap;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.08);
}

.mobile-title span:first-child,
.title-lockup h1 span:first-child {
  color: var(--white);
}

.mobile-title span:last-child,
.title-lockup h1 span:last-child {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(217, 165, 54, 0.18);
}

.subtitle {
  margin: 8px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 6vw, 2.15rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subtitle span {
  color: var(--blue);
  font-weight: 700;
}

.drop-copy {
  margin: 34px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.7rem, 6.7vw, 2.25rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drop-copy strong {
  color: var(--gold-light);
}

.support-copy {
  max-width: 31rem;
  margin: 10px 0 0;
  color: var(--muted-white);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.24;
}

.signup-form {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 430px;
  margin-top: 16px;
}

.signup-form label {
  color: rgba(244, 244, 242, 0.86);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.input-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.input-shell svg {
  position: absolute;
  left: 18px;
  width: 22px;
  height: 22px;
  color: rgba(244, 244, 242, 0.82);
  pointer-events: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.input-shell input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px 0 58px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(1, 3, 5, 0.64);
  color: var(--white);
  font-size: 1.13rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(0, 119, 255, 0);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.input-shell input::placeholder {
  color: rgba(244, 244, 242, 0.66);
}

.input-shell input:focus {
  border-color: rgba(0, 119, 255, 0.82);
  background: rgba(1, 5, 10, 0.78);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 119, 255, 0.35), 0 0 0 3px rgba(0, 119, 255, 0.17);
}

.gold-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 131, 0.75);
  border-radius: 6px;
  background: linear-gradient(180deg, #f4c85a 0%, #c58b21 100%);
  color: #060707;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 8px 18px rgba(217, 165, 54, 0.18);
  transition: filter 180ms ease, transform 180ms ease;
}

.gold-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.28) 46%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 400ms ease;
}

.gold-button:hover {
  filter: brightness(1.08) contrast(1.04);
  transform: translateY(-1px);
}

.gold-button:hover::before {
  transform: translateX(120%);
}

.gold-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 0;
  color: rgba(244, 244, 242, 0.73);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.25;
}

.privacy-line svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: rgba(244, 244, 242, 0.78);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-line span {
  min-width: 0;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #ff8f8f;
}

.form-status.is-success {
  color: #a6f0c6;
}

.mailchimp-honeypot {
  position: absolute;
  left: -5000px;
}

.feature-cards {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.feature-card {
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  align-items: center;
  min-height: 76px;
  gap: 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.08), rgba(4, 7, 10, 0.88) 20%, rgba(4, 7, 10, 0.78));
  box-shadow: inset 2px 0 0 rgba(0, 119, 255, 0.38), inset -1px 0 0 rgba(0, 119, 255, 0.2);
}

.feature-card > svg:first-child {
  width: 42px;
  height: 42px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-card p {
  margin: 4px 0 0;
  color: var(--muted-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}

.feature-card .chevron {
  width: 25px;
  height: 25px;
  color: rgba(244, 244, 242, 0.82);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-footer {
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 3, 5, 0.78);
  color: rgba(244, 244, 242, 0.64);
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 12px;
  color: var(--white);
}

.mobile-footer p {
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.17em;
  }

  .brand-sub {
    font-size: 0.64rem;
    letter-spacing: 0.22em;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .mobile-title {
    font-size: clamp(3.45rem, 17vw, 4.3rem);
  }

  .feature-card {
    grid-template-columns: 50px 1fr 22px;
    padding-left: 12px;
  }

  .feature-card h2 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 82px;
  }

  body {
    min-height: 100svh;
  }

  .site-header {
    position: fixed;
    top: 0;
    background: linear-gradient(180deg, rgba(1, 3, 5, 0.86), rgba(1, 3, 5, 0.48));
  }

  .mobile-stage,
  .mobile-menu {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(390px, 46vw) minmax(235px, 23vw) minmax(360px, 1fr);
    min-height: 680px;
    height: calc(100svh - var(--header-h));
    max-height: 938px;
    margin-top: var(--header-h);
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(1, 3, 5, 0.1), rgba(1, 3, 5, 0.02) 43%, rgba(1, 3, 5, 0.42) 72%, rgba(1, 3, 5, 0.76)),
      url("assets/hero-clean-desktop_upres.jpg") center top / cover no-repeat,
      #010203;
  }

  .desktop-stage::before {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    content: "";
    background:
      radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.12), transparent 18rem),
      linear-gradient(90deg, transparent 0 58%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.52) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.82) 100%);
  }

  .action-zone {
    position: relative;
    min-width: 0;
  }

  .quote-block {
    position: absolute;
    z-index: 10;
    top: 29%;
    left: clamp(38px, 4.8vw, 78px);
    width: min(300px, 25vw);
    color: var(--white);
    text-transform: uppercase;
    transform: translateY(-10%);
  }

  .quote-block::before {
    content: none;
  }

  .quote-mark {
    display: block;
    height: 34px;
    color: #1d70d7;
    font-family: Georgia, serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.35;
  }

  .quote-block p {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2rem, 2.1vw, 2.55rem);
    font-style: italic;
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.74);
  }

  .quote-block strong {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    font-family: var(--display);
    font-size: clamp(1.15rem, 1.35vw, 1.45rem);
    font-style: italic;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  }

  .signature {
    display: inline-block;
    width: max-content;
    margin-top: 16px;
    color: var(--gold);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    line-height: 1;
    text-transform: none;
    transform: rotate(-7deg);
    transform-origin: left center;
  }

  .signature--autograph {
    opacity: 0.9;
  }

  .signature--autograph img {
    display: block;
    width: clamp(112px, 8.8vw, 148px);
    height: clamp(42px, 3.35vw, 56px);
    object-fit: fill;
    filter: drop-shadow(0 0 5px rgba(217, 165, 54, 0.18));
  }

  .collage-zone {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-rows: 1.06fr 0.98fr 1fr;
    min-width: 0;
    margin-top: 0;
    margin-bottom: 126px;
    filter: saturate(1.08) contrast(1.06);
    visibility: hidden;
  }

  .collage-zone::before,
  .collage-zone::after {
    position: absolute;
    top: -8px;
    bottom: -8px;
    z-index: 4;
    width: 2px;
    content: "";
    background: var(--blue);
    box-shadow: 0 0 16px var(--blue-glow), 0 0 4px var(--blue);
    transform: skewX(-12deg);
  }

  .collage-zone::before {
    left: 0;
  }

  .collage-zone::after {
    right: 5%;
  }

  .clip-panel {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-bottom: 1px solid rgba(0, 119, 255, 0.8);
    clip-path: polygon(13% 0, 100% 0, 87% 100%, 0% 100%);
    box-shadow: inset 0 -2px 0 rgba(0, 119, 255, 0.56);
  }

  .clip-panel img {
    width: 118%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transform: translateX(-6%) scale(1.06);
  }

  .clip-panel-top img {
    object-position: 58% center;
  }

  .clip-panel-middle img {
    object-position: 54% center;
  }

  .clip-panel-bottom img {
    object-position: 53% center;
  }

  .cta-panel {
    position: relative;
    z-index: 8;
    grid-column: 3 / 4;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(26px, 4svh, 48px) clamp(24px, 3.8vw, 62px) 118px clamp(24px, 2.6vw, 44px);
    background:
      linear-gradient(90deg, rgba(0, 119, 255, 0.12), transparent 16%),
      radial-gradient(circle at 30% 42%, rgba(0, 119, 255, 0.1), transparent 16rem),
      linear-gradient(180deg, rgba(8, 11, 15, 0.76), rgba(0, 0, 0, 0.92));
  }

  .cta-panel::before {
    content: none;
  }

  .title-lockup {
    position: relative;
  }

  .title-lockup::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.51), transparent);
    box-shadow: 0 0 10px rgba(0, 119, 255, 0.32);
  }

  .title-lockup h1 {
    font-size: clamp(4.8rem, 6.8vw, 7.8rem);
    line-height: 0.72;
  }

  .title-lockup h1 span {
    display: block;
  }

  .cta-panel .subtitle {
    margin-top: 18px;
    font-size: clamp(1.65rem, 1.95vw, 2.25rem);
  }

  .electric-line {
    width: min(100%, 400px);
    height: 2px;
    margin: 18px 0 20px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    box-shadow: 0 0 18px var(--blue-glow);
  }

  .cta-panel .drop-copy {
    margin-top: 0;
    font-size: clamp(1.6rem, 1.86vw, 2.25rem);
  }

  .cta-panel .support-copy {
    font-size: clamp(0.96rem, 1.1vw, 1.1rem);
    line-height: 1.12;
  }

  .cta-panel .signup-form {
    margin-top: 16px;
  }

  .cta-panel .input-shell input {
    min-height: 50px;
  }

  .cta-panel .gold-button {
    min-height: 52px;
    font-size: clamp(1.35rem, 1.65vw, 1.8rem);
  }

  .cta-panel .gold-button span {
    white-space: nowrap;
  }

  .cta-panel .form-status {
    min-height: 0;
    font-size: 0.95rem;
  }

  .cta-panel .privacy-line {
    margin-top: 8px;
    font-size: 0.9rem;
  }

  .desktop-nav {
    position: absolute;
    left: 52%;
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.45vw, 42px);
    color: rgba(244, 244, 242, 0.94);
  }

  .desktop-nav a {
    font-size: clamp(1.1rem, 1.15vw, 1.35rem);
    line-height: 1;
    transition: color 160ms ease, text-shadow 160ms ease;
  }

  .desktop-nav a:hover,
  .desktop-social a:hover,
  .mobile-menu a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 12px rgba(217, 165, 54, 0.25);
  }

  .desktop-social {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.35vw, 24px);
    margin-left: auto;
  }

  .desktop-social a {
    color: var(--white);
    transition: color 160ms ease, transform 160ms ease;
  }

  .desktop-social a:hover {
    transform: translateY(-1px);
  }

  .feature-rail {
    position: absolute;
    right: clamp(48px, 5vw, 86px);
    bottom: 0;
    left: clamp(48px, 5vw, 86px);
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: clamp(104px, 13svh, 128px);
    padding: clamp(10px, 1.6svh, 18px) 28px clamp(12px, 1.9svh, 22px);
    border: 1px solid rgba(0, 119, 255, 0.24);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background:
      linear-gradient(180deg, rgba(5, 8, 12, 0.94), rgba(1, 3, 5, 0.94)),
      var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 -10px 34px rgba(0, 119, 255, 0.12);
  }

  .feature-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(14px, 1.5vw, 24px);
    min-width: 0;
    padding: 0 clamp(10px, 1.2vw, 22px);
  }

  .feature-item:not(:last-child)::after {
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 10px;
    width: 1px;
    content: "";
    background: linear-gradient(180deg, transparent, var(--blue), transparent);
    box-shadow: 0 0 12px var(--blue-glow);
  }

  .feature-item > svg {
    width: clamp(42px, 3.4vw, 56px);
    height: clamp(42px, 3.4vw, 56px);
    color: var(--blue);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(0, 119, 255, 0.35));
  }

  .feature-item h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.45rem, 1.65vw, 2rem);
    font-weight: 500;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .feature-item p {
    max-width: 14rem;
    margin: 7px 0 0;
    color: var(--muted-white);
    font-size: clamp(0.9rem, 1vw, 1.08rem);
    font-weight: 500;
    line-height: 1.12;
  }
}

@media (min-width: 1024px) and (max-width: 1120px) {
  .desktop-stage {
    grid-template-columns: 46vw 27vw 1fr;
  }

  .desktop-nav {
    left: 44%;
    gap: 18px;
  }

  .desktop-nav a:nth-child(4),
  .desktop-nav a:nth-child(5) {
    display: none;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-sub {
    font-size: 0.64rem;
  }

  .cta-panel {
    padding-right: 26px;
    padding-left: 22px;
  }

  .title-lockup h1 {
    font-size: 4.15rem;
  }

  .cta-panel .subtitle {
    margin-top: 13px;
    font-size: 1.35rem;
    line-height: 0.95;
  }

  .electric-line {
    margin: 12px 0 14px;
  }

  .cta-panel .drop-copy {
    font-size: 1.35rem;
  }

  .cta-panel .support-copy {
    font-size: 0.9rem;
    line-height: 1.08;
  }

  .cta-panel .signup-form {
    gap: 8px;
    margin-top: 10px;
  }

  .cta-panel .signup-form label {
    font-size: 0.82rem;
  }

  .cta-panel .input-shell input {
    min-height: 44px;
    padding-left: 48px;
    font-size: 1rem;
  }

  .cta-panel .input-shell svg {
    left: 15px;
    width: 19px;
    height: 19px;
  }

  .cta-panel .gold-button {
    min-height: 46px;
    font-size: 1.24rem;
  }

  .cta-panel .privacy-line {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .feature-rail {
    left: 28px;
    right: 28px;
    padding-inline: 14px;
    min-height: 100px;
  }

  .feature-item {
    gap: 10px;
    padding-inline: 10px;
  }
}

@media (min-width: 1300px) {
  .feature-item p {
    font-size: 1.12rem;
  }
}

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