:root {
  --bg: #070a0f;
  --bg-deep: #030508;
  --surface: #121820;
  --surface-2: #1a2129;
  --surface-3: #242c35;
  --steel: #66717c;
  --line: #343d47;
  --line-bright: #596572;
  --blue: #1e90ff;
  --blue-bright: #62b4ff;
  --blue-deep: #0756ad;
  --green: #36db68;
  --amber: #f3b642;
  --text: #f4f6f8;
  --muted: #aeb7c1;
  --muted-2: #7f8a95;
  --danger: #ff5d57;
  --content: 1180px;
  --header-height: 98px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .48);
  --bevel: inset 0 1px 0 rgba(255, 255, 255, .1), inset 0 -2px 0 rgba(0, 0, 0, .6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(30, 144, 255, .08), transparent 23rem),
    radial-gradient(circle at 88% 34%, rgba(30, 144, 255, .05), transparent 28rem),
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .012) 8px 9px),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .17;
  background-image:
    radial-gradient(circle at 15% 20%, #1e90ff 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 32%, #985a21 0 1px, transparent 1.5px),
    radial-gradient(circle at 36% 82%, #69737e 0 1px, transparent 1.5px);
  background-size: 190px 190px, 260px 260px, 310px 310px;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-150%);
  transition: transform .18s ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section-shell,
.nav-shell,
.proof-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: clamp(82px, 9vw, 132px);
}

.section-heading {
  width: min(790px, 100%);
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.community-copy h2,
.yard-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-stretch: condensed;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.section-heading p,
.community-copy > p,
.yard-copy > p {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.section-heading-left p,
.community-copy > p,
.yard-copy > p {
  margin-inline: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 22px;
  border: 1px solid #4da9ff;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #1787f8, #0754aa);
  box-shadow: var(--bevel), 0 10px 24px rgba(0, 93, 193, .28);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, filter .18s ease, box-shadow .18s ease;
}

.button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: var(--bevel), 0 14px 30px rgba(0, 105, 215, .36);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  opacity: .5;
  cursor: not-allowed;
  filter: none;
  transform: none;
  box-shadow: var(--bevel);
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .74rem;
}

.button-secondary {
  border-color: #596572;
  color: var(--text);
  background: linear-gradient(180deg, #29313a, #151a20);
  box-shadow: var(--bevel), 0 9px 20px rgba(0, 0, 0, .28);
}

.metal-panel {
  border: 1px solid var(--line-bright);
  background:
    repeating-linear-gradient(135deg, transparent 0 7px, rgba(255, 255, 255, .015) 7px 8px),
    linear-gradient(155deg, #222a32, #10151b 58%, #080b0f);
  box-shadow: var(--bevel), var(--shadow);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(101, 114, 126, .5);
  background: rgba(5, 8, 12, .86);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  background: rgba(3, 5, 8, .96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .5);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: grid;
  width: 152px;
  height: 84px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-link img {
  width: 148px;
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px #000);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 14px 0;
  color: #c9d0d7;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 50%;
  bottom: 7px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  transition: inset .18s ease;
}

.site-nav > a:not(.button):hover {
  color: #fff;
}

.site-nav > a:not(.button):hover::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #252d35, #11161b);
  box-shadow: var(--bevel);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hero */

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding-block: clamp(70px, 8vw, 112px) clamp(88px, 10vw, 140px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(3.5rem, 5.2vw, 5.6rem);
  font-stretch: condensed;
  line-height: .87;
  letter-spacing: -.038em;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #000, 0 16px 36px rgba(0, 0, 0, .55);
}

.hero-copy h1 span {
  color: var(--blue-bright);
  text-shadow: 0 3px 0 #003e80, 0 0 28px rgba(30, 144, 255, .22);
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #c1c8cf;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.65;
}

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

.guest-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.guest-note svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.hero-product {
  position: relative;
  max-width: 510px;
  justify-self: end;
}

.hero-product::before {
  position: absolute;
  inset: 8% -14% -2% 8%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 144, 255, .18), rgba(30, 144, 255, 0) 68%);
  filter: blur(12px);
}

.product-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #72808d;
  border-radius: 17px;
  background: #080b0f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 0 0 5px #11171d,
    inset 0 0 0 6px #343e48,
    0 40px 80px rgba(0, 0, 0, .62);
  transform: perspective(1300px) rotateY(-5deg) rotateX(1deg);
}

.frame-top {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid #4a5560;
  color: #c2cad2;
  background: linear-gradient(180deg, #242c34, #10151b);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .66rem;
  letter-spacing: .09em;
}

.frame-top strong {
  color: #fff;
  font-size: .82rem;
}

.frame-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(54, 219, 104, .65);
}

.product-screen {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 36px 34px;
  background:
    linear-gradient(180deg, rgba(30, 144, 255, .08), transparent 42%),
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .014) 8px 9px),
    #0a0e13;
}

.preview-copy {
  text-align: center;
}

.preview-icon {
  width: 78px;
  height: 78px;
  display: grid;
  margin: 0 auto 22px;
  place-items: center;
  border: 4px solid #323d47;
  border-top-color: var(--blue);
  border-right-color: var(--blue);
  border-radius: 50%;
  color: var(--blue-bright);
  background: radial-gradient(circle, #26333f, #080b0f 72%);
  box-shadow: 0 0 0 4px #11171d, 0 0 26px rgba(30, 144, 255, .48), inset 0 0 18px #000;
}

.preview-icon svg {
  width: 32px;
  height: 32px;
}

.preview-copy > p:first-of-type {
  margin: 0 0 8px;
  color: var(--blue-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.preview-copy h2 {
  max-width: 390px;
  margin: 0 auto;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.preview-copy > p:last-child {
  max-width: 370px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.preview-readout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid #4c5863;
  border-left: 3px solid var(--blue);
  border-radius: 5px;
  background: linear-gradient(180deg, #202932, #11171d);
  box-shadow: var(--bevel);
}

.preview-readout span,
.preview-readout small {
  color: var(--muted);
  font-size: .72rem;
}

.preview-readout strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--blue-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.preview-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #47525e;
  background: linear-gradient(180deg, #151b22, #080b0f);
}

.preview-tabs button {
  position: relative;
  min-height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 0;
  border-right: 1px solid #323b44;
  color: #9ea8b2;
  background: transparent;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}

.preview-tabs button:last-child {
  border-right: 0;
}

.preview-tabs button svg {
  width: 24px;
  height: 24px;
}

.preview-tabs button.active {
  color: var(--blue-bright);
  background: linear-gradient(180deg, rgba(30, 144, 255, .15), transparent);
}

.preview-tabs button.active::before {
  position: absolute;
  top: 0;
  right: 20%;
  left: 20%;
  height: 3px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.hero-anvil {
  position: absolute;
  right: -52px;
  bottom: -77px;
  z-index: 3;
  width: 230px;
  pointer-events: none;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, .8));
  transform: rotate(-2deg);
}

/* Proof rail */

.proof-rail {
  border-block: 1px solid #3f4953;
  background: rgba(11, 15, 20, .9);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 14px 40px rgba(0, 0, 0, .2);
}

.proof-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-shell > div {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px clamp(14px, 2vw, 28px);
  border-right: 1px solid #333c45;
}

.proof-shell > div:last-child {
  border-right: 0;
}

.proof-shell svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--blue);
}

.proof-shell span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.proof-shell strong {
  display: block;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Feature workflow */

.feature-workflow {
  border-block: 1px solid var(--line);
}

.workflow-step {
  min-height: 180px;
  display: grid;
  grid-template-columns: 80px 84px 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding: 32px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step:hover {
  background: linear-gradient(90deg, rgba(30, 144, 255, .06), transparent 72%);
}

.step-number {
  color: #6c7782;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid #3f4a55;
  border-radius: 50%;
  color: var(--blue);
  background: radial-gradient(circle, #1e2730, #0a0e12 74%);
  box-shadow: inset 0 0 14px #000, 0 0 20px rgba(30, 144, 255, .08);
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.workflow-step h3 {
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.workflow-step p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.milo-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 26px 30px;
  border: 1px solid #3b5e7e;
  border-left: 3px solid var(--blue);
  border-radius: 7px;
  background: linear-gradient(100deg, rgba(18, 51, 80, .74), rgba(11, 16, 22, .92) 60%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06), 0 18px 42px rgba(0, 0, 0, .25);
}

.milo-mark {
  position: relative;
  width: 62px;
  height: 62px;
  border: 2px solid #477aab;
  border-radius: 15px;
  background: linear-gradient(145deg, #27333e, #0e141a);
  box-shadow: inset 0 0 0 3px #111820, 0 0 20px rgba(30, 144, 255, .12);
}

.milo-mark::before,
.milo-mark::after {
  position: absolute;
  top: 21px;
  width: 10px;
  height: 13px;
  content: "";
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 9px var(--blue);
}

.milo-mark::before { left: 15px; }
.milo-mark::after { right: 15px; }

.milo-mark span:first-child {
  position: absolute;
  top: -14px;
  left: 29px;
  width: 2px;
  height: 14px;
  background: #5c6975;
}

.milo-mark span:first-child::after {
  position: absolute;
  top: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.milo-mark span:last-child {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 16px;
  height: 6px;
  border-bottom: 2px solid #9ba6b0;
  border-radius: 50%;
  transform: translateX(-50%);
}

.milo-callout p {
  margin: 0;
  color: var(--blue-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.milo-callout blockquote {
  margin: 7px 0 0;
  color: #e3e7eb;
  font-size: .98rem;
  font-style: normal;
  line-height: 1.55;
}

.milo-callout > a,
.earn-strip > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.milo-callout > a svg,
.earn-strip > a svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}

.milo-callout > a:hover svg,
.earn-strip > a:hover svg {
  transform: translateX(4px);
}

/* Price source system */

.pricing-system {
  border-block: 1px solid #303943;
  background:
    linear-gradient(105deg, rgba(30, 144, 255, .06), transparent 38%),
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .012) 8px 9px),
    #0c1117;
}

.source-table {
  width: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid #46515c;
  border-radius: 8px;
  border-collapse: collapse;
  background: rgba(7, 10, 14, .72);
  box-shadow: var(--bevel), 0 22px 54px rgba(0, 0, 0, .32);
}

.source-table thead,
.source-table tbody {
  display: block;
}

.source-table th,
.source-table td {
  display: block;
  padding: 0;
  text-align: left;
}

.source-table th:last-child,
.source-table td:last-child {
  justify-self: end;
}

.source-row {
  min-height: 102px;
  display: grid;
  grid-template-columns: minmax(220px, .95fr) minmax(360px, 1.8fr) 120px;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid #313a43;
}

.source-row:last-child {
  border-bottom: 0;
}

.source-head {
  min-height: 50px;
  padding-block: 12px;
  color: #89949f;
  background: linear-gradient(180deg, #222a32, #151a20);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.source-name {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.03rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.status-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
}

.status-dot.national {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(30, 144, 255, .1), 0 0 12px rgba(30, 144, 255, .5);
}

.status-dot.community {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(243, 182, 66, .09), 0 0 12px rgba(243, 182, 66, .4);
}

.status-dot.verified {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(54, 219, 104, .09), 0 0 12px rgba(54, 219, 104, .45);
}

.source-row td > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.access-label {
  justify-self: end;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 3px;
  color: #dce1e6;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.premium-label {
  border-color: rgba(54, 219, 104, .35);
  color: var(--green);
  background: rgba(54, 219, 104, .06);
}

.price-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, .95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  margin-top: clamp(62px, 8vw, 98px);
}

.price-demo-copy h3 {
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.price-demo-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.price-stack {
  position: relative;
  min-height: 360px;
}

.price-stack > div {
  position: absolute;
  right: 0;
  width: min(100%, 390px);
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid #4b5661;
  border-radius: 6px;
  background:
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .014) 8px 9px),
    linear-gradient(160deg, #222a32, #10151a);
  box-shadow: var(--bevel), 0 18px 34px rgba(0, 0, 0, .34);
}

.price-stack > div:nth-child(1) {
  top: 0;
  right: 52px;
  opacity: .68;
  transform: scale(.93);
}

.price-stack > div:nth-child(2) {
  top: 104px;
  right: 26px;
  z-index: 2;
  opacity: .85;
  transform: scale(.965);
}

.price-stack > div:nth-child(3) {
  top: 216px;
  z-index: 3;
  border-color: rgba(54, 219, 104, .55);
  box-shadow: var(--bevel), 0 20px 40px rgba(0, 0, 0, .42), 0 0 26px rgba(54, 219, 104, .06);
}

.price-stack p {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-stack strong {
  grid-row: 1 / 3;
  grid-column: 3;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
}

.price-stack small {
  grid-column: 2;
  color: var(--muted);
}

.disclaimer {
  max-width: 820px;
  margin: 78px 0 0;
  padding-left: 16px;
  border-left: 2px solid #4a5560;
  color: #7f8993;
  font-size: .78rem;
  line-height: 1.6;
}

/* Community tickets */

.community-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.ticket-steps {
  display: grid;
  gap: 23px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.ticket-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 16px;
}

.ticket-steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #396a98;
  border-radius: 50%;
  color: var(--blue-bright);
  background: #0b1723;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 900;
  box-shadow: inset 0 0 10px #000;
}

.ticket-steps strong {
  display: block;
  color: #eef2f5;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .93rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.ticket-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.55;
}

.ticket-meter {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 11px;
}

.meter-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.meter-heading > div > span {
  color: var(--blue-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.meter-heading h3 {
  margin: 7px 0 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.meter-heading > strong {
  color: var(--blue-bright);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.meter-track {
  position: relative;
  height: 13px;
  margin-top: 34px;
  border: 1px solid #4b5660;
  border-radius: 999px;
  background: #05080b;
  box-shadow: inset 0 2px 6px #000;
}

.meter-track > span {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a61bd, var(--blue-bright));
  box-shadow: 0 0 14px rgba(30, 144, 255, .5);
  transition: width .3s ease;
}

.meter-track i {
  position: absolute;
  top: 50%;
  left: var(--position);
  width: 11px;
  height: 11px;
  border: 2px solid #78838d;
  border-radius: 50%;
  background: #151b21;
  transform: translate(-50%, -50%);
}

.meter-milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 17px;
}

.meter-milestones div {
  color: #cbd2d8;
  font-size: .72rem;
}

.meter-milestones div:nth-child(2) { text-align: center; }
.meter-milestones div:nth-child(3) { text-align: right; }

.meter-milestones strong,
.meter-milestones span {
  display: block;
}

.meter-milestones strong {
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.meter-milestones span {
  margin-top: 3px;
  color: var(--muted-2);
}

.meter-result {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #345d83;
  border-left: 3px solid var(--blue);
  border-radius: 5px;
  background: linear-gradient(120deg, rgba(13, 49, 80, .8), rgba(8, 13, 18, .88));
}

.meter-result span,
.meter-result strong {
  display: block;
}

.meter-result span {
  color: var(--muted);
  font-size: .72rem;
}

.meter-result strong {
  margin-top: 5px;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.meter-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

.meter-actions .button {
  width: 100%;
}

.icon-button {
  width: 54px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #57626d;
  border-radius: 5px;
  color: #cbd2d8;
  background: linear-gradient(180deg, #29313a, #151a20);
  box-shadow: var(--bevel);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.ticket-meter > p {
  margin: 18px 0 0;
  color: #78838e;
  font-size: .73rem;
  line-height: 1.55;
}

/* Premium */

.premium-section {
  border-block: 1px solid #303942;
  background:
    radial-gradient(circle at 80% 20%, rgba(30, 144, 255, .09), transparent 28rem),
    #0b1016;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.plan-card {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #47525d;
  border-radius: 9px;
  background:
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .012) 8px 9px),
    linear-gradient(155deg, #202831, #0d1217);
  box-shadow: var(--bevel), 0 22px 54px rgba(0, 0, 0, .34);
}

.plan-premium {
  border-color: #347dbd;
  background:
    linear-gradient(180deg, rgba(30, 144, 255, .08), transparent 32%),
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .014) 8px 9px),
    linear-gradient(155deg, #202a34, #0b1117);
  box-shadow: var(--bevel), 0 24px 58px rgba(0, 0, 0, .4), 0 0 35px rgba(30, 144, 255, .06);
}

.welcome-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: calc(clamp(28px, 4vw, 44px) * -1) calc(clamp(28px, 4vw, 44px) * -1) 30px;
  padding: 14px clamp(28px, 4vw, 44px);
  border-bottom: 1px solid #387fbd;
  color: #fff;
  background: linear-gradient(90deg, #0a58ad, #0e78dc);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.welcome-banner span {
  color: #d8ebff;
}

.plan-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid #3a444e;
}

.plan-top h3 {
  margin: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.plan-top p {
  margin: 0;
  text-align: right;
}

.plan-top strong,
.plan-top span {
  display: block;
}

.plan-top strong {
  color: var(--blue-bright);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.plan-card:first-child .plan-top strong {
  color: #fff;
}

.plan-top span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
}

.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  margin-top: 20px;
  padding: 3px;
  border: 1px solid #3e4953;
  border-radius: 5px;
  background: #080b0f;
}

.billing-toggle button {
  min-height: 40px;
  border: 0;
  border-radius: 3px;
  color: #8f9aa5;
  background: transparent;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.billing-toggle button.active {
  color: #fff;
  background: linear-gradient(180deg, #176ec7, #0a4686);
  box-shadow: var(--bevel);
}

.plan-card ul,
.yard-copy ul {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.plan-card li,
.yard-copy li {
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  gap: 11px;
  color: #c9d0d6;
  font-size: .92rem;
  line-height: 1.5;
}

.plan-card li svg,
.yard-copy li svg {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  color: var(--green);
  stroke-width: 2.5;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.billing-note {
  min-height: 38px;
  margin: 15px 0 0;
  color: #7c8791;
  font-size: .72rem;
  line-height: 1.45;
  text-align: center;
}

.earn-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  padding: 28px 32px;
  border: 1px solid #3d4852;
  border-radius: 7px;
  background: #0a0e13;
}

.earn-strip > div:first-child {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid #3d6d98;
  border-radius: 50%;
  color: var(--blue);
  background: #101b25;
}

.earn-strip > div:first-child svg {
  width: 27px;
  height: 27px;
}

.earn-strip h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.earn-strip p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

/* Yards */

.yards-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #303943;
  background: #070a0e;
}

.yard-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #06090d 0%, rgba(6, 9, 13, .96) 35%, rgba(6, 9, 13, .55) 68%, rgba(6, 9, 13, .34) 100%),
    linear-gradient(180deg, rgba(4, 7, 10, .18), rgba(4, 7, 10, .72)),
    url("assets/scrap-yard-day.webp") center / cover no-repeat;
  filter: contrast(1.08) saturate(.76);
}

.yard-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
  padding-block: 110px;
}

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

.yard-copy ul {
  margin-block: 32px;
}

.yard-panel {
  padding: 48px 36px;
  border-radius: 50% 50% 10px 10px / 36% 36% 10px 10px;
  text-align: center;
}

.yard-panel > svg {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  color: var(--blue-bright);
  filter: drop-shadow(0 0 18px rgba(30, 144, 255, .25));
  stroke-width: 1.4;
}

.yard-panel > span {
  color: var(--blue-bright);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.yard-panel h3 {
  margin: 6px 0 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.yard-panel p {
  margin: 18px 0 0;
  color: #c4cbd2;
  line-height: 1.6;
}

.yard-panel small {
  display: block;
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid #3e4852;
  color: var(--muted-2);
  font-size: .74rem;
  line-height: 1.5;
}

/* Trust and footer */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #38424c;
  background: #38424c;
}

.trust-grid article {
  min-height: 290px;
  padding: clamp(28px, 4vw, 42px);
  background:
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, .012) 8px 9px),
    #0d1218;
}

.trust-grid svg {
  width: 40px;
  height: 40px;
  color: var(--blue);
}

.trust-grid h3 {
  margin: 32px 0 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.trust-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.7;
}

.final-cta {
  padding-block: 64px;
  border-block: 1px solid #34404b;
  background:
    linear-gradient(90deg, rgba(30, 144, 255, .08), transparent 50%),
    linear-gradient(180deg, #121820, #080c10);
}

.final-cta .section-shell {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  align-items: center;
  gap: 34px;
}

.final-cta img {
  width: 132px;
  filter: drop-shadow(0 8px 12px #000);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.final-cta p {
  margin: 9px 0 0;
  color: var(--muted);
}

.site-footer {
  padding-top: 58px;
  background: #030507;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
  gap: clamp(48px, 9vw, 120px);
  padding-bottom: 50px;
}

.footer-main > div:first-child img {
  width: 180px;
  filter: drop-shadow(0 6px 10px #000);
}

.footer-main > div:first-child p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: .86rem;
  line-height: 1.65;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-main nav > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-main nav strong {
  margin-bottom: 4px;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-main nav a {
  color: #8e99a4;
  font-size: .82rem;
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--blue-bright);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 20px 28px;
  border-top: 1px solid #222a32;
}

.footer-legal p {
  max-width: 560px;
  margin: 0;
  color: #68737e;
  font-size: .7rem;
  line-height: 1.55;
}

.footer-legal p:last-child {
  text-align: right;
}

/* Reveal motion */

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1040px) {
  :root {
    --header-height: 88px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.button) {
    font-size: .72rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 7.4vw, 5.4rem);
  }

  .product-screen {
    min-height: 430px;
    padding-inline: 28px;
  }

  .hero-anvil {
    right: -28px;
    width: 190px;
  }

  .community-section {
    gap: 52px;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100vh - var(--header-height));
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    border-bottom: 1px solid #4a5560;
    background: rgba(5, 8, 12, .98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .66);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .18s ease, transform .18s ease;
  }

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

  .site-nav > a:not(.button) {
    padding: 16px 8px;
    border-bottom: 1px solid #29323b;
    font-size: .84rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 18px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .guest-note {
    justify-content: center;
  }

  .hero-product {
    width: min(100%, 520px);
    justify-self: center;
  }

  .product-frame {
    transform: none;
  }

  .proof-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-shell > div:nth-child(2) {
    border-right: 0;
  }

  .proof-shell > div:nth-child(-n+2) {
    border-bottom: 1px solid #333c45;
  }

  .milo-callout,
  .earn-strip {
    grid-template-columns: auto 1fr;
  }

  .milo-callout > a,
  .earn-strip > a {
    grid-column: 2;
  }

  .price-demo,
  .community-section,
  .yard-shell {
    grid-template-columns: 1fr;
  }

  .price-demo {
    gap: 54px;
  }

  .price-stack {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .community-section {
    align-items: stretch;
  }

  .ticket-meter {
    width: min(100%, 620px);
    justify-self: center;
  }

  .yard-photo {
    background:
      linear-gradient(180deg, rgba(5, 8, 12, .7), #05080c 74%),
      url("assets/scrap-yard-day.webp") center top / cover no-repeat;
  }

  .yard-copy {
    max-width: 730px;
  }

  .yard-panel {
    width: min(100%, 520px);
    justify-self: center;
  }

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

  .trust-grid article {
    min-height: 0;
  }

  .final-cta .section-shell {
    grid-template-columns: 110px 1fr;
  }

  .final-cta .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 78px;
  }

  .section-shell,
  .nav-shell,
  .proof-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .brand-link {
    width: 118px;
    height: 72px;
  }

  .brand-link img {
    width: 116px;
    max-height: 70px;
  }

  .hero {
    gap: 54px;
    padding-block: 64px 96px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-screen {
    min-height: 420px;
    padding: 34px 20px 26px;
  }

  .preview-copy h2 {
    font-size: 2rem;
  }

  .preview-readout {
    grid-template-columns: 1fr;
  }

  .preview-readout strong {
    grid-row: auto;
    grid-column: auto;
    margin: 5px 0;
  }

  .hero-anvil {
    right: -14px;
    bottom: -60px;
    width: 160px;
  }

  .workflow-step {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 28px 6px;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: .78rem;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    grid-column: 1;
    grid-row: 2;
  }

  .step-icon svg {
    width: 23px;
    height: 23px;
  }

  .workflow-step > div:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .workflow-step h3 {
    font-size: 1.65rem;
  }

  .milo-callout,
  .earn-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .milo-mark {
    width: 54px;
    height: 54px;
  }

  .milo-callout > a,
  .earn-strip > a {
    grid-column: 1;
  }

  .source-table {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .source-head {
    display: none;
  }

  .source-row {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
    margin-bottom: 12px;
    padding: 22px;
    border: 1px solid #46515c;
    border-radius: 6px;
    background: rgba(7, 10, 14, .82);
  }

  .source-row td:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .source-row td > p {
    font-size: .88rem;
  }

  .price-stack {
    min-height: 390px;
  }

  .price-stack > div {
    right: 0 !important;
    width: 100%;
  }

  .price-stack > div:nth-child(1) { top: 0; }
  .price-stack > div:nth-child(2) { top: 114px; }
  .price-stack > div:nth-child(3) { top: 232px; }

  .disclaimer {
    margin-top: 54px;
  }

  .community-section {
    gap: 48px;
  }

  .meter-heading {
    align-items: start;
  }

  .meter-heading > strong {
    font-size: 1.8rem;
  }

  .meter-milestones {
    gap: 6px;
  }

  .meter-milestones span {
    font-size: .62rem;
  }

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

  .plan-card {
    min-height: 0;
  }

  .welcome-banner {
    align-items: start;
    flex-direction: column;
  }

  .yard-shell {
    padding-block: 82px;
  }

  .final-cta .section-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta img {
    width: 138px;
    margin-inline: auto;
  }

  .final-cta .button {
    grid-column: 1;
    width: 100%;
    justify-self: stretch;
  }

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

  .footer-main > div:first-child img {
    width: 150px;
  }

  .footer-main nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-legal {
    display: grid;
    gap: 12px;
  }

  .footer-legal p:last-child {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .section-heading h2,
  .community-copy h2,
  .yard-copy h2 {
    font-size: 2.45rem;
  }

  .proof-shell {
    grid-template-columns: 1fr;
  }

  .proof-shell > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid #333c45;
  }

  .proof-shell > div:last-child {
    border-bottom: 0;
  }

  .product-screen {
    min-height: 390px;
  }

  .frame-top {
    grid-template-columns: auto 1fr;
  }

  .frame-top > span:last-child {
    display: none;
  }

  .preview-tabs button {
    min-height: 70px;
  }

  .price-stack > div {
    grid-template-columns: auto 1fr;
  }

  .price-stack strong {
    grid-row: auto;
    grid-column: 2;
    justify-self: end;
  }

  .price-stack small {
    grid-column: 2;
  }

  .meter-milestones strong {
    font-size: .6rem;
  }

  .meter-actions {
    grid-template-columns: 1fr;
  }

  .icon-button {
    width: 100%;
  }

  .plan-top {
    align-items: start;
    flex-direction: column;
  }

  .plan-top p {
    text-align: left;
  }

  .billing-toggle {
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
