/* ── 52 PICKUP SOCIAL ── Design Tokens ── */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Colors — 52 Pickup Brand: Red, Black, Cream */
  --color-bg:             #F7F4EF;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #FBF9F5;
  --color-surface-offset: #EDE9E1;
  --color-divider:        #DCD7CC;
  --color-border:         #D4CFC5;

  --color-text:           #1A1714;
  --color-text-muted:     #6B6560;
  --color-text-faint:     #A8A29E;
  --color-text-inverse:   #F7F4EF;

  /* Primary: Deep Red */
  --color-primary:        #B71C1C;
  --color-primary-hover:  #8E1515;
  --color-primary-active: #6D1010;
  --color-primary-light:  #FDEAEA;

  /* Accent: Dark Navy for secondary CTAs */
  --color-accent:         #1A237E;
  --color-accent-hover:   #131A5E;

  /* PokerAtlas Green */
  --color-green:          #00A651;
  --color-green-light:    #E8F9F0;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 50 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 50 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 50 / 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* Dark mode */
[data-theme="dark"] {
  --color-bg:             #151210;
  --color-surface:        #1C1916;
  --color-surface-2:      #22201D;
  --color-surface-offset: #1D1B18;
  --color-divider:        #2D2A26;
  --color-border:         #3A3632;
  --color-text:           #E8E3DC;
  --color-text-muted:     #8A847D;
  --color-text-faint:     #5A5650;
  --color-text-inverse:   #1A1714;
  --color-primary:        #EF5350;
  --color-primary-hover:  #E53935;
  --color-primary-active: #C62828;
  --color-primary-light:  #2A1515;
  --color-green:          #4CAF50;
  --color-green-light:    #1A2A1A;
  --color-accent:         #5C6BC0;
  --color-accent-hover:   #3F51B5;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

/* Dark mode overrides for sections */
[data-theme="dark"] .section--cream {
  background: var(--color-surface);
}

[data-theme="dark"] .step,
[data-theme="dark"] .review-card,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .faq-item {
  background: var(--color-surface-2);
  box-shadow: none;
  border: 1px solid var(--color-border);
}

[data-theme="dark"] .review-card__avatar {
  background: var(--color-surface-offset);
}

[data-theme="dark"] .cta-banner {
  background: var(--color-primary);
}

[data-theme="dark"] .footer {
  background: #0D0C0A;
}

[data-theme="dark"] .hero__badge {
  background: oklch(from var(--color-primary) l c h / 0.15);
}

[data-theme="dark"] .btn--outline {
  border-color: var(--color-border);
  color: var(--color-text);
}

[data-theme="dark"] .btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ── General ── */

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-default);
}

/* ── HEADER / NAV ── */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: box-shadow 0.3s var(--ease-out);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo-img {
  height: 28px;
  width: auto;
}

.header__logo-social {
  height: 22px;
  width: auto;
}

[data-theme="dark"] .header__logo-social {
  filter: invert(1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

nav a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--transition-interactive);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

nav a:hover { color: var(--color-primary); }

.nav-cta {
  background: var(--color-primary);
  color: var(--color-text-inverse) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.nav-cta:hover {
  background: var(--color-primary-hover) !important;
  color: var(--color-text-inverse) !important;
  transform: translateY(-1px);
}
.nav-cta:active { transform: translateY(0); }

/* Mobile right side */
.header__mobile-right {
  display: none;
  align-items: center;
  gap: var(--space-2);
}

/* Mobile nav */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 49;
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
}
.mobile-nav a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
  nav { display: none; }
  .header__mobile-right { display: flex; }
  .header__logo-img { height: 22px; }
  .header__logo-social { height: 18px; }
}

/* Theme toggle */
.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.06);
}

/* ── HERO ── */

.hero {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0 clamp(var(--space-12), 8vw, var(--space-24));
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, oklch(from var(--color-primary) l c h / 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, oklch(from var(--color-primary) l c h / 0.03) 0%, transparent 50%),
    var(--color-bg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

/* ── BUTTONS ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  border: none;
  line-height: 1.4;
}

.btn:active { transform: translateY(0) !important; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.2);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn--poker {
  background: #111;
  color: #fff;
  padding: var(--space-3) var(--space-5);
  gap: var(--space-3);
  font-weight: 600;
}
.btn--poker:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--poker .poker-chip {
  width: 22px;
  height: 22px;
}

.btn--navy {
  background: var(--color-accent);
  color: #fff;
}
.btn--navy:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ── SECTIONS ── */

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section--cream {
  background: var(--color-surface-2);
}

.section--dark {
  background: var(--color-text);
  color: var(--color-text-inverse);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section__header p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 55ch;
  margin-inline: auto;
}

.section--dark .section__header p {
  color: oklch(from var(--color-text-inverse) l c h / 0.7);
}

/* ── HOW TO START (STEPS) ── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--space-8);
  max-width: 960px;
  margin-inline: auto;
}

.step {
  text-align: left;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-lg);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step h3 .highlight {
  color: var(--color-primary);
}

.step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ── PROBLEM / VALUE PROP ── */

.value-prop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}

@media (max-width: 768px) {
  .value-prop { grid-template-columns: 1fr; }
}

.value-prop__text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.value-prop__text h2 .highlight {
  color: var(--color-primary);
}

.value-prop__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.value-prop__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Truck SVG illustration container */
.truck-illustration {
  max-width: 420px;
  width: 100%;
}

/* ── REVIEWS / TESTIMONIALS ── */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}

.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.review-card__user {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--text-sm);
}

.review-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.review-card__date {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}

.review-card__rating {
  display: flex;
  gap: 2px;
}

.chip-rating {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-green);
}

.review-card__title {
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-green);
  font-size: var(--text-sm);
}

.review-card__body {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ── WHAT YOU'LL FIND ── */

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-interactive);
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-top: 2px;
}

.feature-item h4 {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.feature-item p {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

/* ── LOCATION ── */

.location {
  text-align: center;
}

.location__address {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: var(--space-6);
}

.location__statements {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.location__statements p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  margin-inline: auto;
}

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

/* ── FAQ ── */

.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  transition: background var(--transition-interactive);
  gap: var(--space-4);
  line-height: 1.4;
}

.faq-item__question:hover {
  background: oklch(from var(--color-text) l c h / 0.03);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── CTA BANNER ── */

.cta-banner {
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 100%, oklch(0 0 0 / 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, oklch(1 0 0 / 0.05) 0%, transparent 50%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-4);
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: var(--space-8);
  max-width: 50ch;
  margin-inline: auto;
  font-size: var(--text-base);
}

.cta-banner .btn--white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}
.cta-banner .btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── FOOTER ── */

.footer {
  background: #111;
  color: #ccc;
  padding-block: var(--space-12) var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__logo-wrap {
  margin-bottom: var(--space-4);
}

.footer__logo-img {
  height: 28px;
  width: auto;
  margin-bottom: var(--space-1);
}

.footer__logo-social {
  height: 22px;
  width: auto;
  filter: invert(1);
}

.footer__brand p {
  color: #999;
  font-size: var(--text-sm);
  max-width: 300px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer__brand p { margin-inline: auto; }
}

.footer__col h4 {
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.footer__col a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: var(--text-sm);
  padding-block: var(--space-1);
  transition: color var(--transition-interactive);
}

.footer__col a:hover { color: #fff; }

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .footer__social { justify-content: center; }
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.08);
  color: #ccc;
  transition: background var(--transition-interactive), color var(--transition-interactive);
  padding: 0;
}

.footer__social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid oklch(1 0 0 / 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: #666;
}

@media (max-width: 768px) {
  .footer__bottom { justify-content: center; text-align: center; }
}

.footer__bottom a {
  color: #888;
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer__bottom a:hover { color: #fff; }

/* ── SCROLL ANIMATIONS ── */

.fade-in { opacity: 1; }

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Stagger delays */
.fade-in-delay-1 { animation-delay: 100ms; }
.fade-in-delay-2 { animation-delay: 200ms; }
.fade-in-delay-3 { animation-delay: 300ms; }

/* ── POKER CARD DECORATIONS ── */

.card-suits {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
  font-size: 1.5rem;
  opacity: 0.3;
}

.card-suits span {
  font-size: 1.5rem;
}

.suit-red { color: var(--color-primary); }

/* ── DIVIDER ── */

.divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 200px;
  margin-inline: auto;
  margin-block: var(--space-2);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-divider);
}

/* ── POKER ATLAS BADGE ── */

.pokeratlas-section {
  text-align: center;
  padding-block: var(--space-8);
}

.pokeratlas-section p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  margin-inline: auto;
}

/* ── RESPONSIVE ── */

/* ── Review name links ── */

.review-card__name-link {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.review-card__name-link:hover {
  color: var(--color-primary);
}

.review-card__title {
  display: block;
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.review-card__title:hover {
  opacity: 0.8;
}

/* ── Footer Contact ── */

.footer__contact {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer__contact {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: #999;
}

.footer__contact-item a {
  color: #ccc;
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-interactive);
}

.footer__contact-item a:hover {
  color: #fff;
}

.footer__contact-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ── Jobs Modal ── */

.jobs-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: oklch(0 0 0 / 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: var(--space-4);
}

.jobs-overlay.active {
  display: flex;
}

.jobs-modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.jobs-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}

.jobs-close:hover {
  background: oklch(from var(--color-text) l c h / 0.06);
  color: var(--color-text);
}

.jobs-modal h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.jobs-modal h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.job-listing {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
}

.job-listing h4 {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.job-listing p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.jobs-contact {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.jobs-contact a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

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

.jobs-content > p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

/* ── CONTACT MODAL ── */

.contact-modal__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-modal__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-modal__item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-modal__item strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.contact-modal__item a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
}

.contact-modal__item a:hover {
  color: var(--color-primary);
}

.contact-modal__social {
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.contact-modal__social > strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.contact-modal__social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.contact-modal__social-links a {
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}

.contact-modal__social-links a:hover {
  color: var(--color-primary);
}

/* ── RESPONSIVE ── */

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
