/* ============================================================
   InvoiceFlo Landing Page
   Dark luxury · Gold accents · Playfair Display + DM Sans
   ============================================================ */

:root {
  --bg:           #0A0908;
  --bg-2:         #111010;
  --bg-3:         #181614;
  --surface:      #1E1B18;
  --surface-2:    #252220;
  --border:       rgba(255,255,255,0.08);
  --border-gold:  rgba(201,168,76,0.30);

  --gold:         #C9A84C;
  --gold-light:   #E8C76A;
  --gold-dark:    #A07B2E;
  --gold-glow:    rgba(201,168,76,0.18);

  --text:         #F0ECE4;
  --text-2:       #B8B0A4;
  --text-3:       #7A746E;
  --text-4:       #4A4540;

  --green:        #34C759;
  --green-bg:     rgba(52,199,89,0.12);
  --red:          #FF453A;
  --red-bg:       rgba(255,69,58,0.12);
  --blue:         #0A84FF;
  --blue-bg:      rgba(10,132,255,0.12);
  --teal:         #5AC8FA;
  --teal-bg:      rgba(90,200,250,0.12);
  --amber:        #FF9F0A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:        1140px;
  --t:            220ms ease;
  --t-spring:     360ms cubic-bezier(0.34,1.56,0.64,1);

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 { font-family: var(--font-display); color: var(--text); line-height: 1.15; font-weight: 600; }

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

h1 em, h2 em { font-style: italic; color: var(--gold); }

p { color: var(--text-2); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  border-color: var(--border);
  box-shadow: 0 1px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-icon {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  transition: color var(--t);
  text-decoration: none;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  margin-left: auto;
  padding: 8px 18px;
  background: var(--gold);
  color: #0A0908;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold-light); color: #0A0908; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 148px 0 80px;
  overflow: hidden;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--bg);
}

.hero-glow {
  position: absolute;
  top: -200px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
  background: rgba(201,168,76,0.06);
}

.hero h1 { margin-bottom: 24px; }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.badge-link { display: inline-block; flex-shrink: 0; transition: opacity var(--t); }
.badge-link:hover { opacity: 0.85; }
.store-badge { height: 46px; width: auto; }

.hero-free-note {
  font-size: 13px;
  color: var(--text-3);
}

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-phone-wrap {
  position: relative;
  display: inline-block;
}

.hero-phone-img {
  width: 260px;
  border-radius: 36px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(201,168,76,0.12);
  transition: transform 0.5s ease;
}
.hero-phone-wrap:hover .hero-phone-img { transform: translateY(-4px); }

.hero-float {
  position: absolute;
  background: rgba(30,27,24,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
  animation: floatBob 4s ease-in-out infinite;
}
.hero-float > div:last-child .float-label { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.2; }
.hero-float > div:last-child .float-sub   { font-size: 11px; color: var(--text-3); }
.float-amount { color: var(--green) !important; font-weight: 700 !important; }

.float-1 { top: 40px; left: -100px; animation-delay: 0s; }
.float-2 { bottom: 80px; right: -90px; animation-delay: 1.5s; }

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

.float-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.paid-dot {
  background: var(--green-bg);
  position: relative;
}
.paid-dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  box-shadow: 0 0 8px var(--green);
}
.revenue-icon {
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 15px;
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-3);
}
.strip-items .dot { color: var(--text-4); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-2); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.bento-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.08), 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.bento-card:hover::before { opacity: 1; }

.bento-card.wide { grid-column: span 2; }

.bento-badge {
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1;
}
.bento-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.bento-card p { font-size: 0.92rem; line-height: 1.65; color: var(--text-3); }
.bento-card p em { color: var(--gold); font-style: italic; }

/* NL demo */
.nl-demo { margin-top: 20px; }
.nl-input {
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 8px;
}
.nl-cursor::after {
  content: '|';
  color: var(--gold);
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.nl-arrow { text-align: center; color: var(--gold); font-size: 18px; margin: 4px 0; }
.nl-result {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nl-row { display: flex; justify-content: space-between; font-size: 12px; }
.nl-key { color: var(--text-4); }
.nl-val { color: var(--text-2); font-weight: 500; }
.nl-val.gold { color: var(--gold); }

/* Status pills */
.status-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.pill.draft  { background: var(--surface-2); color: var(--text-3); border: 1px solid var(--border); }
.pill.sent   { background: var(--blue-bg);   color: var(--blue); }
.pill.viewed { background: var(--teal-bg);   color: var(--teal); }
.pill.paid   { background: var(--green-bg);  color: var(--green); }
.pill-arrow  { color: var(--text-4); font-size: 13px; }

/* Currency strip */
.currency-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.currency-chip {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  gap: 5px;
}
.currency-chip span { color: var(--gold); font-weight: 600; }

/* ============================================================
   iOS CAROUSEL
   ============================================================ */
.carousel-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 48px;
}

.carousel-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.carousel-notepad {
  max-width: 500px;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.carousel-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 16px;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--surface-2); border-color: var(--border-gold); color: var(--gold); }

.carousel-dots { display: flex; gap: 6px; }
.cdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-4);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.cdot.active { background: var(--gold); transform: scale(1.3); }

.carousel-slides { position: relative; min-height: 260px; }
.cslide { display: none; animation: fadeSlide 0.3s ease; }
.cslide.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.cslide h2 { font-size: 2rem; margin-bottom: 8px; }
.slide-sub { font-size: 1rem; color: var(--gold); margin-bottom: 16px; font-style: italic; }
.slide-body { font-size: 0.95rem; line-height: 1.7; color: var(--text-2); }
.slide-body em { color: var(--gold); font-style: normal; font-weight: 600; }

.carousel-phone-wrap { flex-shrink: 0; }
.carousel-phone-img {
  width: 260px;
  border-radius: 36px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(201,168,76,0.10);
  transition: opacity 0.2s ease;
}

/* ============================================================
   MAC SECTION
   ============================================================ */
.mac-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
}
.mac-tab {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  font-family: var(--font-body);
}
.mac-tab:hover { border-color: var(--border-gold); color: var(--text-2); }
.mac-tab.active { background: var(--gold); border-color: var(--gold); color: #0A0908; font-weight: 600; }

.mac-screen-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.mac-screen-img {
  width: 100%;
  display: block;
  transition: opacity 0.16s ease;
}
.mac-screen-img.fade-out { opacity: 0; }

/* ============================================================
   PRIVACY SECTION
   ============================================================ */
.privacy-section { padding: 80px 0; }

.privacy-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-stag {
  width: 160px;
  flex-shrink: 0;
  opacity: 0.90;
}
.privacy-stag img {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.20));
}

.privacy-copy h2 { font-size: 2rem; margin-bottom: 16px; }
.privacy-copy p { font-size: 0.97rem; color: var(--text-2); margin-bottom: 24px; line-height: 1.7; }

.privacy-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.privacy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card--pro {
  background: linear-gradient(160deg, rgba(201,168,76,0.12) 0%, var(--surface) 50%);
  border-color: var(--border-gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.10), 0 24px 60px rgba(0,0,0,0.3);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0908;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-big { font-size: 2rem; font-weight: 700; font-family: var(--font-display); color: var(--text); }
.price-period { font-size: 14px; color: var(--text-3); }

.pricing-seats { font-size: 13px; color: var(--text-3); padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 28px; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pricing-card--pro .pricing-features li::before { color: var(--gold-light); }

.pricing-btn { display: block; text-align: center; border-radius: var(--radius-md); transition: transform var(--t), box-shadow var(--t); }
.pricing-btn:hover { transform: translateY(-2px); text-decoration: none; }

.pricing-btn-outline { padding: 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.pricing-btn-outline:hover { border-color: var(--border-gold); }
.pricing-badge-img { height: 44px; width: auto; margin: 0 auto; }

.pricing-btn-gold {
  background: var(--gold);
  color: #0A0908;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.pricing-btn-gold:hover { background: var(--gold-light); box-shadow: 0 12px 36px rgba(201,168,76,0.4); color: #0A0908; }

.pricing-footnote { text-align: center; font-size: 13px; color: var(--text-4); margin-top: 24px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(160deg, rgba(201,168,76,0.08) 0%, transparent 60%), var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-stag { width: 90px; height: 90px; opacity: 0.88; }
.cta-stag img { width: 90px; height: 90px; filter: drop-shadow(0 0 24px rgba(201,168,76,0.25)); }

.cta-inner h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); max-width: 520px; }
.cta-inner p { font-size: 1.05rem; color: var(--text-2); max-width: 480px; }

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo:hover { color: var(--gold-light); }
.footer-logo img { width: 28px; height: 28px; }

.footer-tagline { font-size: 14px; color: var(--text-3); line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-3); transition: color var(--t); text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-badges { justify-content: center; }
  .float-1 { left: -60px; }
  .float-2 { right: -60px; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }

  .carousel-body { grid-template-columns: 1fr; gap: 40px; }
  .carousel-phone-wrap { display: flex; justify-content: center; }
  .carousel-notepad { max-width: 100%; }

  .privacy-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .privacy-stag { margin: 0 auto; }
  .privacy-list { align-items: flex-start; text-align: left; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }

  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }

  .pricing-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .strip-items .dot { display: none; }
  .strip-items { gap: 4px 12px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

