/* Markpane public site. Static, production-safe CSS. */
:root {
  --paper: #f6f2e9;
  --paper-raised: #fcfaf4;
  --paper-sunken: #efeadd;
  --paper-low: #e6dec9;
  --ink: #1a1c22;
  --ink-2: #5d584f;
  --ink-3: #8b857a;
  --line: rgba(26, 28, 34, 0.1);
  --line-strong: rgba(26, 28, 34, 0.18);
  --graphite: #161820;
  --graphite-2: #1d2029;
  --graphite-3: #2a2d35;
  --on-graphite: #f3ede0;
  --on-graphite-2: #b7b2a6;
  --on-graphite-3: #837e74;
  --line-on-graphite: rgba(243, 237, 224, 0.13);
  --teal: #1c8a6e;
  --teal-ink: #136350;
  --teal-bright: #23a583;
  --teal-tint: rgba(28, 138, 110, 0.1);
  --teal-tint-dark: rgba(35, 165, 131, 0.15);
  --serif: "Source Serif 4", "New York", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 8px;
  --window-radius: 11px;
  --shadow-sm: 0 1px 2px rgba(26, 28, 34, 0.05), 0 1px 0 rgba(26, 28, 34, 0.03);
  --shadow: 0 1px 3px rgba(26, 28, 34, 0.07), 0 8px 24px rgba(26, 28, 34, 0.08);
  --shadow-lg: 0 2px 6px rgba(26, 28, 34, 0.09), 0 24px 60px rgba(26, 28, 34, 0.16);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

code {
  font-family: var(--mono);
}

::selection {
  background: var(--teal-tint);
}

:focus-visible {
  outline: 3px solid rgba(28, 138, 110, 0.45);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

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

.section--tight {
  padding-block: clamp(48px, 6vw, 88px);
}

.band-graphite {
  background: var(--graphite);
  color: var(--on-graphite);
}

.band-sunken {
  background: var(--paper-sunken);
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.display-1 {
  font-size: 4.2rem;
}

.display-2 {
  font-size: 3rem;
}

.h-func {
  font-family: var(--sans);
  font-size: 1.85rem;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}

h3,
.h3 {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
}

.lead {
  color: var(--ink-2);
  font-size: 1.22rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.band-graphite .lead {
  color: var(--on-graphite-2);
}

.muted {
  color: var(--ink-2);
}

.tiny {
  font-size: 0.84rem;
}

.mono {
  font-family: var(--mono);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--teal-ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--teal);
}

.band-graphite .eyebrow {
  color: var(--teal-bright);
}

.band-graphite .eyebrow::before {
  background: var(--teal-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn--primary:hover {
  background: #000;
}

.band-graphite .btn--primary {
  background: var(--on-graphite);
  color: var(--graphite);
}

.band-graphite .btn--primary:hover {
  background: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(26, 28, 34, 0.04);
}

.band-graphite .btn--ghost {
  color: var(--on-graphite);
  border-color: var(--line-on-graphite);
}

.band-graphite .btn--ghost:hover {
  border-color: var(--on-graphite);
  background: rgba(243, 237, 224, 0.06);
}

.btn--sm {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.62;
  cursor: default;
  pointer-events: none;
}

.link-teal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-ink);
  font-size: 0.97rem;
  font-weight: 600;
}

.band-graphite .link-teal {
  color: var(--teal-bright);
}

.link-teal svg {
  transition: transform 0.15s ease;
}

.link-teal:hover svg {
  transform: translateX(3px);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: 0;
}

.brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.nav__links a {
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 550;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(26, 28, 34, 0.04);
}

.nav__spacer {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(72px, 10vw, 132px);
  min-height: 540px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero__copy {
  max-width: 34rem;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.07;
}

.hero__lead {
  max-width: 30rem;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}

.hero__media {
  position: relative;
  margin-right: calc(-1 * var(--gut));
}

.hero__cta,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.hero__meta {
  margin-top: 18px;
  color: var(--on-graphite-3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.cta--prelaunch,
.cta--testflight,
.cta--appstore {
  display: none;
}

html[data-cta="prelaunch"] .cta--prelaunch,
html[data-cta="testflight"] .cta--testflight,
html[data-cta="appstore"] .cta--appstore {
  display: inline-flex;
}

.window {
  overflow: hidden;
  border: 0.5px solid var(--line);
  border-radius: var(--window-radius);
  background: var(--paper-raised);
  box-shadow: var(--shadow-lg);
}

.window__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 40px;
  padding: 0 14px;
  background: linear-gradient(180deg, #fbf9f4, #f3eee4);
  border-bottom: 0.5px solid var(--line);
}

.window--graphite .window__bar {
  background: linear-gradient(180deg, #2a2d35, #22252e);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lights {
  display: flex;
  gap: 8px;
}

.lights i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.18);
}

.lights i:nth-child(1) {
  background: #ff5f57;
}

.lights i:nth-child(2) {
  background: #febc2e;
}

.lights i:nth-child(3) {
  background: #28c940;
}

.window__title {
  overflow: hidden;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window--graphite .window__title {
  color: var(--on-graphite-3);
}

.shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  aspect-ratio: var(--shot-ar, 16 / 10);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(26, 28, 34, 0.04) 0 2px, transparent 2px 11px), var(--paper-sunken);
}

.window--graphite .shot {
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 11px), #14161d;
}

.shot:has(> img) {
  min-height: 0;
  aspect-ratio: auto;
  place-items: stretch;
  background: none;
}

.shot > img,
.shot__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shot__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 82%;
  gap: 8px;
  padding: 16px 22px;
  text-align: center;
}

.shot__tag .badge {
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-raised);
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window--graphite .shot__tag .badge {
  border-color: rgba(255, 255, 255, 0.11);
  background: var(--graphite-2);
  color: var(--on-graphite-3);
}

.shot__tag .cap {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.5;
}

.window--graphite .shot__tag .cap {
  color: var(--on-graphite-2);
}

.shot__tag .dim {
  color: var(--ink-3);
  font-size: 11px;
}

.window--graphite .shot__tag .dim {
  color: var(--on-graphite-3);
}

.ph {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, rgba(26, 28, 34, 0.04) 0 2px, transparent 2px 11px), var(--paper-sunken);
}

.ph .cap {
  padding: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.45;
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: clamp(56px, 7vw, 104px);
}

.feature-row--flip .feature-row__media {
  order: -1;
}

.feature-row__media {
  position: relative;
}

@media (min-width: 981px) {
  .feature-row:not(.feature-row--flip) .feature-row__media {
    margin-right: calc(-1 * var(--gut));
  }

  .feature-row--flip .feature-row__media {
    margin-left: calc(-1 * var(--gut));
  }
}

.feature-row__body {
  max-width: 31em;
}

.feature-row__body .lead {
  margin-top: 16px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-2);
  font-size: 0.97rem;
}

.spec-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-ink);
}

.band-graphite .spec-list li {
  color: var(--on-graphite-2);
}

.band-graphite .spec-list svg {
  color: var(--teal-bright);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.sec-head {
  max-width: 44rem;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sec-head .lead {
  margin-top: 18px;
}

.sec-head--center {
  margin-inline: auto;
  text-align: center;
}

.sec-head--center .eyebrow {
  justify-content: center;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
  box-shadow: var(--shadow-sm);
}

.band-graphite .card {
  border-color: var(--line-on-graphite);
  background: var(--graphite-2);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-2);
  font-size: 0.97rem;
  line-height: 1.55;
}

.band-graphite .card p {
  color: var(--on-graphite-2);
}

.feat-ico {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, transparent);
  border-radius: 8px;
  background: var(--teal-tint);
  color: var(--teal-ink);
}

.band-graphite .feat-ico {
  background: var(--teal-tint-dark);
  color: var(--teal-bright);
}

.feat-ico svg {
  width: 19px;
  height: 19px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-grid .cell {
  padding: 24px;
  background: var(--paper-raised);
}

.band-graphite .trust-grid {
  border-color: var(--line-on-graphite);
  background: var(--line-on-graphite);
}

.band-graphite .trust-grid .cell {
  background: var(--graphite-2);
}

.trust-grid .k {
  margin-bottom: 8px;
  color: var(--teal-ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.band-graphite .trust-grid .k {
  color: var(--teal-bright);
}

.trust-grid .v {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.45;
}

.band-graphite .trust-grid .v {
  color: var(--on-graphite-2);
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
}

.plan--pro {
  border-color: color-mix(in srgb, var(--teal) 42%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--teal) 22%, transparent), var(--shadow);
}

.plan__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.plan__name b {
  font-size: 1.28rem;
  font-weight: 680;
}

.plan__price {
  margin: 14px 0 2px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.plan__price small {
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 550;
}

.plan__sub {
  min-height: 2.6em;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.plan li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-ink);
}

.tag-pro {
  padding: 3px 7px;
  border: 1px solid color-mix(in srgb, var(--teal) 30%, transparent);
  border-radius: 5px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, transparent);
  border-radius: var(--radius);
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-size: 0.94rem;
  line-height: 1.5;
}

.pill-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-size: 1.12rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .q {
  flex: 1;
}

.faq summary .chev {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.2s ease;
}

.faq details[open] summary .chev {
  transform: rotate(45deg);
}

.faq .a {
  max-width: 56em;
  padding: 0 48px 26px 4px;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.6;
}

.page-head {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.kbd {
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: var(--paper-sunken);
  font-family: var(--mono);
  font-size: 0.85em;
}

.divider {
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--line);
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin: 44px 0 14px;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 650;
}

.prose h3 {
  margin: 28px 0 10px;
}

.prose p {
  margin: 0 0 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--ink-2);
  line-height: 1.6;
}

.prose li {
  margin-bottom: 7px;
}

.prose strong {
  color: var(--ink);
  font-weight: 650;
}

.prose a {
  color: var(--teal-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.dl-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.status-panel {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
  box-shadow: var(--shadow-sm);
}

.status-panel .cta-row {
  margin-top: 18px;
}

.badge-slot {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 8px;
  background: var(--paper-sunken);
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.req-list,
.report-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.req-list .rk {
  flex-shrink: 0;
  width: 128px;
  padding-top: 2px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.req-list .rv {
  color: var(--ink);
  font-size: 0.98rem;
}

.report-steps {
  display: grid;
  gap: 14px;
  counter-reset: report-step;
}

.report-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
  counter-increment: report-step;
}

.report-steps li::before {
  content: counter(report-step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.report-steps b {
  font-weight: 650;
}

.report-steps p {
  margin-top: 3px;
  color: var(--ink-2);
  font-size: 0.96rem;
}

.footer {
  padding-block: clamp(56px, 7vw, 88px) 40px;
  background: var(--graphite);
  color: var(--on-graphite);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer .brand {
  margin-bottom: 16px;
  color: var(--on-graphite);
}

.footer__blurb {
  max-width: 24em;
  color: var(--on-graphite-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer h4 {
  margin-bottom: 16px;
  color: var(--on-graphite-3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul a {
  color: var(--on-graphite-2);
  font-size: 0.95rem;
}

.footer ul a:hover,
.footer ul a[aria-current="page"] {
  color: var(--on-graphite);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--line-on-graphite);
}

.footer__bottom .tiny {
  color: var(--on-graphite-3);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .display-1 {
    font-size: 3.4rem;
  }

  .display-2 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero__grid,
  .feature-row,
  .dl-grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    margin-right: 0;
  }

  .feature-row--flip .feature-row__media {
    order: 0;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .display-1,
  .hero h1 {
    font-size: 2.65rem;
  }

  .display-2 {
    font-size: 2.15rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .nav__inner {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-block: 10px;
  }

  .nav__links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav__links a {
    padding-inline: 10px;
  }

  .nav__cta {
    margin-left: auto;
  }

  .hero__cta,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__cta .btn,
  .cta-row .btn {
    width: 100%;
    white-space: normal;
  }

  .plans,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .shot {
    min-height: 210px;
  }
}

@media (max-width: 520px) {
  .display-1,
  .hero h1 {
    font-size: 2.35rem;
  }

  .display-2 {
    font-size: 1.95rem;
  }

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

  .card,
  .plan {
    padding: 22px;
  }

  .req-list li {
    flex-direction: column;
    gap: 4px;
  }

  .req-list .rk {
    width: auto;
  }

  .faq .a {
    padding-right: 4px;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
