/* Subset to the glyphs used by the hero accent only ("#1 app"). */
@font-face {
  font-family: "Simple Handmade";
  src: url("/assets/fonts/simple-handmade-subset.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #fbfaf7;
  --color-surface: #ffffff;
  --color-surface-soft: #f4f2ee;
  --color-text: #151515;
  --color-muted: #6e6e73;
  --color-muted-light: #9b9ba1;
  --color-border: rgba(20, 20, 20, 0.08);
  --color-accent: #167255;
  --color-accent-soft: #e7f3ef;

  --max-width: 1180px;
  --seo-text-width: 840px;

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;

  --shadow-soft: 0 20px 70px rgba(0, 0, 0, 0.07);
  --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.055);

  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.9), transparent 42rem),
    var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: 180px;
  height: auto;
  max-height: 50px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--color-text);
}

.hero {
  padding-top: var(--space-2xl);
  text-align: center;
  overflow: hidden;
}

  .hero h1 {
    max-width: 980px;
    font-size: clamp(4rem, 10vw, 9.5rem);
    line-height: 0.95;
    letter-spacing: -0.070em;
  }

/* The handwritten face needs the SF-tuned tracking reset, and runs optically
   small next to the bold sans around it. */
.hero-accent {
  font-family: "Simple Handmade", var(--font-main);
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -0.005em;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.9rem;
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

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

h1 {
  max-width: 920px;
  margin-bottom: var(--space-md);
  font-size: clamp(4rem, 11vw, 12.5rem);
  line-height: 0.93;
  letter-spacing: -0.070em;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: var(--space-lg);
  color: var(--color-muted);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge {
  height: 54px;
  width: auto;
  display: block;
}

/* Replaces the two store badges on phones; main.js points it at the store that
   matches the device, and falls back to /download/ when it can't tell. */
.store-cta {
  display: none;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  border-radius: 999px;
  background: var(--color-text);
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.store-cta:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.phone-showcase {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: calc(var(--space-xl) + 1rem);
  padding-bottom: 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

/* The screenshot is wrapped in <picture> to swap in the mobile crop, so the
   wrapper has to carry the grid item's width. */
.phone-showcase picture {
  display: block;
  width: 100%;
}

.hero-app-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.hero-friend-avatar {
  position: absolute;
  width: clamp(70px, 7.7vw, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.18);
  z-index: 1;
  animation: avatar-float 4.8s ease-in-out infinite;
}

.hero-friend-avatar-1 {
  left: 12%;
  top: 20%;
  animation-delay: -0.4s;
}

.hero-friend-avatar-2 {
  right: 14%;
  top: 18%;
  animation-delay: -1.6s;
}

.hero-friend-avatar-3 {
  left: 20%;
  top: 54%;
  animation-delay: -2.4s;
}

.hero-friend-avatar-4 {
  right: 19%;
  top: 55%;
  animation-delay: -3.2s;
}

@keyframes avatar-float {
  0%,
  100% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(8px);
  }
}

.trust {
  text-align: center;
}

.trust-line {
  margin-bottom: var(--space-md);
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.8rem);
  color: rgba(20, 20, 20, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  filter: grayscale(1);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-heading h2,
.cta-card h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.070em;
}

.section-heading p,
.cta-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.step-card,
.review-card,
.cta-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.step-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  background:
    radial-gradient(circle at 50% 38%, rgba(22, 114, 85, 0.14), transparent 38%),
    linear-gradient(145deg, #f7f5f0, #eae7df);
}

.image-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px dashed rgba(20, 20, 20, 0.18);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-image-preview {
  padding: 0;
  overflow: hidden;
}

.step-image-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: var(--space-lg);
}

.step-number {
  display: inline-block;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.step-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.feature-section {
  padding-top: var(--space-2xl);
}

.press-section {
  background: var(--color-bg);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.press-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 20, 20, 0.14);
  box-shadow: var(--shadow-soft);
}

.press-logo {
  min-height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.press-logo-condensed {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.press-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.press-card span {
  display: inline-flex;
  margin-top: var(--space-lg);
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.press-more {
  max-width: 760px;
  margin: var(--space-xl) auto 0;
  color: var(--color-muted-light);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card {
    min-height: auto;
  }
}

.video-placeholder {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-soft);
}

.video-thumbnail,
.video-placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.seo-video-full {
  width: 100%;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.play-button {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.play-button:hover {
  transform: scale(1.04);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.22);
}

.play-button::before,
.play-button span {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--color-text);
}

.play-button span {
  display: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.review-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.stars {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-card p {
  flex: 1;
  font-size: 1.02rem;
}

.review-card span {
  display: block;
  margin-top: var(--space-md);
  color: var(--color-muted-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.final-cta {
  padding-top: var(--space-xl);
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(22, 114, 85, 0.12), transparent 30rem),
    rgba(255, 255, 255, 0.76);
}

.cta-card p {
  max-width: 620px;
  margin-bottom: var(--space-lg);
}

.seo-final-cta .container {
  max-width: var(--seo-text-width);
}

.seo-cta-card {
  width: 100%;
  max-width: var(--seo-text-width);
  margin-inline: auto;
}

.site-footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-md);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--color-text);
}

.video-modal {
  position: fixed;
  inset: 0;
  width: min(100% - 2rem, 980px);
  max-width: 980px;
  height: fit-content;
  max-height: calc(100vh - 4rem);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.video-modal-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 10;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease;
}

.video-modal-close:hover {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 3rem, var(--max-width));
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: var(--space-xl);
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.7rem);
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .download-buttons {
    width: 50%;
  }

  .store-badge-link {
    display: none;
  }

  .store-cta {
    display: inline-flex;
    width: min(100%, 320px);
    /* The 50% container squeezes the label onto two lines on narrow phones. */
    min-width: max-content;
  }

  /* Full width here: this block keeps both badges, and 50% squeezes them. */
  .download-buttons-both {
    width: 100%;
  }

  .download-buttons-both .store-badge-link {
    display: inline-flex;
  }

  .store-button {
    width: min(100%, 280px);
  }

  .phone-showcase {
    margin-top: var(--space-xl);
  }

  .hero-friend-avatar {
    width: clamp(53px, 13.2vw, 79px);
  }

  .hero-friend-avatar-1 {
    left: 7%;
    top: 20%;
  }

  .hero-friend-avatar-2 {
    right: 8%;
    top: 20%;
  }

  .hero-friend-avatar-3 {
    left: 12%;
    top: 57%;
  }

  .hero-friend-avatar-4 {
    right: 12%;
    top: 57%;
  }

  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: var(--space-lg);
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .video-modal {
    width: min(100% - 1rem, 100%);
  }

  .video-modal-inner {
    border-radius: 18px;
  }

  .video-modal-close {
    top: -14px;
    right: -4px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .image-placeholder {
    min-height: 220px;
  }

  .video-placeholder {
    min-height: 360px;
    border-radius: var(--radius-lg);
  }

  .play-button {
    width: 78px;
    height: 78px;
  }

  .play-button::before,
  .play-button span {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .section-sm {
    padding: var(--space-lg) 0;
  }

  .card-content,
  .review-card {
    padding: var(--space-md);
  }

  .cta-card {
    padding: var(--space-xl) var(--space-md);
  }

  .logo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Legal pages */

.legal-hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.legal-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: var(--space-md);
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.070em;
}

.legal-updated {
  margin-top: var(--space-md);
  margin-bottom: 0;
  color: var(--color-muted-light);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-section {
  padding: 0 0 var(--space-3xl);
}

.legal-layout {
  display: flex;
  justify-content: center;
}

.legal-content {
  width: min(100%, 860px);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.legal-block {
  scroll-margin-top: 120px;
}

.legal-block + .legal-block {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.legal-block h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.legal-block h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.legal-block p,
.legal-block li {
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.72;
  letter-spacing: -0.025em;
}

.legal-block p {
  margin-bottom: var(--space-md);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.legal-info-card {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
}

.legal-info-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.legal-contact-card {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(22, 114, 85, 0.12), transparent 16rem),
    var(--color-surface-soft);
}

.legal-contact-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.legal-contact-card a {
  color: var(--color-accent);
  font-weight: 700;
}

.legal-contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

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

  .legal-content {
    max-width: 820px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .legal-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .legal-content {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .legal-card-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

/* Features page */

.features-hero {
  padding-top: var(--space-2xl);
  text-align: center;
}

.features-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-hero h1 {
  max-width: 1080px;
  margin-bottom: var(--space-md);
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.feature-showcase-section {
  padding-top: var(--space-xl);
}

.feature-showcase {
  display: grid;
  gap: var(--space-md);
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: 620px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 25%, rgba(22, 114, 85, 0.13), transparent 24rem),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-copy h2,
.split-feature-copy h2,
.passport-copy h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.070em;
}

.feature-copy p,
.split-feature-copy p,
.passport-copy p {
  max-width: 620px;
  margin-bottom: var(--space-md);
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.58;
  letter-spacing: -0.035em;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-visual {
  display: grid;
  place-items: center;
}

.feature-phone {
  width: min(78vw, 310px);
  aspect-ratio: 9 / 18.5;
  padding: 0.8rem;
  border-radius: 46px;
  background: linear-gradient(145deg, #202020, #070707);
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(4deg);
}

.feature-phone-screen {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.34), transparent 9rem),
    linear-gradient(160deg, rgba(22, 114, 85, 0.94), rgba(22, 114, 85, 0.68));
}

.peek-card-stack {
  display: flex;
  gap: 0.7rem;
}

.peek-card-stack span {
  width: 82px;
  height: 118px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.16);
}

.peek-card-stack span:nth-child(2) {
  transform: translateY(16px) rotate(5deg);
}

.feature-phone-screen p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card,
.poker-style-card,
.stat-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.feature-card {
  min-height: 300px;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-lg);
  border-radius: 18px;
  background: var(--color-surface-soft);
  font-size: 1.55rem;
}

.feature-card h3,
.poker-style-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

.feature-card p,
.poker-style-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.58;
  letter-spacing: -0.025em;
}

.poker-style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.poker-style-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.poker-style-card span {
  margin-bottom: auto;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.poker-style-card h3 {
  margin-top: var(--space-xl);
}

.poker-style-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(22, 114, 85, 0.16), transparent 14rem),
    rgba(255, 255, 255, 0.86);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.split-feature + .split-feature {
  margin-top: var(--space-xl);
}

.split-feature-reverse {
  grid-template-columns: 0.9fr 1fr;
}

.split-feature-reverse .split-feature-copy {
  order: 2;
}

.settings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: var(--space-lg);
}

.settings-list span {
  display: inline-flex;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.settings-card-visual {
  display: grid;
  gap: 0.85rem;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(22, 114, 85, 0.12), transparent 18rem),
    var(--color-surface-soft);
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.settings-row span {
  color: var(--color-muted);
  font-weight: 700;
}

.settings-row strong {
  letter-spacing: -0.035em;
}

.style-visual {
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.style-swatch {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.swatch-table {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 40%),
    #167255;
}

.swatch-deck {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 242, 238, 0.94));
}

.swatch-chip {
  background:
    radial-gradient(circle at center, white 0 22%, transparent 24%),
    #151515;
}

.swatch-card {
  background:
    linear-gradient(135deg, #e24a3b 0 50%, #151515 50% 100%);
}

.passport-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(22, 114, 85, 0.15), transparent 24rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.poker-styles-section,
.customization-section,
.passport-section {
  padding-top: var(--space-xl);
  padding-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
}

.stat-card span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.stat-card strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.stat-card strong.stat-card-style {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.poker-stats-grid {
  align-self: start;
  width: 100%;
}

.poker-stat-card {
  min-height: 168px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.poker-stat-card em {
  margin-top: var(--space-xs);
  color: var(--color-muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .feature-panel,
  .split-feature,
  .split-feature-reverse,
  .passport-card {
    grid-template-columns: 1fr;
  }

  .split-feature-reverse .split-feature-copy {
    order: 0;
  }

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

  .feature-panel {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .features-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }

  .feature-panel,
  .split-feature,
  .passport-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .feature-grid,
  .poker-style-grid,
  .stats-grid,
  .style-visual {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .poker-style-card {
    min-height: auto;
  }

  .style-visual {
    min-height: auto;
  }

  .style-swatch {
    min-height: 150px;
  }
}

/* About page */

.about-hero {
  padding-top: var(--space-2xl);
  text-align: center;
}

.about-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero h1 {
  max-width: 1040px;
  margin-bottom: var(--space-md);
  font-size: clamp(4rem, 8.6vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: -0.070em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  width: min(100%, 760px);
  margin-top: var(--space-xl);
}

.about-stats div {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
}

.about-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.about-stats span {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.about-story-section,
.about-mission-section,
.about-team-section {
  padding-top: var(--space-xl);
  padding-bottom: 0;
}

.about-story-card,
.about-mission-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.about-story-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}

.about-story-copy h2,
.about-mission-copy h2 {
  max-width: 780px;
  margin-bottom: var(--space-md);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.070em;
}

.about-story-copy p,
.about-mission-copy p {
  max-width: 680px;
  margin-bottom: var(--space-md);
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.62;
  letter-spacing: -0.035em;
}

.about-story-copy p:last-child,
.about-mission-copy p:last-child {
  margin-bottom: 0;
}

.about-story-visual {
  display: grid;
  place-items: center;
}

.story-table {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(22, 114, 85, 0.92), rgba(22, 114, 85, 0.68));
  box-shadow: 0 36px 80px rgba(22, 114, 85, 0.18);
}

.story-cards {
  display: flex;
  gap: 0.8rem;
}

.story-cards span {
  width: 88px;
  height: 124px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16);
}

.story-cards span:nth-child(2) {
  transform: translateY(14px) rotate(5deg);
}

.story-matches {
  display: flex;
  gap: 0.55rem;
}

.story-matches span {
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(-12deg);
}

.story-matches span:nth-child(2) {
  transform: rotate(8deg);
}

.story-matches span:nth-child(3) {
  transform: rotate(-4deg);
}

.story-table p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.about-mission-card {
  padding: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(circle at top right, rgba(22, 114, 85, 0.14), transparent 26rem),
    rgba(255, 255, 255, 0.82);
}

.about-mission-copy {
  max-width: 860px;
}

.about-mission-copy p {
  max-width: 760px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.team-photo-wrap {
  height: 360px;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-card-content {
  padding: var(--space-lg);
}

.team-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

.team-card p {
  margin-bottom: var(--space-md);
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.team-social-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.team-social-link:hover {
  text-decoration: underline;
}

.team-card-content {
  padding: var(--space-lg);
}

.team-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

.team-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

@media (max-width: 980px) {
  .about-story-card {
    grid-template-columns: 1fr;
  }

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

  .team-photo-wrap {
  height: 300px;
}
}

@media (max-width: 720px) {
  .about-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.4rem);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-story-card,
  .about-mission-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .story-table {
    border-radius: var(--radius-lg);
  }

  .team-card-content {
    padding: var(--space-md);
  }
}

/* Support page */

.support-hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.support-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-hero h1 {
  max-width: 980px;
  margin-bottom: var(--space-md);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.070em;
}

.support-section {
  padding: 0 0 var(--space-3xl);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-xl);
  align-items: start;
}

.support-form-card,
.support-aside-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.support-form-card {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
}

.support-form-intro {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}

.support-form-intro h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.070em;
}

.support-form-intro p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: -0.035em;
}

.form-section {
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.form-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.form-section h3 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.checkbox-field {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.form-field label span,
.checkbox-field strong {
  color: var(--color-accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface-soft);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 1rem;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L8 8.5L15 1.5' stroke='%23151515' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.35rem center;
  background-size: 14px auto;
}

.form-field textarea {
  min-height: 190px;
  resize: vertical;
  padding: 1rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-muted-light);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(22, 114, 85, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 114, 85, 0.1);
}

.form-field input[type="file"] {
  min-height: auto;
  padding: 1rem;
  cursor: pointer;
}

.form-help {
  margin: 0;
  color: var(--color-muted-light);
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

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

.checkbox-field span {
  color: var(--color-muted);
  line-height: 1.55;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.support-submit-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-text);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.support-submit-button:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.form-actions p {
  margin: 0;
  color: var(--color-muted-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

.support-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: var(--space-md);
}

.support-aside-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.support-aside-card h2 {
  margin-bottom: var(--space-sm);
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.support-aside-card p {
  margin-bottom: var(--space-md);
  color: var(--color-muted);
  line-height: 1.6;
  letter-spacing: -0.025em;
}

.support-email-link {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.support-email-link:hover {
  text-decoration: underline;
}

.support-link-list {
  display: grid;
  gap: 0.25rem;
}

.support-link-list a {
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 160ms ease;
}

.support-link-list a:first-child {
  border-top: 0;
}

.support-link-list a:hover {
  color: var(--color-text);
}

@media (max-width: 980px) {
  .support-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .support-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.4rem);
  }

  .support-form-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .form-grid,
  .support-aside {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-submit-button {
    width: 100%;
  }
}

/* SEO pages */

.seo-hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.seo-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seo-hero h1 {
  max-width: 1060px;
  margin-bottom: var(--space-md);
  font-size: clamp(3.8rem, 8.4vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.seo-visual-section {
  padding-bottom: var(--space-xl);
}

.seo-visual-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: 560px;
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 22%, rgba(22, 114, 85, 0.14), transparent 24rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.seo-visual-copy h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.seo-visual-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
  letter-spacing: -0.035em;
}

.seo-phone-stack {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.seo-phone {
  width: min(78vw, 270px);
  aspect-ratio: 9 / 18.5;
  padding: 0.75rem;
  border-radius: 42px;
  background: linear-gradient(145deg, #202020, #080808);
  box-shadow:
    0 44px 90px rgba(0, 0, 0, 0.17),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.seo-phone-back {
  position: absolute;
  opacity: 0.16;
  transform: translate(80px, -24px) rotate(8deg);
}

.seo-phone-front {
  position: relative;
  transform: rotate(-5deg);
}

.seo-phone-screen {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 9rem),
    linear-gradient(160deg, rgba(22, 114, 85, 0.94), rgba(22, 114, 85, 0.68));
}

.seo-phone-table {
  width: 82%;
  aspect-ratio: 1.25 / 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
}

.seo-cards {
  display: flex;
  gap: 0.45rem;
}

.seo-cards span {
  width: 34px;
  height: 48px;
  border-radius: 7px;
  background: white;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.seo-phone-screen p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
  letter-spacing: -0.025em;
}

.seo-article-section {
  padding: var(--space-xl) 0 0;
}

.seo-copy-section {
  padding: var(--space-xl) 0 0;
}

.seo-copy-layout {
  display: block;
  max-width: var(--seo-text-width);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: var(--space-xl);
  align-items: start;
}

.seo-sidebar-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.seo-content {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.seo-block {
  scroll-margin-top: 120px;
}

.seo-block + .seo-block {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
}

.seo-block h2 {
  max-width: 780px;
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.seo-block h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.seo-block p,
.seo-block li,
.seo-media-split p,
.seo-media-split li {
  color: var(--color-muted);
  font-size: clamp(1.18rem, 1.55vw, 1.38rem);
  line-height: 1.68;
  letter-spacing: -0.025em;
}

.seo-block p,
.seo-media-split p {
  max-width: var(--seo-text-width);
  margin-bottom: var(--space-md);
}

.seo-block a,
.seo-media-split a {
  color: var(--color-accent);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.seo-block p:last-child {
  margin-top: 16px;
  margin-bottom: 16px;
}

.seo-faq-section {
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  margin-inline: auto;
}

.seo-faq-section h2 {
  max-width: none;
  margin-bottom: var(--space-lg);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.seo-faq-list {
  display: grid;
  gap: 0;
}

.seo-faq-item {
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.seo-faq-item:last-child {
  border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.seo-faq-item summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-sm) 0;
  color: var(--color-text);
  font-size: clamp(1.18rem, 1.65vw, 1.45rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
  cursor: pointer;
  list-style: none;
}

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

.seo-faq-item summary::after {
  content: "+";
  color: var(--color-muted);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.seo-faq-item[open] summary::after {
  content: "\00d7";
  color: var(--color-text);
}

.seo-faq-item summary:hover::after {
  color: var(--color-accent);
}

.seo-faq-item p {
  max-width: 820px;
  margin: 0 0 var(--space-lg);
  color: var(--color-muted);
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  line-height: 1.62;
}

.seo-faq-section .seo-faq-item p,
.seo-faq-section .seo-faq-item p:last-child {
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.seo-image-card {
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  margin: var(--space-xl) auto;
}

.seo-video-preview {
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: var(--space-lg) auto var(--space-2xl);
}

.seo-placeholder-image {
  width: 100%;
  max-width: var(--seo-text-width);
  aspect-ratio: 536 / 354;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.seo-natural-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.seo-natural-image.no-shadow {
  box-shadow: none;
}

.seo-image-card.no-shadow .seo-natural-image {
  box-shadow: none;
}

.seo-media-split {
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
  margin: var(--space-xl) auto;
}

.seo-media-split .seo-block {
  width: 100%;
  max-width: none;
  margin: 0;
}

.seo-media-split .seo-image-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

.seo-media-split h2 {
  max-width: 780px;
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.seo-media-split h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.seo-media-split ul,
.seo-media-split ol {
  padding-left: 1.2em;
}

.seo-media-split p:last-child,
.seo-media-split li:last-child {
  margin-bottom: 0;
}

.poker-hands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.poker-hand-card {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.poker-hand-card span {
  display: inline-flex;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mock-hand {
  display: flex;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.mock-card {
  width: 42px;
  aspect-ratio: 2.5 / 3.5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  background: #fff;
  color: #2f3a40;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.mock-card.red {
  color: #d94336;
}

.mock-card.muted {
  background: var(--color-accent-soft);
  color: rgba(22, 114, 85, 0.34);
  box-shadow: none;
}

.poker-hand-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.poker-hand-card p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.55;
}

.poker-hand-card p:last-child {
  margin-bottom: 0;
}

/* Blog index */

.blog-index-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.blog-card-link {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.blog-card-media {
  aspect-ratio: 4 / 3;
  margin: 0;
  background: var(--color-surface-soft);
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.035);
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
}

.blog-card-meta {
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-muted-light);
  font-size: 0.84rem;
  font-weight: 750;
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.58rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 850;
}

.blog-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.blog-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.blog-card-skeleton {
  min-height: 360px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.3) 8%, rgba(22, 114, 85, 0.08) 18%, rgba(255, 255, 255, 0.3) 33%),
    rgba(255, 255, 255, 0.72);
  background-size: 200% 100%;
  animation: blogSkeleton 1.4s linear infinite;
}

.blog-empty {
  grid-column: 1 / -1;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.blog-empty h2 {
  margin-bottom: var(--space-sm);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.blog-empty p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.15rem;
}

.blog-about-section .seo-copy-layout {
  max-width: var(--max-width);
}

.blog-about-section {
  padding-bottom: var(--space-3xl);
}

.blog-about-content {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  margin-top: var(--space-sm);
  color: var(--color-muted-light);
  font-size: 0.92rem;
  font-weight: 750;
}

.blog-post-meta span,
.blog-post-meta time {
  display: inline-flex;
  align-items: center;
}

.blog-post-meta span::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 0.75rem;
  border-radius: 999px;
  background: currentColor;
}

.blog-article .seo-block + .seo-block {
  margin-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-top: 0;
}

.blog-article .seo-block p {
  margin-bottom: 1.15rem;
}

.blog-article .seo-block p:last-child {
  margin-bottom: 25px;
}

.blog-article .seo-block h2 {
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.blog-article > .seo-image-card,
.blog-article .seo-media-split {
  margin-top: clamp(2.75rem, 5vw, 4.25rem);
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.poker-positions-article .seo-block > .seo-image-card {
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.poker-positions-article .seo-image-card + p {
  margin-top: 0;
}

@keyframes blogSkeleton {
  to {
    background-position-x: -200%;
  }
}

.seo-list {
  display: grid;
  gap: 0.8rem;
  margin: var(--space-md) 0 0;
  padding-left: 1.2rem;
}

/* a paragraph directly after a list sat flush against the last bullet;
   mirror the list's own top margin so the spacing is symmetric */
.seo-list + p {
  margin-top: var(--space-md);
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.seo-step {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
}

.seo-step span {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.seo-step p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0 var(--space-lg);
}

.seo-feature-card {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-card);
}

.seo-feature-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-sm);
  border-radius: 999px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.seo-feature-card h3 {
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.seo-feature-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
}

.seo-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0 var(--space-lg);
}

.seo-comparison-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.seo-comparison-card.is-accent {
  background:
    radial-gradient(circle at top right, rgba(22, 114, 85, 0.12), transparent 18rem),
    var(--color-surface);
  border-color: rgba(22, 114, 85, 0.2);
}

.seo-comparison-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.seo-comparison-price {
  margin-bottom: var(--space-md) !important;
  color: var(--color-accent) !important;
  font-size: 0.9rem !important;
  font-weight: 900;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

.seo-comparison-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
}

.seo-comparison-card li {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.seo-comparison-table {
  overflow: hidden;
  margin: var(--space-lg) 0 var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.seo-comparison-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: center;
  padding: 1.15rem var(--space-md);
  border-top: 1px solid var(--color-border);
}

.seo-comparison-row:first-child {
  border-top: 0;
}

.seo-comparison-row > span {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.seo-comparison-row p {
  max-width: none;
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.seo-comparison-row p:last-child {
  margin: 0;
  color: var(--color-text);
  font-weight: 750;
}

.seo-comparison-header {
  background:
    radial-gradient(circle at 82% 0, rgba(22, 114, 85, 0.16), transparent 16rem),
    var(--color-surface-soft);
}

.seo-comparison-header span,
.seo-comparison-header strong {
  color: var(--color-text);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.seo-comparison-header strong:last-child {
  color: var(--color-accent);
}

.seo-centered-block {
  text-align: center;
}

.seo-split-section {
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: var(--space-lg);
  align-items: center;
  margin: var(--space-xl) auto;
}

.seo-split-section .seo-block {
  width: 100%;
  max-width: none;
  margin: 0;
}

.seo-split-image {
  width: 100%;
  margin: 0;
}

.private-table-steps {
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
  margin: var(--space-xl) auto;
}

.private-table-steps-image {
  margin: 0;
}

.private-table-steps-image img {
  width: 100%;
  max-height: 680px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.private-table-steps-list {
  display: grid;
  gap: var(--space-xl);
}

.private-table-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: var(--space-sm);
  align-items: start;
}

.private-table-step-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-text);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.private-table-step h3 {
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.private-table-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.52;
  letter-spacing: -0.025em;
}

.seo-download-buttons {
  justify-content: flex-start;
  margin-top: var(--space-lg);
}

.seo-inline-download-buttons {
  justify-content: center;
  width: min(100%, var(--seo-text-width));
  max-width: var(--seo-text-width);
  margin: var(--space-lg) auto var(--space-xl);
}

/* store badges sitting under an app screenshot inside a media-split figure:
   keep the top gap, drop the trailing margin so the column stays vertically centred */
.seo-image-card .seo-inline-download-buttons {
  margin-bottom: 0;
}

.seo-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: var(--space-md);
}

.seo-sidebar-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.seo-sidebar-card h2 {
  margin-bottom: var(--space-sm);
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.seo-sidebar-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.seo-link-list {
  display: grid;
  gap: 0.25rem;
  margin-top: var(--space-md);
}

.seo-link-list a {
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-weight: 750;
  letter-spacing: -0.025em;
  transition: color 160ms ease;
}

.seo-link-list a:first-child {
  border-top: 0;
}

.seo-link-list a:hover {
  color: var(--color-text);
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-visual-card,
  .seo-layout {
    grid-template-columns: 1fr;
  }

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

  .seo-steps {
    grid-template-columns: 1fr;
  }

  .poker-hands-grid {
    grid-template-columns: 1fr;
  }

  .seo-feature-grid {
    grid-template-columns: 1fr;
  }

  .seo-comparison-grid {
    grid-template-columns: 1fr;
  }

  .seo-comparison-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    align-items: start;
    padding: var(--space-md);
  }

  .seo-comparison-header {
    grid-template-columns: 1fr 1fr;
  }

  .seo-comparison-header span {
    grid-column: 1 / -1;
  }

  .seo-split-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .seo-visual-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .seo-placeholder-image {
    border-radius: var(--radius-md);
  }

  .seo-image-card {
    width: calc(100% - 3rem);
  }

  .seo-phone-stack {
    min-height: 360px;
  }

  .seo-sidebar {
    grid-template-columns: 1fr;
  }

  .seo-download-buttons {
    justify-content: center;
  }

  .private-table-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .seo-media-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .private-table-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: var(--space-sm);
  }

  .private-table-step-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .mock-hand {
    gap: 0.28rem;
  }

  .mock-card {
    width: 36px;
    border-radius: 7px;
    font-size: 0.78rem;
  }
}

/* Support form: honeypot field, kept out of sight without display:none so
   bots that skip hidden inputs still fill it in. */
.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  margin: 0;
  color: var(--color-muted-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status[data-state="pending"] {
  color: var(--color-muted);
}

.form-status[data-state="success"] {
  color: var(--color-accent);
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #b3261e;
  font-weight: 600;
}

.support-submit-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

/* 404 page. Reuses the support hero and card styles; only the home button and
   the two-up card layout are specific to it. */
.error-home-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-md);
  padding: 0 1.6rem;
  border-radius: 999px;
  background: var(--color-text);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.error-home-button:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.error-section {
  padding: 0 0 var(--space-3xl);
}

.error-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: 820px;
}

@media (max-width: 720px) {
  .error-layout {
    grid-template-columns: 1fr;
  }
}
