/* =========================================================================
   SMS Marketing Team — design system
   Dark + mint-green. Space Grotesk (display) + Inter (body).
   ========================================================================= */

/* ---- Fonts (self-hosted) ---------------------------------------------- */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}

/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* surfaces — layered near-black with a green undertone */
  --bg: #06100c;
  --bg-2: #081711;
  --surface: #0c1c15;
  --surface-2: #102a1f;
  --surface-3: #0a1812;
  --field: #081410;

  /* ink */
  --text: #f1fff8;
  --muted: #a4c2b4;
  --faint: #7c998c;

  /* lines */
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --hairline: rgba(255, 255, 255, 0.06);

  /* brand */
  --primary: #28e58c;
  --primary-deep: #16c977;
  --primary-soft: rgba(40, 229, 140, 0.14);
  --primary-ink: #04140c;
  --accent: #ff8a72;
  --warm: #ffd166;
  --blue: #6fd8ff;

  /* effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 40px 120px rgba(0, 0, 0, 0.55);
  --glow: 0 18px 50px rgba(28, 200, 120, 0.28);

  /* geometry */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --pill: 999px;

  /* type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter var", Inter, ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Arial, sans-serif;

  /* layout */
  --maxw: 1200px;
  --maxw-narrow: 1000px;
  --gutter: clamp(20px, 5vw, 64px);

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 78% -8%, rgba(40, 229, 140, 0.16), transparent 70%),
    radial-gradient(760px 520px at -6% 8%, rgba(40, 229, 140, 0.07), transparent 68%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
  background-attachment: fixed, fixed, fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p a,
.cf-display-email a,
.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

p a:hover {
  color: var(--text);
}

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

strong {
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Typography -------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

/* ---- Layout ------------------------------------------------------------ */
.container {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.narrow {
  width: min(var(--maxw-narrow), calc(100% - 2 * var(--gutter)));
}

main {
  display: block;
}

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(6, 16, 12, 0.72);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-word b {
  color: var(--primary);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14.5px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: var(--pill);
  color: var(--muted);
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  background: var(--primary);
  color: var(--primary-ink) !important;
  font-weight: 600;
  box-shadow: var(--glow);
}

.nav-cta:hover {
  background: var(--primary-deep) !important;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--border-strong);
  border-radius: var(--pill);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ---- Buttons ----------------------------------------------------------- */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 26px;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}

.button.primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: var(--glow);
}

.button.primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(28, 200, 120, 0.38);
}

.button.ghost {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button.ghost:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.button.primary::after {
  content: "→";
  font-size: 17px;
  transition: transform 0.18s ease;
}

.button.primary:hover::after {
  transform: translateX(3px);
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  place-items: stretch;
  min-height: min(780px, calc(100vh - 70px));
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(94deg, var(--bg) 6%, rgba(6, 16, 12, 0.9) 34%,
      rgba(6, 16, 12, 0.45) 62%, rgba(6, 16, 12, 0.12) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  min-height: inherit;
  margin-inline: auto;
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 7vw, 88px);
}

.hero-copy {
  width: min(660px, 100%);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 7.4vw, 92px);
  line-height: 0.98;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p {
  max-width: 600px;
  margin: 0;
  color: #d3e6dc;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 640px;
}

.hero-proof span {
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: rgba(8, 20, 14, 0.6);
  color: #cfe3da;
  font-size: 13.5px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-proof strong {
  color: var(--primary);
  font-weight: 700;
}

/* ---- Inner page hero --------------------------------------------------- */
.page-hero {
  position: relative;
  padding: clamp(64px, 9vw, 104px) 0 clamp(34px, 5vw, 52px);
  border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.02;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
}

/* ---- Sections ---------------------------------------------------------- */
.section {
  padding: clamp(52px, 7vw, 84px) 0;
}

.section > .container > h2,
.section > .narrow > h2 {
  max-width: 760px;
  margin: 0 0 36px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
}

.section h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ---- Bento ------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

a.tile {
  position: relative;
}

a.tile::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--faint);
  font-size: 18px;
  transition: color 0.28s ease, transform 0.28s ease;
}

a.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(40, 229, 140, 0.5);
  box-shadow: var(--shadow);
}

a.tile:hover::after {
  color: var(--primary);
  transform: translate(2px, -2px);
}

.tile span {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tile strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }

.tile.accent {
  background: linear-gradient(160deg, rgba(40, 229, 140, 0.22), rgba(40, 229, 140, 0.04));
  border-color: rgba(40, 229, 140, 0.3);
}
.tile.warm {
  background: linear-gradient(160deg, rgba(255, 209, 102, 0.16), rgba(255, 209, 102, 0.03));
  border-color: rgba(255, 209, 102, 0.22);
}
.tile.ink {
  background: linear-gradient(160deg, rgba(111, 216, 255, 0.15), rgba(111, 216, 255, 0.03));
  border-color: rgba(111, 216, 255, 0.2);
}

/* ---- Stats ------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats div {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.45;
}

/* ---- Cards ------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 229, 140, 0.42);
  box-shadow: var(--shadow);
}

.card .eyebrow {
  margin-bottom: 14px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card.person {
  text-align: left;
}

.card.person img {
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-2);
  object-fit: cover;
}

/* ---- Steps timeline ---------------------------------------------------- */
.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 22px 24px 22px 74px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.steps li strong {
  color: var(--text);
}

.steps.compact li {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* ---- Tables ------------------------------------------------------------ */
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: rgba(255, 255, 255, 0.025);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

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

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 0.15s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

.check-grid div {
  padding: 22px 22px 22px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
}

.check-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.check-grid span {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---- Prose / body copy in sections ------------------------------------ */
.section p {
  color: var(--muted);
}

.section .narrow > p,
.section .container > p {
  max-width: 740px;
  font-size: 16.5px;
}

/* ---- FAQ --------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease;
}

details[open] {
  border-color: rgba(40, 229, 140, 0.32);
  background: var(--surface-2);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  list-style: none;
}

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

summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease;
}

details[open] summary::after {
  content: "−";
  background: var(--primary-soft);
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 22px 21px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ---- Contact form ------------------------------------------------------ */
.contact-form {
  display: grid;
  gap: 18px;
  max-width: 640px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
}

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

.cf-field label {
  font-weight: 600;
  font-size: 14.5px;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--field);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.cf-field input[aria-invalid="true"],
.cf-field textarea[aria-invalid="true"] {
  border-color: var(--accent);
}

.cf-error {
  color: #ffb1a0;
  font-size: 13.5px;
}

.cf-status {
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(40, 229, 140, 0.32);
  border-radius: var(--r-sm);
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.contact-form .button {
  justify-self: start;
}

.cf-display-email {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
  padding: clamp(52px, 6vw, 72px) var(--gutter) 40px;
  border-top: 1px solid var(--hairline);
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 36px;
  width: min(var(--maxw), 100%);
  margin-inline: auto;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--text) !important;
}

.site-footer h2 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--faint);
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 15px;
  transition: color 0.15s ease;
}

.site-footer a:hover {
  color: var(--primary);
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
}

.fine {
  color: var(--faint);
  font-size: 13px;
}

/* ---- Reveal animation -------------------------------------------------- */
.js .reveal,
.js .section,
.js .page-hero {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 960px) {
  .span-3, .span-4, .span-5 { grid-column: span 6; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards.three, .check-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--r-md);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 4px;
    text-align: center;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-shade {
    background:
      linear-gradient(96deg, var(--bg) 12%, rgba(6, 16, 12, 0.82) 56%, rgba(6, 16, 12, 0.5) 100%),
      linear-gradient(0deg, var(--bg) 4%, transparent 46%);
  }
}

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

  .hero { min-height: 640px; }
  .hero-media img { object-position: 72% 40%; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }

  .span-3, .span-4, .span-5 { grid-column: span 12; }
  .stats, .cards.three, .check-grid, .footer-grid { grid-template-columns: 1fr; }

  .tile { min-height: 150px; }

  /* stacked table rows as cards on small screens */
  thead { display: none; }
  table, tbody, tr, td { display: block; width: 100%; }
  table { background: transparent; border: 0; }
  tr {
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface);
    overflow: hidden;
  }
  td {
    border-bottom: 1px solid var(--hairline);
  }
  tr td:last-child { border-bottom: 0; }
  tbody td:first-child {
    background: rgba(255, 255, 255, 0.025);
    font-family: var(--font-display);
    font-size: 17px;
  }

  .button { width: 100%; }
  .contact-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal, .js .section, .js .page-hero {
    opacity: 1;
    transform: none;
  }
}
