/* MyHH marketing site */

:root {
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --amber-100: #fef3c7;
  --amber-600: #d6752b;
  --amber-700: #b45309;
  --rose-100: #ffe4e6;
  --rose-700: #be123c;
  --felt: #0f3d2e;
  --felt-light: #145a40;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1120px;
  --header-h: 72px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.25;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.625rem 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary {
  background: var(--indigo-600);
  color: #fff;
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.3), 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  background: var(--indigo-700);
}

.btn-secondary {
  background: #fff;
  color: var(--gray-800);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-white {
  background: #fff;
  color: var(--indigo-700);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--indigo-50);
}

.btn-lg {
  padding: 0.875rem 1.35rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--indigo-600);
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
}

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

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: #fff;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gray-700);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}

.mobile-nav a:not(.btn) {
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
}

.mobile-nav a:not(.btn):hover {
  background: var(--gray-50);
  color: var(--indigo-600);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 860px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(165, 180, 252, 0.2), transparent 50%),
    linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.hero-glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero {
    padding: 5rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo-600);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.15rem;
}

.text-gradient {
  background: linear-gradient(120deg, var(--indigo-600), #7c3aed 55%, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede,
.section-lede {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 36rem;
}

.section-lede.left {
  margin-inline: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--green-600);
  flex-shrink: 0;
}

/* Hero mock UI */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.mock-window {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
}

@media (max-width: 979px) {
  .mock-window {
    transform: none;
  }
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}

.dot.red { background: #f87171; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #4ade80; }

.mock-url {
  margin-left: 0.6rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.mock-body {
  display: grid;
  gap: 0;
}

@media (min-width: 520px) {
  .mock-body {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.mock-table {
  padding: 0.85rem;
  background: linear-gradient(160deg, #0b1220, #111827);
}

.felt {
  position: relative;
  min-height: 220px;
  border-radius: 999px / 70%;
  background:
    radial-gradient(ellipse at center, var(--felt-light) 0%, var(--felt) 70%);
  border: 3px solid #1a3d2c;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem 2.25rem;
}

.felt-ring {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.board {
  display: flex;
  gap: 0.35rem;
  z-index: 1;
}

.card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 3rem;
  background: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.card span {
  font-size: 0.75rem;
}

.card.sm {
  width: 1.55rem;
  height: 2.15rem;
  font-size: 0.7rem;
  border-radius: 4px;
}

.card.sm span {
  font-size: 0.6rem;
}

.card.red { color: #dc2626; }
.card.black { color: #111827; }

.card-back {
  width: 1.55rem;
  height: 2.15rem;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      45deg,
      #312e81,
      #312e81 3px,
      #4338ca 3px,
      #4338ca 6px
    );
  border: 1px solid #a5b4fc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.card-back.sm { /* default size already sm */ }

.pot {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: #fef9c3;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  z-index: 1;
}

.seat {
  position: absolute;
  text-align: center;
  z-index: 1;
}

.seat-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.2rem;
}

.hole {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.stack {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #bbf7d0;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.seat-hero {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.seat-villain {
  top: 8%;
  right: 12%;
}

.mock-sidebar {
  padding: 0.9rem;
  background: #fff;
  border-top: 1px solid var(--gray-100);
}

@media (min-width: 520px) {
  .mock-sidebar {
    border-top: none;
    border-left: 1px solid var(--gray-100);
  }
}

.mock-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.55rem;
}

.action-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 0.85rem;
}

.action-list li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.4rem;
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
}

.action-list li span {
  color: var(--gray-400);
  font-size: 0.7rem;
  font-weight: 600;
}

.action-list li.done {
  color: var(--gray-500);
}

.action-list li.active {
  background: var(--indigo-50);
  color: var(--indigo-800);
  font-weight: 600;
}

.mock-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.mock-controls button {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  cursor: default;
}

.mock-controls button.primary {
  background: var(--indigo-600);
  border-color: var(--indigo-600);
  color: #fff;
}

.mock-controls span {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-variant-numeric: tabular-nums;
}

.floating-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 7.5rem;
  animation: float 5s ease-in-out infinite;
}

.chip-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.chip-value {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.chip-value.up {
  color: var(--green-600);
}

.chip-value.ev {
  color: var(--amber-600);
}

.chip-net {
  top: -0.5rem;
  right: -0.25rem;
}

.chip-ev {
  bottom: 1.5rem;
  left: -0.5rem;
  animation-delay: -2.2s;
}

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

@media (max-width: 640px) {
  .floating-chip {
    display: none;
  }
}

/* Supported */
.supported {
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--gray-100);
}

.supported-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.supported-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.site-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}

.site-pill.muted {
  color: var(--gray-500);
  background: var(--gray-50);
}

.site-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gray-300);
}

.site-dot.ggpoker {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.soon {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--gray-50);
  border-block: 1px solid var(--gray-100);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section-head h2,
.review-copy h2,
.cta-inner h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.85rem;
}

.section-head .section-lede {
  margin-inline: auto;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-wide {
    grid-column: 1 / -1;
  }
}

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

  .feature-wide {
    grid-column: span 2;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.feature-card:hover {
  border-color: var(--indigo-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--indigo-50);
  color: var(--indigo-600);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.975rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  max-width: 48rem;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: none;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--indigo-600);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Review / groups */
.review-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.check-list {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--gray-700);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--indigo-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234f46e5'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 0.75rem no-repeat;
}

.review-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.avatar-stack {
  display: flex;
}

.av {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-left: -0.45rem;
}

.av:first-child {
  margin-left: 0;
}

.av.a1 { background: #7c3aed; }
.av.a2 { background: #2563eb; }
.av.a3 { background: #db2777; }

.review-group {
  font-weight: 700;
  font-size: 0.975rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.review-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.review-item + .review-item {
  margin-top: 0.75rem;
}

.review-item-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.tag-indigo {
  background: var(--indigo-100);
  color: var(--indigo-800);
}

.tag-amber {
  background: var(--amber-100);
  color: var(--amber-700);
}

.tag-rose {
  background: var(--rose-100);
  color: var(--rose-700);
}

.review-note {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.65rem;
}

.review-item-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

.comment-count {
  color: var(--indigo-600);
  font-weight: 600;
}

/* Quotes */
.quote-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.quote-card p {
  font-size: 0.975rem;
  color: var(--gray-700);
  line-height: 1.55;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.quote-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--indigo-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.quote-avatar.b { background: #0d9488; }
.quote-avatar.c { background: #c026d3; }

.quote-card cite {
  font-style: normal;
  font-weight: 700;
  display: block;
  font-size: 0.9rem;
}

.quote-card footer span:last-child {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 70% 120% at 100% 50%, rgba(165, 180, 252, 0.25), transparent 50%),
    linear-gradient(120deg, var(--indigo-700), var(--indigo-600) 45%, #6d28d9);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-inner h2 {
  color: #fff;
  max-width: 24rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-sub {
  color: var(--gray-400);
}

.footer-brand p {
  margin-top: 0.85rem;
  max-width: 18rem;
  font-size: 0.925rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  font-size: 0.925rem;
  color: var(--gray-400);
  padding: 0.25rem 0;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.25rem;
  font-size: 0.825rem;
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-note {
  color: var(--gray-500);
}

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

  .floating-chip,
  .btn,
  .feature-card {
    animation: none;
    transition: none;
  }

  .btn:hover,
  .feature-card:hover {
    transform: none;
  }
}
