/* ============================================================
   PADE — Landing Page Styles
   Mobile-first · TFO brand palette · Inter
   Electric Blue #1A1AFF · Lime #B5FF4D · Black · White
   ============================================================ */

@font-face {
  font-family: 'Akira';
  src: url('Akira.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand — exact TFO palette */
  --blue:        #1A1AFF;
  --blue-dark:   #1010CC;
  --blue-dim:    rgba(26,26,255,0.12);
  --lime:        #B5FF4D;
  --lime-dark:   #8FCC30;
  --lime-dim:    rgba(181,255,77,0.12);

  /* Dark surfaces */
  --bg:          #000000;
  --bg-2:        #0A0A0A;
  --bg-card:     #111111;
  --bg-card-2:   #191919;

  /* Light surfaces */
  --white:       #FFFFFF;
  --off-white:   #F5F5F5;
  --card-light:  #EBEBEB;

  /* Text on dark */
  --on-dark:     #FFFFFF;
  --on-dark-2:   #999999;
  --on-dark-3:   #444444;

  /* Text on light */
  --text:        #0A0A0A;
  --text-2:      #444444;
  --text-3:      #888888;

  /* Borders */
  --border:      #E0E0E0;
  --border-dark: rgba(255,255,255,0.1);

  --radius:      12px;
  --radius-lg:   20px;
  --t:           0.2s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ─── Eyebrow labels ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
/* on dark backgrounds */
.ey-lime  { background: var(--lime-dim);  color: var(--lime);      border: 1px solid rgba(181,255,77,0.25); }
.ey-green { background: var(--lime-dim);  color: var(--lime);      border: 1px solid rgba(181,255,77,0.25); } /* alias */
.ey-white { background: var(--lime-dim);  color: var(--lime);      border: 1px solid rgba(181,255,77,0.25); } /* alias */
.ey-blue  { background: var(--blue-dim);  color: #7B7BFF;          border: 1px solid rgba(26,26,255,0.3); }
.ey-dark  { background: var(--bg-card-2); color: var(--on-dark-2); border: 1px solid var(--border-dark); }
/* on light backgrounds */
.ey-light { background: var(--card-light); color: var(--text-2);   border: 1px solid var(--border); }

/* ─── Headlines ──────────────────────────────────────────── */
.h-xl {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.h-lg {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.025em;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all var(--t);
}
.btn-lime {
  background: var(--lime);
  color: #000;
  padding: 14px 30px;
  font-size: 0.95rem;
}
.btn-lime:hover { background: #CBFF70; transform: translateY(-1px); }
.btn-blue {
  background: var(--blue);
  color: #fff;
  padding: 14px 30px;
  font-size: 0.95rem;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
/* Keep btn-green as alias for btn-lime (used in HTML) */
.btn-green { background: var(--lime); color: #000; padding: 14px 30px; font-size: 0.95rem; }
.btn-green:hover { background: #CBFF70; transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ─── App store buttons ──────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  padding: 12px 20px;
  cursor: pointer;
  transition: all var(--t);
}
.sb-navy {
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  color: var(--on-dark);
}
.sb-navy:hover { border-color: var(--lime); transform: translateY(-2px); }
.sb-dark {
  background: #111;
  border: 1.5px solid #333;
  color: #fff;
}
.sb-dark:hover { border-color: var(--lime); transform: translateY(-2px); }
.store-icon { width: 22px; height: 22px; flex-shrink: 0; }
.store-label { display: flex; flex-direction: column; gap: 1px; }
.store-sub  { font-size: 0.6rem; opacity: 0.5; font-weight: 400; }
.store-main { font-size: 0.925rem; font-weight: 700; }

/* ─── Fade animation ─────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fi.on { opacity: 1; transform: none; }
.fi-delay-1 { transition-delay: 0.1s; }
.fi-delay-2 { transition-delay: 0.2s; }
.fi-delay-3 { transition-delay: 0.3s; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.nav.scrolled { border-color: var(--border-dark); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.akira { font-family: 'Akira', sans-serif !important; }
.eyebrow.akira { font-size: 1rem; letter-spacing: 0.04em; }

.nav-logo {
  font-family: 'Akira', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--lime);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 152px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 800px;
  background: radial-gradient(ellipse at 50% 35%, rgba(26,26,255,0.18) 0%, rgba(181,255,77,0.05) 55%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-headline { color: var(--on-dark); margin-bottom: 24px; }
.hero-headline em {
  font-style: normal;
  color: var(--lime);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--on-dark-2);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-note {
  font-size: 0.8rem;
  color: var(--on-dark-3);
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(26,26,255,0.3));
}

/* ─── INTRO BAND ─────────────────────────────────────────── */
.intro-band {
  background: var(--blue);
  padding: 5px 0;
  overflow: hidden;
}
.intro-band-track {
  display: flex;
  width: max-content;
}
.intro-band-segment {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.intro-band-text {
  font-family: 'Akira', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  padding: 0;
}
.intro-band-text span {
  opacity: 0.45;
  margin: 0 10px;
}
.intro-band-text strong { color: var(--lime); }

/* ─── THIS IS PERSONAL ───────────────────────────────────── */
.for-section {
  background: var(--white);
  padding: 96px 0;
}
.for-headline { color: var(--text); margin-bottom: 16px; }
.for-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 64px;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .comp-col:first-child { order: 1; }
  .comp-col:last-child  { order: 2; }
  .comp-col-mid         { order: 3; }
}
@media (min-width: 768px) {
  .comparison {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }
}
.comp-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.comp-col-mid {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.comp-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
  color: var(--text-3);
}
.comp-col-mid .comp-tag { color: rgba(255,255,255,0.5); }

.comp-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  min-height: 30px;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}
.brand-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.b-venmo   { background: #3D95CE; color: #fff; }
.b-cashapp { background: #00C244; color: #fff; }
.b-zelle   { background: #6D1ED4; color: #fff; }
.b-square  { background: #000;    color: #fff; border: 1px solid #444; }
.b-shopify { background: #96BF48; color: #fff; }
.b-toast   { background: #FF4500; color: #fff; }

.comp-verdict {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-3);
  margin-bottom: 28px;
}
.comp-col-mid .comp-verdict {
  color: #fff;
  font-size: 1.5rem;
}
.comp-list li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.comp-list li::before {
  content: '—';
  color: var(--text-3);
  flex-shrink: 0;
  margin-top: 1px;
}
.comp-list li:last-child { border-bottom: none; }
.comp-col-mid .comp-list li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.12);
}
.comp-col-mid .comp-list li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 800;
}
.comp-col-mid .comp-list { flex: 1; }
.comp-col-mid-cta {
  margin-top: 28px;
}

/* ─── GIGSWITCHER ────────────────────────────────────────── */
.gs-section {
  background: var(--bg-2);
  padding: 96px 0;
}
.gs-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.gs-headline { color: var(--on-dark); margin-bottom: 20px; }
.gs-intro {
  font-size: 1.1rem;
  color: var(--on-dark-2);
  line-height: 1.75;
}
.gs-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .gs-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gs-cards { grid-template-columns: repeat(3, 1fr); } }
.gs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t), transform var(--t);
}
.gs-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}
.gs-card-gigs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gig-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--lime-dim);
  color: var(--lime);
  border: 1px solid rgba(181,255,77,0.2);
}
.gs-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--on-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.gs-card-desc {
  font-size: 0.875rem;
  color: var(--on-dark-2);
  line-height: 1.65;
  flex: 1;
}
.gs-card-benefit {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-dark);
  padding-top: 16px;
}
.gs-card-benefit::before {
  content: '→';
  flex-shrink: 0;
}
.gs-banner {
  margin-top: 40px;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .gs-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.gs-banner-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}
.gs-banner-text span { color: var(--lime); }
.gs-banner-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ─── QUADCHECKOUT ───────────────────────────────────────── */
.quad-section {
  background: var(--white);
  padding: 96px 0;
}
.quad-header {
  max-width: 760px;
  margin-bottom: 56px;
}
.quad-headline {
  color: var(--text);
  margin-bottom: 20px;
}
.quad-intro {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 640px;
}
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .quad-grid { grid-template-columns: 1fr; }
}
.quad-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t), transform var(--t);
}
.quad-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.quad-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quad-card-highlight {
  background: var(--blue-dim);
  border-color: var(--blue);
  border-width: 2px;
}
.quad-card-highlight:hover { border-color: var(--blue-dark); transform: translateY(-2px); }
.quad-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quad-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--text-2);
}
.quad-card-highlight .quad-card-icon {
  background: var(--blue-dim);
  border: 1px solid rgba(26,26,255,0.2);
}
.quad-card-highlight .quad-card-icon svg {
  stroke: var(--blue);
}
.quad-card-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.quad-card-highlight .quad-card-label { color: var(--text); }
.quad-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(26,26,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.quad-card-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}
.quad-card-highlight .quad-card-desc { color: var(--text-2); }
.quad-callout {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .quad-callout { flex-direction: row; align-items: center; justify-content: space-between; }
}
.quad-callout-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quad-callout-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.quad-callout-text span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 560px;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-section {
  background: var(--bg);
  padding: 96px 0;
}
.how-headline { color: var(--on-dark); margin-bottom: 64px; }
.how-section .eyebrow.ey-light {
  background: var(--bg-card-2);
  color: var(--on-dark-2);
  border-color: var(--border-dark);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--t);
}
.step:hover { background: var(--off-white); }
.step-num {
  font-family: 'Akira', sans-serif;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.02em;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.step-body  { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ─── FEATURES ───────────────────────────────────────────── */
.feat-section {
  background: var(--blue);
  padding: 96px 0;
}
.feat-headline { color: #fff; margin-bottom: 14px; }
.feat-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.7;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.18);
}
@media (min-width: 640px)  { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px)  { .feat-grid { grid-template-columns: repeat(4, 1fr); } }
.feat-item {
  background: rgba(0,0,0,0.18);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--t);
}
.feat-item:hover { background: rgba(0,0,0,0.3); }
.feat-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(181,255,77,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon-wrap svg {
  width: 17px; height: 17px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-title { font-size: 0.9rem;  font-weight: 700; color: #fff; }
.feat-desc  { font-size: 0.8rem;  color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ─── TEAM ───────────────────────────────────────────────── */
.team-section {
  background: var(--off-white);
  padding: 96px 0;
}
.team-headline { color: var(--text); margin-bottom: 14px; }
.team-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.member:hover { border-color: var(--blue); transform: translateY(-2px); }
.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--card-light);
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-photo-placeholder {
  font-family: 'Akira', sans-serif;
  font-size: 1.5rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.member-info { padding: 24px; }
.member-name { font-family: 'Akira', sans-serif; font-size: 0.75rem; color: var(--text); margin-bottom: 4px; letter-spacing: 0.01em; line-height: 1.4; }
.member-role { font-size: 0.7rem;  font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.member-bio  { font-size: 0.825rem; color: var(--text-2); line-height: 1.6; }

/* ─── FINAL CTA ──────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(ellipse, rgba(26,26,255,0.45) 0%, rgba(181,255,77,0.08) 45%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-headline { color: var(--on-dark); margin-bottom: 24px; }
.cta-sub {
  font-size: 1.1rem;
  color: var(--on-dark-2);
  line-height: 1.7;
  margin-bottom: 44px;
}
.cta-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}
.cta-url {
  font-family: 'Akira', sans-serif;
  font-size: 1rem;
  color: var(--lime);
  letter-spacing: 0.04em;
  opacity: 0.6;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid var(--border-dark);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logo   { font-family: 'Akira', sans-serif; font-size: 1rem; color: var(--lime); letter-spacing: 0.02em; margin-bottom: 4px; }
.footer-parent { font-size: 0.75rem; color: var(--on-dark-3); }
.footer-parent a { color: var(--on-dark-3); text-decoration: underline; text-underline-offset: 3px; }
.footer-parent a:hover { color: var(--lime); }
.footer-links  { display: flex; gap: 24px; }
.footer-links a { font-size: 0.825rem; color: var(--on-dark-3); transition: color var(--t); }
.footer-links a:hover { color: var(--on-dark); }
.footer-copy   { font-size: 0.725rem; color: var(--on-dark-3); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .for-section, .gs-section, .how-section, .feat-section, .team-section, .cta-section { padding: 72px 0; }
  .hero { padding: 120px 0 72px; }
  .hero-img { max-width: 260px; }
  .gs-banner { padding: 28px 24px; }
}

/* ─── Mobile-only fixes ──────────────────────────────────── */
@media (max-width: 859px) {
  /* 1. Hero: text → mockup → buttons */
  .hero-grid { display: flex; flex-direction: column; gap: 40px; }
  .hero-top   { order: 1; }
  .hero-visual { order: 2; }
  .hero-cta   { order: 3; text-align: center; }
  .hero-cta .hero-actions { justify-content: center; }
  .hero-cta .hero-note { text-align: center; }

  /* Desktop: visual spans both rows beside text + cta */
}
@media (min-width: 860px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 24px 64px;
    align-items: start;
  }
  .hero-top    { grid-column: 1; grid-row: 1; }
  .hero-visual { grid-column: 2; grid-row: 1 / 3; align-self: end; }
  .hero-cta    { grid-column: 1; grid-row: 2; align-self: end; }
}

@media (max-width: 640px) {
  /* 2. Comparison cards — tighter padding */
  .comp-col { padding: 24px 18px; }
  .comp-col-mid { padding: 28px 20px; }
  .comp-list li { padding: 8px 0; }
  .comp-verdict { margin-bottom: 16px; }

  /* 3. Section headlines slightly larger on mobile */
  .h-lg { font-size: 2.3rem; }

  /* 4. Banner CTAs right-aligned */
  .gs-banner .btn,
  .quad-callout .btn { align-self: flex-end; }

  /* 5. How It Works: step number left of title */
  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
  }
  .step-num   { grid-column: 1; grid-row: 1; font-size: 1.75rem; align-self: center; }
  .step-title { grid-column: 2; grid-row: 1; align-self: center; }
  .step-body  { grid-column: 1 / -1; grid-row: 2; }

  /* 6. What's Inside: icon left of title */
  .feat-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 20px 16px;
  }
  .feat-icon-wrap { grid-column: 1; grid-row: 1; align-self: center; }
  .feat-title     { grid-column: 2; grid-row: 1; align-self: center; }
  .feat-desc      { grid-column: 1 / -1; grid-row: 2; }

  /* 7. Team: 2 columns on mobile */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .member-info { padding: 14px; }
  .member-name { font-size: 0.65rem; }
  .member-bio  { font-size: 0.75rem; }
}
