/* ============================================================
   Mastercard-Inspired Design System — iAuthIQ
   Canvas: warm cream · Typography: Sofia Sans · Radius: pill
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Surfaces */
  --canvas:        #F3F0EE;
  --canvas-lifted: #FCFBFA;
  --white:         #FFFFFF;

  /* Ink & Text */
  --ink:           #141413;
  --charcoal:      #262627;
  --slate:         #696969;
  --dust:          #D1CDC7;

  /* Accent */
  --orange:        #CF4500;
  --orange-light:  #F37338;
  --clay:          #9A3A0A;
  --link-blue:     #3860BE;

  /* Shadows */
  --shadow-nav:  rgba(0,0,0,0.04) 0px 4px 24px 0px;
  --shadow-card: rgba(0,0,0,0.08) 0px 24px 48px 0px;

  /* Radius scale */
  --r-btn:  20px;
  --r-card: 40px;
  --r-pill: 999px;

  /* Layout */
  --content-width: 1240px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --ease: 0.2s ease;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6,
.page-heading, .auth-heading, .section-title {
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; line-height: 1.2; }
h4 { font-size: 0.875rem; font-weight: 700; }
p  { margin: 0; }

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow::before {
  content: 'o';
  color: var(--orange-light);
  font-size: 0.5em;
  line-height: 1;
  width: 6px;
  height: 6px;
  background: var(--orange-light);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.muted-text { color: var(--slate); }

/* ── Layout ── */
.site-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-width));
  margin: 0 auto;
}

/* ── Floating Pill Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 12px;
  background: transparent;
  isolation: isolate;
}

.site-header__inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-width));
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-nav);
  min-height: 68px;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark__copy {
  display: flex;
  flex-direction: column;
}

.brand-mark__title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.brand-mark__subtitle {
  font-size: 0.75rem;
  color: var(--slate);
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.site-nav a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: opacity var(--ease);
}

.site-nav a:hover { opacity: 0.6; }

.site-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background var(--ease);
}

.nav-hamburger:hover { background: rgba(20,20,19,0.06); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: calc(100% + 8px);
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
}

.mobile-menu.menu-open { display: block; }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(20,20,19,0.08);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}

.mobile-menu__nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.65rem 0;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__actions .button {
  width: 100%;
  justify-content: center;
}

/* ── Buttons ── */
.button,
.figma-btn,
.figma-btn-scan,
.figma-btn-camera,
.figma-btn-cancel,
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--r-btn);
  padding: 0.6rem 1.5rem;
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.button:hover,
.figma-btn:hover,
.figma-btn-scan:hover,
.figma-btn-camera:hover,
.figma-btn-cancel:hover,
.action-btn:hover {
  transform: translateY(-1px);
}

/* Primary — ink pill */
.button--primary,
.figma-btn-primary,
.figma-btn-scan {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}

.button--primary:hover,
.figma-btn-primary:hover,
.figma-btn-scan:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: rgba(20,20,19,0.18) 0px 12px 32px;
}

/* Secondary — outlined */
.button--secondary,
.figma-btn-secondary,
.action-btn {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}

.button--secondary:hover,
.figma-btn-secondary:hover,
.action-btn:hover { background: var(--canvas); }

/* Ghost */
.button--ghost,
.figma-btn-cancel {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20,20,19,0.25);
}

.button--ghost:hover,
.figma-btn-cancel:hover {
  background: rgba(20,20,19,0.04);
  border-color: rgba(20,20,19,0.4);
}

/* Danger */
.figma-btn-danger {
  background: var(--white);
  color: var(--clay);
  border-color: var(--clay);
}

.figma-btn-danger:hover { background: #fff5f0; }

/* Camera = ghost variant */
.figma-btn-camera {
  background: var(--canvas-lifted);
  color: var(--ink);
  border-color: rgba(20,20,19,0.2);
}

/* Orange — consent/legal only */
.btn-consent {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  border-radius: 24px;
}

/* Focus rings */
.button:focus-visible,
.figma-btn:focus-visible,
.figma-btn-scan:focus-visible,
.figma-btn-camera:focus-visible,
.figma-btn-cancel:focus-visible,
.figma-input:focus-visible,
.search-input:focus-visible,
.modern-input:focus-visible {
  outline: 3px solid rgba(243,115,56,0.35);
  outline-offset: 2px;
}

.button:disabled, .figma-btn:disabled, .figma-input:disabled, .modern-input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ── Surfaces ── */
.surface, .glass-card, .modern-card {
  background: var(--canvas-lifted);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

/* ── Forms ── */
.figma-label, .modern-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.figma-input, .modern-input, .search-input {
  width: 100%;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(20,20,19,0.2);
  background: var(--white);
  color: var(--ink);
  min-height: 54px;
  padding: 0.875rem 1.25rem;
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.figma-input::placeholder, .modern-input::placeholder, .search-input::placeholder { color: var(--dust); }

.figma-input:focus, .modern-input:focus, .search-input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: rgba(20,20,19,0.08) 0px 0px 0px 4px;
}

.helper-text { font-size: 0.8rem; color: var(--slate); margin-top: 0.4rem; }

/* ── Alerts ── */
.alert-error, .alert-success, .alert-info, .alert {
  border-radius: var(--r-btn);
  padding: 0.875rem 1.25rem;
  border: 1.5px solid transparent;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.alert-error  { background: #FFF4F0; color: var(--clay);     border-color: rgba(207,69,0,0.18); }
.alert-success{ background: #F0FDF6; color: #1A5E38;         border-color: rgba(26,94,56,0.16); }
.alert-info   { background: #F0F5FF; color: var(--link-blue); border-color: rgba(56,96,190,0.16); }

/* ── Hero ── */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 3rem 0 2rem;
}

.hero-copy, .hero-panel, .auth-panel, .dashboard-panel, .add-auth-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}

.hero-copy p, .section-lead, .auth-subheading, .muted-text, .page-subtitle {
  color: var(--slate);
  line-height: 1.65;
  font-weight: 400;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.metric-card {
  background: var(--white);
  border: 1px solid rgba(20,20,19,0.07);
  border-radius: 20px;
  padding: 1.1rem;
  box-shadow: rgba(20,20,19,0.04) 0px 8px 24px;
}

.metric-card strong { display: block; font-size: 1.1rem; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.metric-card span   { color: var(--slate); font-size: 0.88rem; }

/* Device preview */
.device-preview { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; }

.device-preview__shell {
  border-radius: 28px;
  padding: 1rem;
  background: var(--canvas);
  border: 1px solid rgba(20,20,19,0.06);
  box-shadow: var(--shadow-card);
}

.device-preview__top {
  background: var(--white);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.device-preview__list { display: flex; flex-direction: column; gap: 0.6rem; }

.mini-auth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(20,20,19,0.06);
}

.mini-auth__meta strong { color: var(--ink); font-weight: 500; font-size: 0.9rem; }
.mini-auth__meta p      { color: var(--slate); font-size: 0.8rem; margin-top: 0.2rem; }
.mini-auth__code        { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.08em; color: var(--ink); }

/* ── Sections ── */
.landing-section { padding: 1.5rem 0 0; }
.section-block   { padding: clamp(1.5rem, 3vw, 2.5rem); }

.section-grid-3, .features-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.section-grid-2, .steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card-light, .info-card {
  background: var(--white);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: rgba(20,20,19,0.04) 0px 8px 24px;
  transition: box-shadow var(--ease), transform var(--ease);
}

.feature-card-light:hover, .info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.feature-card-light h3, .info-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.feature-card-light p,  .info-card p  { color: var(--slate); font-size: 0.92rem; line-height: 1.65; }

.feature-icon-light, .benefit-bullet, .step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(20,20,19,0.08);
}

.step-number { border-radius: 14px; font-size: 1rem; }

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--r-card);
  box-shadow: rgba(20,20,19,0.22) 0px 24px 60px;
}

.cta-banner .eyebrow         { color: rgba(243,240,238,0.6); }
.cta-banner .eyebrow::before { background: var(--orange-light); }
.cta-banner h2               { color: var(--canvas); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0.75rem 0; }
.cta-banner p, .cta-banner .muted-text { color: rgba(243,240,238,0.7); }

.cta-banner .button--secondary {
  background: var(--canvas);
  color: var(--ink);
  border-color: transparent;
}

.cta-banner .button--ghost {
  border-color: rgba(243,240,238,0.3);
  color: var(--canvas);
}

.cta-banner .button--ghost:hover {
  background: rgba(243,240,238,0.1);
  border-color: rgba(243,240,238,0.55);
}

/* ── Auth Pages ── */
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background: var(--canvas);
}

.auth-layout {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: 1.5rem;
}

.auth-showcase, .auth-panel { min-height: 620px; }

.auth-showcase {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--canvas);
  border-radius: var(--r-card);
  box-shadow: rgba(20,20,19,0.25) 0px 32px 80px;
}

.auth-showcase .brand-mark__title    { color: var(--canvas); }
.auth-showcase .brand-mark__subtitle { color: rgba(243,240,238,0.65); }
.auth-showcase .eyebrow              { color: rgba(243,240,238,0.6); margin-top: 2rem; }
.auth-showcase .eyebrow::before      { background: var(--orange-light); }

.auth-heading {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.75rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.auth-showcase .auth-heading { color: var(--canvas); }
.auth-subheading { color: rgba(243,240,238,0.7); line-height: 1.65; }

.auth-showcase .info-card {
  background: rgba(243,240,238,0.08);
  border-color: rgba(243,240,238,0.1);
  box-shadow: none;
}
.auth-showcase .info-card h3 { color: var(--canvas); font-size: 1rem; }
.auth-showcase .info-card p  { color: rgba(243,240,238,0.7); font-size: 0.875rem; }

.auth-panel { display: flex; flex-direction: column; justify-content: center; }

/* ── Search ── */
.search-bar-container {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 0 0.5rem 0 1.25rem;
  min-height: 56px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1.5px solid rgba(20,20,19,0.12);
  box-shadow: rgba(20,20,19,0.04) 0px 4px 16px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.search-bar:focus-within { border-color: var(--ink); box-shadow: rgba(20,20,19,0.1) 0px 0px 0px 4px; }

.search-bar .search-input {
  min-height: auto; padding: 0; border: none;
  background: transparent; box-shadow: none; border-radius: 0;
}

.search-bar .search-input:focus { border: none; box-shadow: none; background: transparent; outline: none; }

.search-icon { width: 18px; height: 18px; opacity: 0.45; flex-shrink: 0; }

.clear-search {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: transparent; border: none; color: var(--slate);
  font-size: 1rem; display: inline-flex; align-items: center;
  justify-content: center; transition: background var(--ease);
}

.clear-search:hover { background: rgba(20,20,19,0.06); }
.clear-search.hidden { display: none; }

/* ── Dashboard ── */
.dashboard-shell { padding: 2rem 0 3rem; }

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin: 1rem 0 1.5rem;
}

.dashboard-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; margin: 0 0 0.5rem; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.mini-stat, .auth-card {
  background: var(--white);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: 20px;
  box-shadow: rgba(20,20,19,0.04) 0px 8px 24px;
}

.mini-stat { padding: 1.1rem 1.25rem; }
.mini-stat strong { display: block; font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 0.2rem; }
.mini-stat span   { color: var(--slate); font-size: 0.88rem; }

.dashboard-toolbar {
  padding: 0.875rem 1.25rem;
  background: var(--canvas-lifted);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: 24px;
  box-shadow: rgba(20,20,19,0.04) 0px 8px 24px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.dashboard-list {
  background: var(--canvas-lifted);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: var(--r-card);
  box-shadow: rgba(20,20,19,0.04) 0px 8px 24px;
  padding: 1.25rem;
}

.dashboard-list #auth-list { display: flex; flex-direction: column; gap: 0.85rem; }

.auth-item-figma, .auth-card {
  background: var(--white);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: 20px;
  padding: 1.25rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.auth-card--interactive { cursor: pointer; position: relative; }

.auth-item-figma:hover, .auth-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20,20,19,0.14);
  box-shadow: var(--shadow-card);
}

.auth-card--interactive::after {
  content: 'Copied';
  position: absolute; top: 1rem; right: 4rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
  background: rgba(20,20,19,0.08);
  color: var(--ink);
  font-size: 0.78rem; font-weight: 600;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.auth-card--copied { border-color: rgba(207,69,0,0.2); box-shadow: rgba(207,69,0,0.08) 0px 8px 24px; }
.auth-card--copied::after { opacity: 1; transform: translateY(0); }

.auth-card__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.auth-card__row > div:first-child { flex: 1; }

.auth-card__actions {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 0.75rem; align-self: stretch;
}

.service-name { font-size: 1.1rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); margin: 0; }

.figma-code, .auth-card__code {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.auth-card__meta  { color: var(--slate); font-size: 0.875rem; }
.auth-card__title { color: var(--ink); font-weight: 500; }

.indicator-dot { width: 10px; height: 10px; background: var(--orange-light); border-radius: 50%; flex-shrink: 0; }

/* Timer circle */
.timer-circle-wrapper { width: 40px; height: 40px; }
.timer-circle { width: 40px; height: 40px; transform: rotate(-90deg); }
.timer-circle-bg { fill: none; stroke: rgba(20,20,19,0.08); stroke-width: 3; }
.timer-circle-progress { fill: none; stroke: var(--orange-light); stroke-width: 3; stroke-dasharray: 100; stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; stroke-linecap: round; }

.card-menu-btn {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(20,20,19,0.1); background: var(--canvas);
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; cursor: pointer;
  transition: transform var(--ease), border-color var(--ease);
}
.card-menu-btn:hover { transform: translateY(-1px); border-color: rgba(20,20,19,0.22); background: var(--white); }
.card-menu-btn span  { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--slate); }

.icon-button {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(20,20,19,0.1); background: var(--canvas);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform var(--ease), border-color var(--ease);
}
.icon-button:hover { transform: translateY(-1px); border-color: rgba(207,69,0,0.25); }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 3.5rem 1.5rem; }

.empty-state__icon {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--canvas); border: 1.5px solid rgba(20,20,19,0.08);
  display: grid; place-items: center; font-size: 2rem;
}

.tip-text { color: var(--slate); font-size: 0.9rem; margin-top: 1rem; }

/* ── Import ── */
.import-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 1.25rem; align-items: start;
}

.import-panel, .import-sidebar, .import-results {
  background: var(--canvas-lifted);
  border: 1px solid rgba(20,20,19,0.06);
  border-radius: var(--r-card);
  box-shadow: rgba(20,20,19,0.04) 0px 8px 24px;
  padding: 1.5rem;
}

.import-method-switch { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
.import-method-button { min-height: 56px; }

.import-method-button.is-inactive { background: var(--white); color: var(--slate); border-color: rgba(20,20,19,0.12); box-shadow: none; }
.import-method-button.is-inactive:hover { background: var(--canvas); color: var(--ink); }

.import-instructions, .import-results__summary, .scanned-accounts-shell {
  background: var(--canvas); border: 1px solid rgba(20,20,19,0.07); border-radius: 20px; padding: 1rem 1.25rem;
}

.import-instructions h4, .import-results__summary strong, .scanned-account__title { color: var(--ink); }
.import-instructions ol, .import-instructions p, .scanned-account__meta, .import-results__summary span { color: var(--slate); }

.scanned-account-list { display: flex; flex-direction: column; gap: 0.65rem; }

.scanned-account {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.875rem 1rem; border-radius: 16px;
  background: var(--white); border: 1px solid rgba(20,20,19,0.07);
}

.scanned-account__meta { font-size: 0.875rem; color: var(--slate); }
.import-textarea { min-height: 220px; resize: vertical; }

.import-results__list { display: flex; flex-direction: column; gap: 0.6rem; max-height: 320px; overflow-y: auto; }

.import-result-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.8rem 1rem; border-radius: 16px;
  background: var(--white); border: 1px solid rgba(20,20,19,0.07);
}

.import-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 110px; padding: 0.4rem 0.75rem;
  border-radius: var(--r-pill); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
}

.import-badge--success   { background: rgba(26,94,56,0.1);  color: #1A5E38; }
.import-badge--duplicate { background: rgba(154,58,10,0.1); color: var(--clay); }
.import-badge--error     { background: rgba(207,69,0,0.1);  color: var(--clay); }

.sidebar-step-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1rem; }
.sidebar-step { display: flex; gap: 0.85rem; align-items: flex-start; }

.sidebar-step__num {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--canvas); border: 1px solid rgba(20,20,19,0.1);
  color: var(--ink); font-weight: 700; font-size: 0.85rem;
}

/* ── QR Modal ── */
.qr-modal { background: rgba(20,20,19,0.2); backdrop-filter: blur(12px); }

.scanner-modal-card, .auth-card-compact, .dashboard-overview {
  background: var(--canvas-lifted);
  border: 1px solid rgba(20,20,19,0.07);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}

/* ── Footer (new ink-black design) ── */
.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  padding: 4rem var(--gutter) 3rem;
}

.site-footer__card {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-width));
  margin: 0 auto;
}

.site-footer__headline {
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.15;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(243,240,238,0.12);
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer__col-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
}

.site-footer__col p {
  font-size: 0.875rem;
  color: rgba(243,240,238,0.65);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(243,240,238,0.75);
  text-decoration: none;
  transition: color var(--ease);
}

.site-footer__links a:hover { color: var(--canvas); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(243,240,238,0.1);
  padding-top: 1.5rem;
}

.site-footer__bottom p { font-size: 0.8rem; color: rgba(243,240,238,0.45); }

/* Legacy row for non-index pages */
.site-footer__row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}

/* ── Misc legacy overrides ── */
.code-display {
  background: var(--canvas);
  border: 2px solid rgba(20,20,19,0.12);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-align: center;
  transition: box-shadow var(--ease);
}

.code-display:hover { box-shadow: var(--shadow-card); }

.timer-bar { height: 3px; background: rgba(20,20,19,0.08); border-radius: 2px; overflow: hidden; margin-top: 8px; }
.timer-progress { height: 100%; background: var(--orange-light); transition: width 1s linear; border-radius: 2px; }

.spinner { border: 3px solid rgba(20,20,19,0.1); border-top-color: var(--ink); border-radius: 50%; width: 36px; height: 36px; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.fade-in { animation: fadeIn 0.4s ease-out both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { background: rgba(20,20,19,0.18); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(20,20,19,0.32); }

*:focus-visible { outline: 2px solid var(--orange-light); outline-offset: 2px; }

/* Legacy nav resets */
.top-nav, .nav-container, .nav-desktop-buttons, .nav-icon-btn { all: unset; }
.glass-card { border-color: rgba(20,20,19,0.07); }

.page-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 2rem;
}

.no-select { user-select: none; -webkit-user-select: none; }
.scrollbar-hidden { scrollbar-width: none; -ms-overflow-style: none; }
.scrollbar-hidden::-webkit-scrollbar { display: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .auth-layout, .import-layout,
  .section-grid-3, .features-grid, .benefits-grid,
  .section-grid-2, .steps-grid,
  .dashboard-hero, .dashboard-stats, .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__grid { gap: 1.5rem; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-showcase { min-height: auto; }
}

@media (max-width: 768px) {
  .site-nav, .site-actions { display: none; }

  .nav-hamburger { display: flex; flex-direction: column; justify-content: center; }

  .site-header__inner { flex-direction: row; align-items: center; justify-content: space-between; }

  .hero-grid { padding-top: 1.5rem; }

  .site-footer__row, .dashboard-toolbar, .search-bar-container {
    flex-direction: column; align-items: stretch;
  }

  .hero-metrics { grid-template-columns: 1fr; }

  .dashboard-shell { display: flex; flex-direction: column; }
  .dashboard-toolbar { order: 1; }
  .dashboard-list    { order: 2; }
  .dashboard-hero    { order: 3; margin-top: 2rem; }
  .dashboard-stats   { order: 4; }
  .tip-text          { order: 5; }

  .figma-code { font-size: 1.8rem; }
}

@media (max-width: 640px) {
  :root { --gutter: 0.75rem; }

  .site-header__inner { min-height: 60px; padding: 0 1rem; }
  .brand-mark__title    { font-size: 0.95rem; }
  .brand-mark__subtitle { font-size: 0.7rem; }

  .surface, .glass-card, .modern-card, .section-block, .hero-copy, .hero-panel,
  .auth-panel, .add-auth-panel, .dashboard-list, .dashboard-toolbar,
  .cta-banner, .import-panel, .import-sidebar { border-radius: 24px; }

  .site-actions, .hero-actions, .stack-actions {
    flex-direction: column; align-items: stretch; width: 100%;
  }

  .site-actions .button, .hero-actions .button, .stack-actions .button {
    width: 100%; justify-content: center;
  }

  .hero-copy h1 { font-size: clamp(1.9rem, 9vw, 2.5rem); }

  .site-footer { padding: 2.5rem 1rem 2rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__headline { font-size: 1.6rem; margin-bottom: 2rem; }

  .dashboard-shell { padding: 1rem 0 2rem; }

  .auth-item-figma, .auth-card { padding: 1rem; border-radius: 16px; }
  .figma-code, .auth-card__code { font-size: 1.65rem; }
  .mini-auth { padding: 0.75rem 0.875rem; }
}

@media (max-width: 480px) {
  .button, .figma-btn, .figma-btn-scan, .figma-btn-camera, .figma-btn-cancel, .action-btn {
    min-height: 52px; padding: 0.875rem 1.25rem;
  }
  .site-footer__grid { grid-template-columns: 1fr; }
  .eyebrow { font-size: 0.75rem; }
}

/* ============================================================
   LANDING PAGE REBUILD — Mastercard Editorial System
   iAuthIQ homepage specific styles  /  prefix: lp-
   ============================================================ */

/* ── Section scaffolding ── */
.lp-section { padding: 5rem 0; }
.lp-section + .lp-section { padding-top: 0; }

.lp-section--lifted {
  background: var(--canvas-lifted);
  border-radius: var(--r-card);
  padding: 4rem clamp(1.5rem, 4vw, 3.5rem);
  margin: 1.5rem 0;
}

.lp-section__head { margin-bottom: 3.5rem; }

.lp-section__head h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0.75rem 0 0;
}

.lp-section__sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Hero ── */
.lp-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.lp-hero__h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 1.25rem;
}

.lp-hero__lead {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2rem;
}

.lp-hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.lp-trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.lp-trust-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange-light);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

/* ── Device mockup ── */
.lp-device {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(20,20,19,0.07);
}

.lp-device__bar {
  background: var(--canvas);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(20,20,19,0.06);
}

.lp-device__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dust);
  flex-shrink: 0;
  display: inline-block;
}

.lp-device__dot:nth-child(1) { background: #FF6058; }
.lp-device__dot:nth-child(2) { background: #FFBD2E; }
.lp-device__dot:nth-child(3) { background: #28C840; }

.lp-device__url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate);
  background: rgba(20,20,19,0.06);
  padding: 0.25rem 1rem;
  border-radius: 999px;
}

.lp-device__body { padding: 1rem; }

.lp-device__search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--canvas);
  border: 1px solid rgba(20,20,19,0.08);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  margin-bottom: 0.85rem;
  color: var(--slate);
  font-size: 0.85rem;
}

.lp-device__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.lp-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--canvas);
  border-radius: 20px;
  gap: 1rem;
  border: 1px solid rgba(20,20,19,0.05);
}

.lp-auth-row__service strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 0.15rem;
}

.lp-auth-row__service span { font-size: 0.75rem; color: var(--slate); }

.lp-auth-row__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lp-auth-code {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  white-space: nowrap;
}

.lp-device__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem;
  background: var(--ink);
  color: var(--canvas);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--ease);
}

.lp-device__cta:hover { background: var(--charcoal); }

/* ── Works-with bar ── */
.lp-workswith {
  border-top: 1px solid var(--dust);
  border-bottom: 1px solid var(--dust);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.lp-workswith::-webkit-scrollbar { display: none; }

.lp-workswith__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dust);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-workswith__list { display: flex; gap: 2rem; align-items: center; }

.lp-workswith__list span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}

.lp-workswith__list span:last-child { color: var(--dust); font-size: 0.82rem; }

/* ── Feature grid ── */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-fc {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(20,20,19,0.06) 0px 8px 32px;
  transition: box-shadow var(--ease), transform var(--ease);
}

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

.lp-fc__num {
  position: absolute;
  top: -0.5rem;
  right: 0.75rem;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(20,20,19,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.lp-fc__icon {
  width: 48px;
  height: 48px;
  background: var(--canvas);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ink);
  flex-shrink: 0;
}

.lp-fc h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.lp-fc p  { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }

/* ── How it works steps ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-step {
  padding: 2.5rem 2rem 2rem;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: rgba(20,20,19,0.06) 0px 8px 32px;
  overflow: hidden;
  position: relative;
}

.lp-step__num {
  display: block;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(20,20,19,0.05);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
}

.lp-step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.lp-step p  { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

/* ── Comparison grid ── */
.lp-compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.lp-compare-card {
  padding: 2.5rem 2rem;
  border-radius: var(--r-card);
  background: var(--white);
  box-shadow: rgba(20,20,19,0.06) 0px 8px 32px;
}

.lp-compare-card--primary {
  background: var(--ink);
  box-shadow: rgba(20,20,19,0.28) 0px 24px 64px;
}

.lp-compare-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
  display: block;
}

.lp-compare-card--primary .lp-compare-card__tag { color: rgba(243,240,238,0.4); }

.lp-compare-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.lp-compare-card--primary h3 { color: var(--canvas); }

.lp-compare-card > p  { font-size: 0.9rem; color: var(--slate); line-height: 1.6; margin-bottom: 1.5rem; }
.lp-compare-card--primary > p { color: rgba(243,240,238,0.65); }

.lp-compare-list { list-style: none; padding: 0; margin: 0; }

.lp-compare-list li {
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(20,20,19,0.07);
  display: flex;
  gap: 0.6rem;
  color: var(--charcoal);
  line-height: 1.45;
}

.lp-compare-list li::before { content: '\2713'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.lp-compare-card--primary .lp-compare-list li { border-top-color: rgba(243,240,238,0.1); color: rgba(243,240,238,0.82); }
.lp-compare-card--primary .lp-compare-list li::before { color: var(--orange-light); }

/* ── FAQ ── */
.lp-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.lp-faq-item {
  padding: 1.75rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: rgba(20,20,19,0.04) 0px 4px 16px;
}

.lp-faq-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.lp-faq-item p  { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }

/* ── CTA banner ── */
.lp-outer-pad { padding: 2.5rem 0; }

.lp-cta {
  background: var(--ink);
  border-radius: var(--r-card);
  padding: 5rem 4rem;
  text-align: center;
}

.lp-cta h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--canvas);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.lp-cta > p {
  color: rgba(243,240,238,0.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lp-cta__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.lp-cta .button--secondary { background: var(--canvas); border-color: transparent; color: var(--ink); }
.lp-cta .button--ghost     { border-color: rgba(243,240,238,0.3); color: var(--canvas); }
.lp-cta .button--ghost:hover { background: rgba(243,240,238,0.1); border-color: rgba(243,240,238,0.55); }

/* ── LLM entity block ── */
.lp-entity {
  background: var(--canvas-lifted);
  border-radius: var(--r-card);
  padding: 3.5rem;
  margin: 2rem 0;
  text-align: center;
}

.lp-entity h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }

.lp-entity__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.lp-tag {
  background: var(--canvas);
  color: var(--ink);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(20,20,19,0.1);
}

/* ── Landing page responsive ── */
@media (max-width: 1024px) {
  .lp-feature-grid { grid-template-columns: 1fr 1fr; }
  .lp-steps        { grid-template-columns: 1fr 1fr; }
  .lp-compare      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lp-hero         { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0 2.5rem; }
  .lp-hero__h1     { font-size: 2.6rem; }
  .lp-feature-grid,
  .lp-steps,
  .lp-faq          { grid-template-columns: 1fr; }
  .lp-section      { padding: 2.5rem 0; }
  .lp-section--lifted { padding: 2rem 1.25rem; }
  .lp-cta          { padding: 2.5rem 1.5rem; }
  .lp-entity       { padding: 2rem 1.25rem; }
  .lp-workswith    { gap: 1.5rem; padding: 1.25rem 0; }
}
