:root {
  --color-bg: #FAF7F2;
  --color-surface: #FFFFFF;
  --color-text: #1F1B16;
  --color-muted: #6B6359;
  --color-accent: #B5532A;
  --color-accent-hover: #94411F;
  --color-soft: #E8DDD0;
  --color-success: #5C7A4F;
  --color-border: #EAE3D8;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1140px;
  --radius: 8px;
  --shadow-soft: 0 18px 48px rgba(31, 27, 22, 0.08);
  --header-height: 76px;
  --section-space: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 11vw, 4.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

p {
  color: var(--color-muted);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 920px);
}

.section {
  padding-block: var(--section-space);
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--color-text);
  color: var(--color-surface);
  padding: 10px 14px;
}

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

:focus-visible {
  outline: 3px solid rgba(181, 83, 42, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: transparent;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--color-border);
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.06);
  backdrop-filter: blur(12px);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  transform: translateY(-1px);
}

.nav-toggle {
  position: relative;
  z-index: 61;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px var(--color-border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 60;
  display: grid;
  gap: 6px;
  padding: 18px 20px 24px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.08);
  transform: translateY(-130%);
  transition: transform 220ms ease;
}

.nav-menu.is-open {
  transform: translateY(0);
}

.nav-menu a {
  border-radius: var(--radius);
  padding: 12px 10px;
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-menu a:not(.button):hover {
  background: var(--color-soft);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: var(--color-surface);
  padding: 13px 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(181, 83, 42, 0.2);
  cursor: pointer;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 120ms ease;
}

.button:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 16px 28px rgba(148, 65, 31, 0.24);
}

.button:active {
  transform: scale(0.98);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: var(--color-accent-hover);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 36px);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.promise-pill {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(181, 83, 42, 0.2);
  border-radius: 999px;
  background: rgba(232, 221, 208, 0.72);
  color: var(--color-accent);
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-subhead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin-bottom: 20px;
}

.trust-strip {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 22px -12px -14px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  content: "";
}

.hero-media img,
.side-photo img,
.about-photo img {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  aspect-ratio: 4 / 5;
}

.section-heading {
  max-width: 720px;
}

.section-heading > p:not(.eyebrow) {
  font-size: 1.04rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.promise {
  background: var(--color-soft);
}

.intro-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.intro-copy p {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 1.05rem;
}

.channels {
  background:
    linear-gradient(180deg, rgba(232, 221, 208, 0.34), rgba(250, 247, 242, 0) 68%),
    var(--color-bg);
}

.channels .section-heading {
  max-width: 820px;
}

.channels .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

.channels .section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
}

.promise-grid,
.problem-grid,
.trust-grid,
.fit-grid {
  display: grid;
  gap: 18px;
}

.promise-grid {
  margin-top: 36px;
}

.promise-item {
  padding: 28px;
  border: 1px solid rgba(181, 83, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.promise-closing,
.serif-closing {
  max-width: 780px;
  margin: 36px auto 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  line-height: 1.18;
  text-align: center;
}

.problem-grid {
  margin-top: 36px;
}

.problem-card,
.trust-point,
.fit-column,
.comparison-card,
.application-form {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.045);
}

.problem-card {
  padding: 26px;
}

.icon-line {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--color-soft);
  color: var(--color-accent);
}

.icon-line svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.split-layout {
  display: grid;
  gap: 36px;
}

.timeline-wrap {
  display: grid;
  gap: 22px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
}

.timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 20px;
  width: 1px;
  background: var(--color-border);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.timeline-badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-surface);
  font-weight: 600;
}

.timeline-item > div {
  padding: 2px 0 14px;
}

.example-box {
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: 20px;
}

.example-box p {
  margin-bottom: 0;
  color: var(--color-text);
}

.side-photo img {
  aspect-ratio: 4 / 5;
}

.trust-grid {
  margin-top: 38px;
}

.compact-grid {
  max-width: 1040px;
  margin: 34px auto 0;
}

.compact-grid .trust-point {
  min-height: 100%;
  padding: 28px;
}

.compact-grid .trust-point-featured {
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
}

.trust-point {
  position: relative;
  padding: 26px 24px 24px;
}

.trust-point-featured {
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(90deg, rgba(232, 221, 208, 0.64), var(--color-surface));
}

.trust-point-featured h3 {
  font-size: 1.48rem;
}

.check-icon,
.x-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  margin-bottom: 14px;
  border-radius: 50%;
}

.check-icon {
  background: rgba(92, 122, 79, 0.13);
  color: var(--color-success);
}

.check-icon::before {
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.x-icon {
  position: relative;
  background: var(--color-border);
  color: var(--color-muted);
}

.x-icon::before,
.x-icon::after {
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.x-icon::before {
  transform: rotate(45deg);
}

.x-icon::after {
  transform: rotate(-45deg);
}

.comparison-card {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: var(--color-border);
}

.comparison-column {
  background: var(--color-surface);
  padding: 26px;
}

.comparison-column-highlight {
  background: var(--color-bg);
}

.math-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.math-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.math-list dt {
  color: var(--color-muted);
}

.math-list dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.math-list .math-total {
  border-bottom: 0;
  padding-top: 6px;
  padding-bottom: 0;
}

.math-total dt,
.math-total dd {
  color: var(--color-success);
  font-size: 1.12rem;
  font-weight: 600;
}

.fine-print {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  text-align: center;
}

.fit-grid {
  margin-top: 30px;
}

.simple-steps,
.fit-simple {
  display: grid;
  gap: 34px;
}

.fit-column {
  padding: 28px;
}

.clean-list {
  display: grid;
  gap: 15px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-muted);
}

.clean-list .check-icon,
.clean-list .x-icon {
  margin-top: 2px;
  margin-bottom: 0;
}

.muted-list li {
  color: var(--color-muted);
}

.about {
  background: var(--color-surface);
}

.about-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about-lede {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 4.4vw, 2rem);
  line-height: 1.25;
}

.founder {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.founder img {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.founder p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.founder-name {
  color: var(--color-text);
  font-weight: 600;
}

.about-photo img {
  aspect-ratio: 4 / 5;
  object-position: center 42%;
}

.about-photo figcaption {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-proof {
  display: grid;
  gap: 16px;
}

.proof-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.045);
}

.proof-panel {
  padding: 24px;
}

.proof-panel h3 {
  margin-bottom: 14px;
}

.proof-panel .eyebrow {
  margin-bottom: 8px;
}

.network-stats {
  display: grid;
  gap: 12px;
}

.network-stats article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  padding: 18px;
}

.network-stats strong,
.traffic-row strong {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 6vw, 2.5rem);
  line-height: 1;
}

.network-stats span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.traffic-panel {
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(90deg, rgba(232, 221, 208, 0.48), var(--color-surface));
}

.traffic-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.traffic-heading p {
  margin-bottom: 0;
}

.traffic-chart {
  display: grid;
  gap: 15px;
}

.traffic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
}

.traffic-row > span {
  color: var(--color-text);
  font-size: 0.93rem;
  font-weight: 600;
}

.traffic-row strong {
  justify-self: end;
  font-size: 1.2rem;
}

.traffic-bar {
  grid-column: 1 / -1;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-border);
}

.traffic-bar i {
  display: block;
  width: var(--bar-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), var(--color-success));
}

.trust-docs {
  background:
    linear-gradient(180deg, rgba(232, 221, 208, 0.38), rgba(250, 247, 242, 0) 72%),
    var(--color-bg);
}

.trust-doc-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.trust-doc-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 26px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.045);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.trust-doc-card:hover {
  border-color: rgba(181, 83, 42, 0.28);
  box-shadow: 0 18px 42px rgba(31, 27, 22, 0.08);
  transform: translateY(-2px);
}

.trust-doc-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
}

.trust-doc-card h3 {
  margin-bottom: 0;
}

.trust-doc-card p {
  margin-bottom: 4px;
}

.trust-doc-card strong {
  align-self: end;
  color: var(--color-accent);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  overflow: hidden;
}

summary {
  position: relative;
  min-height: 62px;
  padding: 18px 54px 18px 20px;
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.details-content {
  padding: 0 20px 20px;
}

.details-content p {
  margin-bottom: 0;
}

.details-content a {
  color: var(--color-accent);
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.application-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 600;
}

label span {
  color: var(--color-muted);
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  padding: 13px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px rgba(181, 83, 42, 0.12);
  outline: 0;
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-reassurance {
  margin: 4px 0 -2px;
  color: var(--color-muted);
  font-size: 0.92rem;
  text-align: center;
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.45;
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.form-button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
  text-align: center;
}

.form-status {
  min-height: 1.5em;
  color: var(--color-success);
  font-weight: 600;
}

/* PROMO GIVEAWAY START: remove this CSS block with the matching HTML section to disable it. */
.giveaway {
  padding-top: 0;
}

.giveaway-card {
  display: grid;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(181, 83, 42, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(232, 221, 208, 0.72), rgba(255, 255, 255, 0.96)),
    var(--color-surface);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(31, 27, 22, 0.07);
}

.giveaway-copy h2 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.giveaway-copy p:last-child {
  max-width: 920px;
  margin-bottom: 0;
}

.giveaway-note {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(92, 122, 79, 0.2);
  border-radius: var(--radius);
  background: rgba(92, 122, 79, 0.1);
  color: var(--color-text);
  padding: 12px 14px;
  font-weight: 600;
}

.giveaway-terms {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--color-text);
  font-weight: 600;
}

.giveaway-detail {
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: 16px;
}

.giveaway-image {
  width: 100%;
  aspect-ratio: 1200 / 960;
  object-fit: cover;
  object-position: center;
  background: var(--color-bg);
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 16px;
}

.giveaway-kicker,
.giveaway-detail span:last-child,
.giveaway-cash {
  display: block;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.giveaway-cash {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.giveaway-detail strong {
  display: block;
  margin: 8px 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4.5vw, 2.15rem);
  line-height: 1.05;
}
/* PROMO GIVEAWAY END */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-text);
  color: var(--color-surface);
  padding-top: 42px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--color-surface);
}

.footer-about p {
  max-width: 330px;
  margin-bottom: 0;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--color-surface);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a,
.footer-email,
.footer-address {
  font-weight: 600;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-email:hover,
.footer-address:hover {
  color: var(--color-surface);
}

.footer-address {
  max-width: 300px;
  line-height: 1.45;
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 18px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

main.legal-page,
main.contact-page {
  padding-top: calc(var(--header-height) + 40px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

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

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

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

@media (min-width: 640px) {
  :root {
    --section-space: 84px;
  }

  body {
    font-size: 17px;
  }

  .container,
  .narrow {
    width: min(100% - 56px, var(--container));
  }

  .narrow {
    width: min(100% - 56px, 920px);
  }

  .hero-actions {
    gap: 18px 24px;
  }

  .form-row,
  .comparison-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-button {
    width: auto;
    justify-self: center;
    min-width: 220px;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-space: 112px;
  }

  body {
    font-size: 18px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .hero {
    display: grid;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 70px;
  }

  .hero-subhead {
    font-size: 1.14rem;
  }

  .promise-grid,
  .problem-grid,
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-point-featured {
    grid-column: span 2;
  }

  .split-layout {
    grid-template-columns: 0.68fr 1fr 0.62fr;
    gap: 44px;
    align-items: start;
  }

  .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 32px);
  }

  .pitch .section-heading,
  .promise .section-heading,
  .channels .section-heading,
  .trust-docs .section-heading,
  .trust .section-heading,
  .numbers .section-heading,
  .fit .section-heading,
  .faq .section-heading,
  .apply .section-heading {
    position: static;
  }

  .compact-grid .trust-point-featured {
    grid-column: auto;
  }

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

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .about-grid,
  .form-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
    gap: 70px;
  }

  .about-proof {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .traffic-panel {
    grid-column: span 1;
  }

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

  .traffic-row {
    grid-template-columns: minmax(140px, 0.48fr) minmax(180px, 1fr) minmax(68px, auto);
    gap: 12px;
  }

  .traffic-bar {
    grid-column: auto;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: 64px;
  }

  .simple-steps,
  .fit-simple {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
    align-items: start;
  }

  .application-form {
    padding: 32px;
  }

  .giveaway-card {
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
    padding: 30px;
  }

  .giveaway-detail {
    grid-column: 2;
    grid-row: 1;
  }

  .giveaway-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .giveaway-copy h2,
  .giveaway-note,
  .giveaway-terms,
  .giveaway-detail strong {
    text-wrap: balance;
  }

  .giveaway-image {
    min-height: 420px;
  }


  .footer-grid {
    grid-template-columns: minmax(260px, 1.2fr) minmax(120px, 0.45fr) minmax(110px, 0.4fr) minmax(260px, 0.9fr);
    gap: 44px;
    align-items: start;
  }

  .footer-contact {
    justify-self: end;
    text-align: right;
  }

  .footer-address {
    max-width: 270px;
  }
}
