:root {
  --bg: #050407;
  --surface: #17191d;
  --surface-soft: #241632;
  --text: #f7f2ec;
  --muted: #c7b8c9;
  --accent: #d1a46a;
  --accent-dark: #a87235;
  --line: rgba(255, 255, 255, 0.12);
  --dark: #030305;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --content: 1200px;
  --content-wide: 1440px;
  --reading: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #f0c98d;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 800;
}

.skip-link:focus {
  left: 8px;
}

body:has(.main-nav.is-open) {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(5, 4, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.logo {
  max-width: 190px;
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #120b19;
  color: #fff;
  font-size: 22px;
}

.main-nav {
  position: absolute;
  top: 64px;
  left: 14px;
  right: 14px;
  display: none;
  gap: 10px;
  padding: 16px;
  background: #111015;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: grid;
}

.main-nav a {
  color: #eee8f2;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-cta,
.btn.primary {
  background: var(--accent);
  color: #17100a;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #f4d29a;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  max-width: none;
  padding: 78px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), #050407 94%),
    radial-gradient(circle at center, rgba(108, 61, 122, 0.22), transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin: 0 auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.85)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), #050407 92%);
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.78) contrast(1.1);
}

.eyebrow {
  margin: 0 0 12px;
  color: #38d277;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  background: linear-gradient(92deg, #ffffff 0%, #f4d9a8 52%, #d8a85a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 880px) {
  .hero-copy {
    max-width: 940px;
  }

  .hero h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    letter-spacing: -0.01em;
  }
}

h2 {
  color: #f8f1f7;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 760;
  text-align: center;
}

h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
}

.lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: #e6dbe8;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.6;
}

.actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.chips span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(93, 40, 121, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.section,
.search-panel,
.final-cta {
  max-width: none;
  margin: 0;
  padding: 74px clamp(18px, 5vw, 72px);
  background: #0a0710;
}

.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 50% 0, rgba(116, 71, 144, 0.18), transparent 46%),
    #160d20;
}

.narrow {
  max-width: none;
}

.section > h2,
.section > p,
.narrow > h2,
.narrow > p,
.section-head,
.faq-grid,
.search-panel > h2,
.search-panel form,
.final-cta > * {
  max-width: var(--reading);
  margin-left: auto;
  margin-right: auto;
}

.card-grid,
.visual,
.split {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
}

.section > p,
.narrow > p {
  color: var(--muted);
  text-align: center;
}

.search-panel {
  background:
    radial-gradient(circle at center, rgba(85, 42, 112, 0.42), transparent 58%),
    linear-gradient(180deg, #20102c, #14091d);
}

.search-panel form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 20px;
  background: rgba(13, 13, 17, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-panel label {
  display: grid;
  gap: 7px;
  color: #e9dff0;
  font-size: 0.78rem;
  font-weight: 850;
}

select,
input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  padding: 10px 12px;
  background: #0b090e;
  color: #fff;
  font: inherit;
}

.split {
  display: grid;
  gap: 18px;
}

.split > div,
.card,
.mini,
details {
  padding: 24px;
  background: rgba(34, 36, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: none;
}

.split > div:nth-child(odd),
.card:nth-child(odd) {
  background: #182033;
}

.split > div:nth-child(even),
.card:nth-child(even) {
  background: #40215c;
}

.card-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.card p,
.mini p,
details p {
  color: #d8ccdc;
  font-size: 0.94rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #d8ccdc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 850;
}

.check-list li a {
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 760px) {
  .check-list--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

.table-wrap {
  max-width: var(--content);
  margin: 28px auto 0;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table thead th {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #182033;
}

.data-table tbody th {
  color: #fff;
  font-weight: 800;
}

.data-table td {
  color: #d8ccdc;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
  border-bottom: none;
}

.section > .section-note {
  max-width: var(--reading);
  margin: 26px auto 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #e8dcea;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.55;
}

.match-gallery {
  background:
    radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #20112c, #16091e);
  background-size: 18px 18px, auto;
}

.section-head p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.photo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content-wide);
  margin: 54px auto 0;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #2a123e;
  border-radius: 2px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 220ms ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(42, 16, 65, 0.95));
}

.photo-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 850;
  text-align: center;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.profile-pulse {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 900px;
  margin: 34px auto 0;
}

.profile-pulse span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #74349a;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.benefit-showcase {
  background: #030305;
}

.benefit-grid {
  display: grid;
  gap: 24px;
  max-width: var(--content);
  margin: 32px auto 0;
}

.benefit-card {
  display: grid;
  grid-template-columns: 1fr 140px;
  min-height: 310px;
  overflow: hidden;
  background: #182033;
  border-radius: 2px;
}

.benefit-card.baby {
  background: #40215c;
}

.benefit-card > div {
  padding: 28px;
}

.benefit-card ul {
  padding-left: 18px;
  margin: 18px 0 22px;
  color: #e6dbe8;
  font-size: 0.92rem;
}

.benefit-card li + li {
  margin-top: 8px;
}

.benefit-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.region-radar {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(132, 73, 157, 0.46) 0 8%, transparent 8% 15%, rgba(132, 73, 157, 0.24) 15% 24%, transparent 24% 34%, rgba(132, 73, 157, 0.14) 34% 46%, transparent 46%),
    #1a0e25;
}

.radar {
  position: relative;
  width: min(540px, 84vw);
  aspect-ratio: 1;
  margin: 34px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, #6d348f 0 7%, transparent 8%),
    repeating-radial-gradient(circle, rgba(255,255,255,.08) 0 1px, transparent 1px 58px);
}

.radar strong {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: #693388;
  font-weight: 950;
}

.pin {
  position: absolute;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20, 14, 26, 0.88);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(0,0,0,.24);
}

.pin-a { left: 44%; top: 18%; }
.pin-b { left: 22%; top: 34%; }
.pin-c { right: 18%; top: 38%; }
.pin-d { left: 28%; bottom: 24%; }
.pin-e { right: 30%; bottom: 20%; }
.pin-f { left: 48%; top: 64%; }

.city-entry {
  background: #181b1e;
}

.card-city-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

/* pre-registration module */
.preanmeldung-grid {
  display: grid;
  gap: 14px;
  max-width: var(--content);
  margin: 28px auto 0;
}

/* steps list for "Sugar Daddy finden" */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 22px auto 0;
  max-width: var(--reading);
  display: grid;
  gap: 14px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 22px;
  background: rgba(34, 36, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #d8ccdc;
  font-size: 0.95rem;
}

.steps-list-title {
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-weight: 850;
}

.steps-list li strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #17100a;
  font-size: 1rem;
  font-weight: 950;
  flex-shrink: 0;
}

/* comparison module */
.compare-grid {
  display: grid;
  gap: 24px;
  max-width: var(--content);
  margin: 28px auto 0;
}

.compare-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-card.de {
  background: #182033;
  border-left: 4px solid var(--accent);
}

.compare-card.intl {
  background: rgba(34, 36, 42, 0.7);
}

.compare-card h3 {
  margin-bottom: 14px;
}

.compare-card ul {
  padding-left: 18px;
  margin: 0;
  color: #d8ccdc;
  font-size: 0.94rem;
}

.compare-card li + li {
  margin-top: 8px;
}

@media (min-width: 760px) {
  .preanmeldung-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 980px) {
  .preanmeldung-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.security-showcase {
  background: #030305;
}

.security-grid {
  display: grid;
  gap: 24px;
  max-width: var(--content);
  margin: 32px auto 0;
}

.security-card {
  display: grid;
  overflow: hidden;
  min-height: 300px;
  border-radius: 3px;
}

.security-card.pink {
  background: #cc3d76;
}

.security-card.gold {
  background: #d2a962;
  color: #1a120c;
}

.security-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.security-card div {
  padding: 30px;
}

.security-card.gold h3,
.security-card.gold p,
.security-card.gold .eyebrow {
  color: #1a120c;
}

.feature-start {
  background:
    radial-gradient(circle at 70% 18%, rgba(116, 71, 144, 0.22), transparent 34%),
    linear-gradient(180deg, #08040d, #12091a);
}

.feature-shell {
  display: grid;
  gap: 34px;
  max-width: var(--content);
  margin: 0 auto;
  align-items: center;
}

.feature-intro {
  text-align: left;
}

.feature-intro h2 {
  max-width: 560px;
  text-align: left;
}

.feature-intro p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.feature-photo {
  width: 100%;
  margin-top: 26px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-board {
  display: grid;
  gap: 14px;
}

.feature-tile {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
  min-height: 132px;
  padding: 20px;
  background: #182033;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.feature-tile.accent {
  background: #48245f;
}

.feature-tile .icon {
  grid-row: span 2;
  margin: 2px 0 0;
}

.feature-tile h3 {
  margin-bottom: 6px;
}

.feature-tile p {
  margin: 0;
  color: #dfd4e5;
  font-size: 0.95rem;
}

.section.narrow[data-enhanced-content],
.section.narrow[data-depth-content],
.section.narrow[data-length-content],
.section.narrow[data-final-length] {
  position: relative;
  max-width: var(--content);
  margin: 42px auto;
  padding: 42px clamp(22px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(75, 36, 98, 0.72), rgba(18, 12, 24, 0.92)),
    #120c18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.section.narrow[data-depth-content],
.section.narrow[data-final-length] {
  background:
    linear-gradient(135deg, rgba(24, 32, 51, 0.9), rgba(8, 6, 12, 0.94)),
    #10131d;
}

.section.narrow[data-enhanced-content]::before,
.section.narrow[data-depth-content]::before,
.section.narrow[data-length-content]::before,
.section.narrow[data-final-length]::before {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(209, 164, 106, 0.28);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.section.narrow[data-enhanced-content]::before { content: "01"; }
.section.narrow[data-depth-content]::before { content: "02"; }
.section.narrow[data-length-content]::before { content: "03"; }
.section.narrow[data-final-length]::before { content: "04"; }

.section.narrow[data-enhanced-content] h2,
.section.narrow[data-depth-content] h2,
.section.narrow[data-length-content] h2,
.section.narrow[data-final-length] h2 {
  max-width: 720px;
  margin-left: 0;
  text-align: left;
}

.section.narrow[data-enhanced-content] p,
.section.narrow[data-depth-content] p,
.section.narrow[data-length-content] p,
.section.narrow[data-final-length] p {
  max-width: 760px;
  margin-left: 0;
  color: #e1d6e5;
  text-align: left;
}

.icon {
  width: 31px;
  height: 31px;
  margin-bottom: 12px;
  fill: var(--accent);
}

.visual {
  display: grid;
  gap: 26px;
  align-items: center;
}

.visual > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini {
  margin-bottom: 14px;
}

.mini h2 {
  text-align: left;
  font-size: 1.35rem;
}

.quote-band {
  background: #181b1e;
}

.quote-band h2 {
  max-width: 860px;
  margin: 0 auto 26px;
  padding: 0;
}

blockquote {
  max-width: 700px;
  margin: 14px auto;
  padding: 18px 22px;
  background: #25282d;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  color: #efe7ef;
  font-style: italic;
}

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

summary {
  cursor: pointer;
  color: #fff;
  font-weight: 850;
}

.final-cta {
  text-align: center;
  background: #030305;
}

.final-cta p {
  color: var(--muted);
}

.footer {
  display: grid;
  gap: 30px;
  padding: 58px clamp(18px, 5vw, 72px) 30px;
  background: #121317;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfc4d2;
}

.footer-top {
  display: grid;
  gap: 34px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.08rem;
}

.footer-brand p {
  max-width: 340px;
  margin: 0 0 20px;
  color: #b3a8ba;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-brand .btn {
  display: inline-flex;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer strong {
  color: #fff;
}

.footer a {
  color: #e5c08a;
  text-decoration: none;
}

.footer-col a {
  color: #c5b9ca;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #877c8f;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

:focus-visible {
  outline: 3px solid rgba(209, 164, 106, 0.5);
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .photo-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .search-panel form {
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    max-width: var(--content);
  }

  .search-panel .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }

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

  .split,
  .visual {
    grid-template-columns: 1fr 1fr;
    max-width: var(--content);
  }

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

  .benefit-card {
    grid-template-columns: 1fr 150px;
  }

  .security-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .security-card.gold img {
    order: 2;
  }

  .feature-shell {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 28px;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

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

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

@media (min-width: 1200px) {
  .match-gallery {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .match-gallery .section-head {
    max-width: 1160px;
  }

  .match-gallery h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }

  .match-gallery .section-head p {
    font-size: 1.25rem;
  }

  .photo-card {
    min-height: 390px;
  }

  .photo-card img {
    min-height: 390px;
  }

  .benefit-grid,
  .security-grid,
  .feature-shell,
  .card-grid,
  .visual,
  .split {
    max-width: var(--content);
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 560px;
  }

  .hero-img {
    min-height: 560px;
  }

  .nav-cta,
  .btn {
    width: 100%;
  }

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

  .benefit-card img {
    max-height: 280px;
  }

  .photo-card {
    min-height: 170px;
  }

  .photo-card img {
    min-height: 170px;
  }

  .feature-intro h2,
  .feature-intro p:not(.eyebrow),
  .section.narrow[data-enhanced-content] h2,
  .section.narrow[data-depth-content] h2,
  .section.narrow[data-length-content] h2,
  .section.narrow[data-final-length] h2,
  .section.narrow[data-enhanced-content] p,
  .section.narrow[data-depth-content] p,
  .section.narrow[data-length-content] p,
  .section.narrow[data-final-length] p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-tile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-tile .icon {
    margin: 0 auto 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto;
    transition: none !important;
  }
}
