/* ═══════════════════════════════════════════════════════════════
   DEVFLOW  ·  Design System  ·  Plane.so Light Theme
   ════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Backgrounds — clean white like Plane */
  --bg:           #ffffff;       /* page base */
  --bg-raised:    #f8f9fb;       /* cards, panels */
  --bg-surface:   #f1f2f5;       /* inputs, table rows */
  --bg-overlay:   #e8eaef;       /* hover states, overlays */
  --bg-muted:     #f0f1f4;       /* muted chip backgrounds */

  /* Borders — very subtle grey */
  --border:       rgba(0,0,0,0.07);
  --border-med:   rgba(0,0,0,0.11);
  --border-hi:    rgba(0,0,0,0.19);
  --border-focus: rgba(59,102,246,0.4);

  /* Text */
  --ink:          #0d0e12;
  --ink-muted:    #4b5268;
  --ink-faint:    #9099b0;

  /* Accent — Plane indigo-blue */
  --accent:       #3b6cf6;
  --accent-hi:    #2856d6;
  --accent-soft:  rgba(59,102,246,0.08);
  --accent-glow:  rgba(59,102,246,0.20);

  /* Status */
  --green:        #16a34a;
  --green-soft:   rgba(22,163,74,0.09);
  --amber:        #d97706;
  --amber-soft:   rgba(217,119,6,0.09);
  --red:          #dc2626;
  --red-soft:     rgba(220,38,38,0.09);
  --white:        #ffffff;

  /* Shadows — light-mode appropriate */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.07);
  --shadow-xl:    0 24px 64px rgba(0,0,0,0.14);
  --shadow-glow:  0 0 0 1px rgba(59,102,246,0.18), 0 4px 20px rgba(59,102,246,0.12);

  /* Radii */
  --radius-xs:    4px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --radius-2xl:   28px;
  --radius-full:  9999px;

  /* Layout */
  --max-w:        1180px;
  --header-h:     60px;

  /* Easing */
  --ease-out:   cubic-bezier(0.16,1,0.3,1);
  --ease-io:    cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ─── TYPE SCALE ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.0;
  color: var(--ink);
}
h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}
h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}
h4 { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
p  { color: var(--ink-muted); line-height: 1.72; }

/* ─── ACCESSIBILITY ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.65rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 180ms;
}
.skip-link:focus-visible { top: 1rem; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BANNER  —  thin strip above header (Plane-style)
   ════════════════════════════════════════════════════════════ */
.announce-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #eff4ff;
  border-bottom: 1px solid rgba(59,102,246,0.15);
  font-size: 0.8rem;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announce-bar a { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; transition: color 150ms; }
.announce-bar a:hover { color: var(--accent-hi); }
.announce-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.announce-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  color: var(--ink-faint);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 150ms, background 150ms;
  font-size: 1rem;
  line-height: 1;
}
.announce-close:hover { color: var(--ink); background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVBAR  — Floating Liquid Glass
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  height: var(--header-h);
  width: calc(100% - 2rem);
  max-width: var(--max-w);
  margin-inline: auto;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  padding-inline: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 300ms, background 300ms, border-color 300ms;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* no banner pages */
body:not(.has-banner) .site-header { top: 1rem; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* ── Brand ───────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  flex-shrink: 0;
  transition: opacity 150ms;
}
.brand:hover { opacity: 0.85; }
.brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ── Primary Nav ─────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 140ms, background 140ms;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.is-current {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}
.nav-link.is-current { color: var(--accent); }

/* chevron on dropdown triggers */
.nav-chevron {
  width: 12px;
  height: 12px;
  color: var(--ink-faint);
  transition: transform 220ms var(--ease-out), color 140ms;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
  color: var(--ink-muted);
}

/* ── Dropdown mega-menu ──────────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--bg-raised);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  padding: 0.4rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out), visibility 180ms;
  pointer-events: none;
  z-index: 40;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* dropdown arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--bg-raised);
  border-left: 1px solid var(--border-med);
  border-top: 1px solid var(--border-med);
  rotate: 45deg;
}

/* Mega Menu Modifiers */
.nav-dropdown.mega-menu {
  display: flex;
  flex-direction: row;
  min-width: 580px;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
}
.mega-dropdown-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mega-dropdown-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin: 0.3rem 0.5rem 0.6rem;
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  font-size: 0.85rem;
  transition: background 140ms, color 140ms;
}
.dropdown-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--accent);
}
.dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.dropdown-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.12rem;
}
.dropdown-text span {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-faint);
  line-height: 1.4;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.3rem 0.75rem;
}

/* ── Header Actions ──────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ── Hamburger ───────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-med);
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  transition: color 140ms, border-color 140ms, background 140ms;
  flex-shrink: 0;
}
.nav-toggle:hover {
  color: var(--ink);
  border-color: var(--border-hi);
  background: rgba(0, 0, 0, 0.04);
}

/* Mobile nav fullscreen overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 49;
  overflow-y: auto;
  padding: 1rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
}
.mobile-nav-overlay.is-open { display: block; }

.mobile-nav-links {
  display: grid;
  gap: 0;
  margin-bottom: 1.5rem;
}
.mobile-nav-links > a,
.mobile-nav-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 140ms;
  cursor: pointer;
  list-style: none; /* removes native details arrow */
}
.mobile-nav-summary::-webkit-details-marker { display: none; }
.mobile-nav-links > a:hover,
.mobile-nav-links > a.is-current,
.mobile-nav-summary:hover { color: var(--ink); }
.mobile-nav-links > a:last-child { border-bottom: none; }

/* Submenu Arrow logic */
.mobile-nav-summary svg {
  transition: transform 200ms;
  width: 14px;
}
.mobile-nav-details[open] .mobile-nav-summary svg {
  transform: rotate(180deg);
}
.mobile-nav-details[open] .mobile-nav-summary { 
  border-bottom-color: transparent; 
  color: var(--ink); 
}

/* Submenu block */
.mobile-nav-details-sub {
  display: grid;
  gap: 0.2rem;
  padding: 0 0.5rem 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-details-sub a {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  transition: color 140ms;
  border: none;
  font-weight: 400;
}
.mobile-nav-details-sub a:hover { color: var(--ink); }

/* Submenu headings */
.mobile-nav-group-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.75rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}
.mobile-nav-actions {
  display: grid;
  gap: 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.store-btn-mobile-cta {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius-md);
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
}
.store-btn-mobile-cta .store-btn-sub  { font-size: 0.55rem; }
.store-btn-mobile-cta .store-btn-name { font-size: 1rem; }
.mobile-nav-pricing-link {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  font-size: 0.9rem;
}
.mobile-nav-actions .btn { justify-content: center; width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 2.25rem;
  padding: 0 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background 160ms,
    border-color 160ms,
    color 160ms;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }

/* primary — Plane uses a filled solid button */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover {
  background: #6a6eff;
  box-shadow: 0 4px 20px rgba(91,95,238,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ghost — subtle border */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-med);
  color: var(--ink-muted);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--border-hi);
  color: var(--ink);
}

/* outline — slight surface fill */
.btn-outline {
  background: var(--bg-surface);
  border: 1px solid var(--border-med);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--bg-overlay);
  border-color: var(--border-hi);
}

/* sizes */
.btn-sm  { height: 1.9rem; padding: 0 0.85rem; font-size: 0.78rem; }
.btn-lg  { height: 2.75rem; padding: 0 1.5rem; font-size: 0.9rem; border-radius: var(--radius-md); }
.btn-xl  { height: 3.25rem; padding: 0 2rem; font-size: 1rem; border-radius: var(--radius-md); }

/* danger */
.btn-danger { background: var(--red); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.btn-danger:hover { background: #f87171; }

/* ── Store Download Badges ────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.3rem;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.store-btn:hover  { transform: translateY(-2px); }
.store-btn:active { transform: scale(0.97); }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-sub {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  opacity: 0.78; line-height: 1; margin-bottom: 2px;
}
.store-btn-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

/* Apple App Store — black */
.store-btn-apple {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.store-btn-apple:hover { background: #111; box-shadow: 0 8px 30px rgba(0,0,0,0.6); color: #fff; }

/* Google Play — white */
.store-btn-google {
  background: #fff;
  color: #1f1f1f;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.store-btn-google:hover { background: #f5f5f5; box-shadow: 0 8px 28px rgba(0,0,0,0.24); color: #1f1f1f; }

/* Dynamic OS logic */
html.os-android .store-btn-apple { display: none !important; }
html.os-ios .store-btn-google { display: none !important; }

/* Sizes */
.store-btn-sm { padding: 0.35rem 0.8rem; border-radius: 8px; gap: 0.45rem; }
.store-btn-sm .store-btn-sub  { font-size: 0.5rem; }
.store-btn-sm .store-btn-name { font-size: 0.8rem; }
.store-btn-lg { padding: 0.9rem 1.8rem; border-radius: 16px; gap: 1rem; }
.store-btn-lg .store-btn-sub  { font-size: 0.65rem; }
.store-btn-lg .store-btn-name { font-size: 1.25rem; }

/* ═══════════════════════════════════════════════════════════════
   BADGES  &  CHIPS
   ════════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border-med);
  border-radius: var(--radius-full);
  background: rgba(91,95,238,0.07);
  color: var(--accent-hi);
  font-size: 0.76rem;
  font-weight: 500;
}
.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

/* ─── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
/* ── Hero orb animations ─────────────────────────────────────── */
@keyframes orb-drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px, 20px) scale(1.08); }
}
@keyframes orb-drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(25px, -18px) scale(1.05); }
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem) 0;
  overflow: hidden;
  text-align: center;
}

/* Layered gradient background — light mode */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 55% at 50% -10%, rgba(59,102,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 10% 90%,  rgba(99,78,246,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 90% 75%,  rgba(59,130,246,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Dot grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Floating glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,102,246,0.12) 0%, transparent 70%);
  top: -120px; left: 50%;
  transform: translateX(-50%);
  animation: orb-drift-a 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(99,78,246,0.08) 0%, transparent 70%);
  bottom: 80px; left: -80px;
  animation: orb-drift-b 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  bottom: 100px; right: -60px;
  animation: orb-drift-a 18s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge { margin-bottom: 1.8rem; }
.hero h1 {
  margin-bottom: 1.3rem;
  text-wrap: balance;
  /* Gradient text for first line */
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-faint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-muted);
  text-wrap: balance;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Key stats row beneath the buttons */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0.85rem 2rem;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.hero-stat { text-align: center; }
.hero-stat-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-val span { color: var(--accent-hi); }
.hero-stat-label {
  font-size: 0.68rem;
  color: var(--ink-faint);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-med);
}

.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  font-size: 0.79rem;
  color: var(--ink-faint);
}
.hero-social-proof span { display: flex; align-items: center; gap: 0.35rem; }
.hero-social-proof .check { color: var(--green); }

/* hero visual */
.hero-visual {
  position: relative;
  margin-top: 4.5rem;
  width: 100%;
  max-width: 920px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 1px solid var(--border-med);
  border-bottom: none;
  background: var(--bg-raised);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(91,95,238,0.08),
    0 -20px 100px rgba(91,95,238,0.06),
    0 40px 120px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* window chrome */
.window-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.window-dot { width: 9px; height: 9px; border-radius: 50%; }
.window-dot:nth-child(1) { background: #ff5f57; }
.window-dot:nth-child(2) { background: #ffbd2e; }
.window-dot:nth-child(3) { background: #28ca40; }
.window-url {
  flex: 1;
  height: 22px;
  border-radius: var(--radius-xs);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  font-size: 0.72rem;
  color: var(--ink-faint);
  max-width: 260px;
  margin: 0 auto;
}

/* app mockup */
.app-mockup {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 400px;
}
.app-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  padding: 0.85rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sidebar-section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 0.65rem 0.5rem 0.35rem;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.55rem;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.sidebar-item:hover { background: rgba(0,0,0,0.04); color: var(--ink); }
.sidebar-item.active { background: var(--accent-soft); color: var(--accent-hi); }
.sidebar-icon {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}
.app-main { padding: 1rem 1.25rem; display: grid; gap: 0.85rem; }
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.1rem;
}
.app-page-title { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.metric-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem; }
.metric-card {
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
}
.metric-label {
  font-size: 0.67rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink-faint); margin-bottom: 0.35rem;
}
.metric-value { font-size: 1.2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.metric-change { font-size: 0.67rem; font-weight: 500; margin-top: 0.2rem; }
.up { color: var(--green); }
.neutral { color: var(--ink-faint); }
.app-project-table {
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.table-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.67rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink-faint);
}
.table-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem; color: var(--ink-muted);
  align-items: center;
  transition: background 120ms;
}
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(0,0,0,0.02); }
.table-name { color: var(--ink); font-weight: 500; font-size: 0.8rem; }
.status-pill {
  display: inline-flex; align-items: center; gap: 0.28rem;
  padding: 0.17rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 500;
}
.status-pill::before { content:''; width:4px; height:4px; border-radius:50%; background:currentColor; }
.status-active  { background: var(--green-soft); color: var(--green); }
.status-pending { background: var(--amber-soft); color: var(--amber); }
.status-review  { background: var(--accent-soft); color: var(--accent-hi); }

/* ─── STATS MARQUEE ──────────────────────────────────────────── */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
  overflow: hidden;
}
.stats-inner {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.stats-inner:hover { animation-play-state: paused; }
.stat-item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.8rem 2.25rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.stat-num { font-size: 0.95rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.stat-lbl { font-size: 0.78rem; color: var(--ink-muted); }

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 3vw, 2rem); }
.section-header { margin-bottom: clamp(2.25rem, 4.5vw, 3.75rem); }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 0.85rem; }
.section-header .sub {
  max-width: 500px;
  font-size: 1rem;
  color: var(--ink-muted);
}
.section-header.centered .sub { margin-inline: auto; }

/* ─── VALUE GRID ─────────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
}
.value-card {
  background: var(--bg-raised);
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  transition: background 200ms;
}
.value-card:hover { background: var(--bg-surface); }
.value-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 1.1rem;
  background: var(--accent-soft);
}
.value-card h3 { font-size: 0.97rem; }
.value-card p  { font-size: 0.85rem; }

/* ─── FEATURE SHOWCASE ───────────────────────────────────────── */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }
.feature-content { display: grid; gap: 1.1rem; }
.feature-content h2 { font-size: clamp(1.65rem, 2.8vw, 2.4rem); }
.feature-content p  { font-size: 0.92rem; max-width: 44ch; }
.feature-list { display: grid; gap: 0.65rem; margin-top: 0.4rem; }
.feature-list-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.87rem; color: var(--ink-muted);
}
.feature-list-item .check-icon {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  flex-shrink: 0; display: grid; place-items: center;
  font-size: 0.6rem; margin-top: 0.12rem;
}
.feature-visual {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-med);
  background: var(--bg-raised);
  overflow: hidden;
  min-height: 300px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(91,95,238,0.06);
}

/* pipeline */
.pipeline-visual { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pipeline-col-labels { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.4rem; }
.pipeline-col-label {
  font-size: 0.67rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint); padding: 0 0.4rem;
}
.pipeline-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.4rem; flex: 1; }
.pipeline-col {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.pipeline-card {
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.45rem 0.5rem;
  cursor: default;
  transition: border-color 140ms;
}
.pipeline-card:hover { border-color: var(--accent); }
.pipeline-card-title { font-weight: 500; color: var(--ink); font-size: 0.74rem; margin-bottom: 0.15rem; }
.pipeline-card-meta  { color: var(--ink-faint); font-size: 0.67rem; }

/* invoice */
.invoice-visual { padding: 1.25rem; display: grid; gap: 0.6rem; }
.invoice-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.15rem;
}
.invoice-title { font-weight: 600; color: var(--ink); font-size: 0.87rem; }
.invoice-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.8rem; color: var(--ink-muted);
  transition: background 120ms;
}
.invoice-row:hover { background: var(--bg-overlay); }
.invoice-row-name { font-weight: 500; color: var(--ink); }

/* analytics */
.analytics-visual { padding: 1.25rem; display: grid; gap: 0.85rem; }
.chart-area { height: 110px; display: flex; align-items: flex-end; gap: 5px; }
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(91,95,238,0.35) 100%);
  animation: bar-grow 1s var(--ease-out) forwards;
  transform-origin: bottom;
  opacity: 0;
}
.chart-labels {
  display: flex; gap: 5px;
  font-size: 0.63rem; color: var(--ink-faint);
  margin-top: 0.2rem;
}
.chart-labels span { flex: 1; text-align: center; }

/* ─── WORKFLOW ───────────────────────────────────────────────── */
.workflow-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.workflow-sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.workflow-sticky h2 { font-size: clamp(1.65rem, 2.8vw, 2.5rem); margin-bottom: 0.85rem; }
.workflow-sticky p  { font-size: 0.92rem; max-width: 40ch; }
.workflow-steps { display: grid; gap: 0; }
.workflow-step {
  display: flex; gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 280ms;
}
.workflow-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(91,95,238,0.18);
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent-hi);
}
.step-body { display: grid; gap: 0.4rem; }
.step-body h3 { font-size: 1rem; }
.step-body p  { font-size: 0.86rem; }

/* ─── AUDIENCE ───────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.85rem;
}
.audience-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  display: grid; gap: 0.65rem; align-content: start;
  transition: border-color 200ms, transform 220ms var(--ease-out), box-shadow 220ms;
}
.audience-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.audience-emoji { font-size: 1.4rem; }
.audience-tag {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.audience-card h3 { font-size: 0.97rem; }
.audience-card p  { font-size: 0.84rem; }

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.85rem;
  align-items: stretch;
}
.pricing-tier {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  display: flex; 
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color 200ms, transform 220ms var(--ease-out);
  position: relative;
}
.pricing-tier:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.pricing-tier.featured {
  border-color: rgba(91,95,238,0.35);
  background: linear-gradient(140deg, var(--bg-raised) 0%, rgba(91,95,238,0.05) 100%);
  box-shadow: var(--shadow-glow);
}
.tier-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.7rem;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
}
.tier-name {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-faint); margin-bottom: 0.4rem;
}
.tier-price {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.tier-price sub   { font-size: 0.95rem; font-weight: 500; color: var(--ink-muted); vertical-align: middle; }
.tier-price small { font-size: 0.84rem; font-weight: 400; color: var(--ink-muted); }
.tier-desc  { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 0.85rem; }
.tier-divider { height: 1px; background: var(--border); margin: 0.65rem 0; }
.tier-features { display: grid; gap: 0.5rem; }
.tier-feature {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.83rem; color: var(--ink-muted);
}
.tier-feature .chk { color: var(--green); font-size: 0.66rem; }
.tier-feature .na  { color: var(--ink-faint); }
.tier-cta, .tier-store-btns { margin-top: auto; width: 100%; padding-top: 0.5rem; }

/* Dual store-btn layout inside a tier */
.tier-store-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tier-store-btns .store-btn {
  width: 100%;
  justify-content: center;
}

/* Savings callout line */
.tier-savings {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--radius-xs);
  padding: 0.3rem 0.65rem;
  text-align: center;
  margin-bottom: 0.1rem;
}

/* Pricing footnote */
.pricing-footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin-top: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

/* ─── Region Toggle ──────────────────────────────────────────── */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  margin-top: 1.5rem;
}
.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 180ms, color 180ms, box-shadow 180ms;
  white-space: nowrap;
}
.pricing-toggle-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(91,95,238,0.4);
}
.pricing-toggle-btn:not(.active):hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer; list-style: none;
  font-size: 0.97rem; font-weight: 600; color: var(--ink);
  transition: color 140ms;
}
.faq-summary:hover { color: var(--accent-hi); }
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 1.2rem; font-weight: 300;
  color: var(--ink-faint);
  transition: transform 220ms var(--ease-out), color 140ms;
  flex-shrink: 0;
}
details[open] .faq-summary::after { content: '−'; color: var(--accent-hi); }
.faq-body { padding-bottom: 1.15rem; }
.faq-body p { font-size: 0.9rem; max-width: 60ch; }

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 3vw, 2rem); }
.cta-box {
  background: var(--bg-raised);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-2xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(91,95,238,0.16), transparent 65%);
  pointer-events: none;
}
.cta-box-inner {
  position: relative; z-index: 1;
  display: grid; gap: 1rem;
  max-width: 560px;
  margin-inline: auto;
}
.cta-box h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
.cta-box p  { font-size: 0.97rem; }
.cta-actions {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.65rem; margin-top: 0.4rem;
}
.cta-note { font-size: 0.75rem; color: var(--ink-faint); margin-top: 0.4rem; }

/* ─── TRUST GRID ─────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0.85rem;
}
.trust-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: grid; gap: 0.55rem; align-content: start;
  transition: border-color 200ms, background 200ms;
}
.trust-card:hover { border-color: var(--border-hi); background: var(--bg-surface); }
.trust-icon { font-size: 1.3rem; }
.trust-card h3 { font-size: 0.9rem; }
.trust-card p  { font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER  —  Plane.so rich multi-column footer
   ════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ════════════════════════════════════════════════════════════ */
.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid rgba(91,95,238,0.18);
  background:
    radial-gradient(ellipse 80% 70% at 0% 50%, rgba(91,95,238,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(139,92,246,0.09) 0%, transparent 60%),
    linear-gradient(180deg, rgba(91,95,238,0.05) 0%, var(--bg) 100%);
}

/* floating orbs */
.nl-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
}
.nl-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(91,95,238,0.22) 0%, transparent 70%);
  top: -160px; left: -100px;
  animation: orb-drift-a 14s ease-in-out infinite;
}
.nl-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orb-drift-b 18s ease-in-out infinite;
}

/* subtle dot grid */
.nl-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* two-column inner */
.nl-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* left copy */
.nl-copy { display: grid; gap: 1rem; }
.nl-copy .eyebrow { margin-bottom: 0; }
.nl-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-faint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nl-copy p {
  font-size: 0.97rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 40ch;
}

/* proof chips */
.nl-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.nl-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(91,95,238,0.2);
  border-radius: var(--radius-full);
  background: rgba(91,95,238,0.06);
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 500;
}
.nl-proof-chip svg { color: var(--green); flex-shrink: 0; }

/* right: glassmorphism card */
.nl-form-wrap { width: 100%; }
.nl-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow:
    0 0 0 1px rgba(91,95,238,0.08),
    0 24px 60px rgba(0,0,0,0.08),
    0 0 80px rgba(91,95,238,0.05);
  display: grid;
  gap: 1rem;
}

/* envelope icon on card */
.nl-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 1px solid rgba(91,95,238,0.25);
  display: grid;
  place-items: center;
  color: var(--accent-hi);
}

.nl-card-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* email + submit inline row */
.nl-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.nl-input {
  flex: 1;
  height: 48px;
  padding: 0 1rem;
  background: var(--bg-overlay);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 180ms, box-shadow 180ms;
  outline: none;
  min-width: 0;
}
.nl-input::placeholder { color: var(--ink-faint); }
.nl-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,95,238,0.18);
}
.nl-input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

/* submit button */
.nl-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 48px;
  padding: 0 1.35rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(91,95,238,0.4);
  transition:
    background 160ms,
    box-shadow 200ms var(--ease-out),
    transform 200ms var(--ease-out);
}
.nl-submit:hover {
  background: #6a6eff;
  box-shadow: 0 8px 28px rgba(91,95,238,0.5);
  transform: translateY(-1px);
}
.nl-submit:active { transform: scale(0.97); }
.nl-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.nl-submit-arrow {
  transition: transform 200ms var(--ease-out);
}
.nl-submit:hover .nl-submit-arrow { transform: translateX(3px); }

/* hint text */
.nl-hint {
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin: 0;
  line-height: 1.5;
}

/* success banner */
.nl-success {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
  animation: nl-fade-in 320ms var(--ease-out);
}
@keyframes nl-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ── Newsletter responsive ────────────────────────────────── */
@media (max-width: 860px) {
  .nl-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nl-copy { text-align: center; }
  .nl-copy p { max-width: none; }
  .nl-proof { justify-content: center; }
}

@media (max-width: 640px) {
  .newsletter-section { padding: 3rem 1.25rem; }
  .nl-card { padding: 1.5rem; }
  .nl-input-row { flex-direction: column; }
  .nl-input  { height: 50px; }
  .nl-submit { height: 50px; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .nl-copy h2 { font-size: 1.7rem; }
  .nl-card { padding: 1.25rem; border-radius: var(--radius-xl); }
  .nl-card-icon { width: 44px; height: 44px; }
  .nl-proof-chip { font-size: 0.7rem; padding: 0.25rem 0.6rem; }
}


/* ── Main footer ─────────────────────────────────────────────── */
.site-footer {
  background: #f8f9fb;
  border-top: 1px solid var(--border);
}

/* top area */
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 2.5rem 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 4rem clamp(1rem, 3vw, 2rem) 3rem;
}

.footer-brand-col { display: grid; gap: 1.1rem; align-content: start; }
.footer-brand-desc {
  font-size: 0.84rem;
  color: var(--ink-muted);
  max-width: 24ch;
  line-height: 1.7;
}

/* social icons */
.footer-socials { display: flex; gap: 0.5rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--ink-faint);
  transition: border-color 180ms, color 180ms, background 180ms, transform 180ms;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent-hi);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.social-link svg { width: 14px; height: 14px; fill: currentColor; }

/* link columns */
.footer-col { display: grid; gap: 0.6rem; align-content: start; }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.83rem;
  color: var(--ink-faint);
  transition: color 140ms, transform 140ms;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-col a:hover { color: var(--ink); transform: translateX(2px); }
.footer-col a .new-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-hi);
  border-radius: var(--radius-xs);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-med) 20%, var(--border-med) 80%, transparent);
  max-width: var(--max-w);
  margin-inline: auto;
}

/* bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.4rem clamp(1rem, 3vw, 2rem) 2.2rem;
  font-size: 0.77rem;
  color: var(--ink-faint);
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0.25rem 1.4rem; }
.footer-bottom-links a { color: var(--ink-faint); transition: color 140ms; }
.footer-bottom-links a:hover { color: var(--ink-muted); }

/* store badges in footer brand column */
.app-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--ink-muted);
  transition: border-color 140ms, color 140ms, background 140ms;
}
.app-badge:hover { border-color: var(--border-hi); color: var(--ink); background: var(--bg-overlay); }
.app-badge svg  { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════ */
@keyframes pulse-dot {
  0%,100% { opacity:1; box-shadow:0 0 6px var(--accent); }
  50%      { opacity:0.6; box-shadow:0 0 14px var(--accent); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bar-grow {
  from { opacity:0; transform:scaleY(0); }
  to   { opacity:1; transform:scaleY(1); }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}
.reveal.in-view     { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay: 70ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 210ms; }
.reveal-delay-4 { transition-delay: 280ms; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE  —  Mobile-First Complete Restructure
   Strategy: Breakpoints at 480 / 640 / 768 / 860 / 1024 / 1100
   ════════════════════════════════════════════════════════════ */

/* ── iOS safe-area / notch support ─────────────────────────── */
:root {
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 20px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
}

/* ── TABLET — 1100px ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }

  .feature-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-showcase.reverse { direction: ltr; }
  .feature-content p { max-width: none; }

  .workflow-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .workflow-sticky  { position: static; }
  .workflow-sticky p { max-width: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .app-mockup { grid-template-columns: 160px 1fr; }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── TABLET-SMALL — 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { max-width: 720px; }
  .hero-visual { max-width: 100%; }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-inline: auto;
  }
  /* Agency card spans full width on 2-col layout */
  .pricing-grid > article:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    margin-inline: auto;
    width: 100%;
  }

  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE-LARGE — 860px ──────────────────────────────────── */
@media (max-width: 860px) {
  /* Header */
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Hide desktop store buttons already removed; ensure toggle visible */
  .header-actions .store-btn { display: none; }

  /* Hero: tighten up and remove huge padding */
  .hero {
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: 0;
    min-height: auto;
  }
  .hero-inner { align-items: center; text-align: center; }
  .hero-badge { margin-bottom: 1.2rem; }

  h1 { font-size: clamp(2rem, 7vw, 3.2rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  .hero-lead {
    font-size: 1rem;
    max-width: 44ch;
    margin-bottom: 1.8rem;
  }

  /* Hero actions: make buttons full width on mobile */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 0.65rem;
  }
  .hero-actions .store-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero stats: scroll horizontally instead of breaking */
  .hero-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1.2rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-xl);
    justify-content: flex-start;
    max-width: 100%;
  }
  .hero-stats::-webkit-scrollbar { display: none; }
  .hero-stat-divider { flex-shrink: 0; }
  .hero-stat { flex-shrink: 0; }

  /* Hero visual: hidden behind fold on mobile */
  .hero-visual {
    margin-top: 3rem;
    max-width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
  }

  /* Remove sidebar from app mockup */
  .app-sidebar { display: none; }
  .app-mockup  { grid-template-columns: 1fr; }
  .metric-row  { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  /* Sections */
  .section { padding: 3rem 1.25rem; }
  .section-header { margin-bottom: 2rem; }

  /* Value grid: 2 col */
  .value-grid { grid-template-columns: repeat(2, 1fr); }

  /* Feature showcase: single col, visual on top */
  .feature-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .feature-showcase.reverse { direction: ltr; }
  .feature-content h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .feature-visual { min-height: 240px; }

  /* Workflow steps: remove sticky left col */
  .workflow-section { grid-template-columns: 1fr; gap: 2rem; }
  .workflow-sticky  { position: static; }
  .workflow-sticky > div[style] { flex-wrap: wrap; }

  /* Audience: 1 col, full width */
  .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* Trust: 2 col */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing: Horizontal sliding carousel */
  #pricing {
    overflow-x: clip; /* prevent bleed issues on parent */
  }
  .pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1rem, 4vw, 2rem);
    gap: 1rem;
    padding-bottom: 2.5rem; /* give extra space below for touch sliding */
    margin-inline: calc(-1 * clamp(1rem, 4vw, 2rem));
    padding-inline: clamp(1rem, 4vw, 2rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  
  .pricing-grid > article {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: center;
  }
  .pricing-grid > article:last-child {
    grid-column: auto;
    max-width: 340px;
  }

  /* Footer strip buttons */
  /* Footer top: 2-col */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: none; }

  /* App badges in footer: horizontal */
  .app-badges { flex-direction: row !important; flex-wrap: wrap; gap: 0.5rem; }
}

/* ── MOBILE — 640px ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Container padding */
  .container { width: calc(100% - 2rem); }

  /* Header: tighter */
  .site-header { padding-inline: 1rem; }
  .header-inner { gap: 0.5rem; }

  /* Hero */
  .hero { padding-top: 2rem; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); letter-spacing: -0.04em; }
  .hero-lead { font-size: 0.95rem; }

  /* Stats: smaller text */
  .hero-stat-val { font-size: 1rem; }
  .hero-stat-label { font-size: 0.62rem; }

  /* Value grid: 1 col on small phones */
  .value-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .value-card { padding: 1.25rem; }

  /* Feature visual: smaller */
  .feature-visual { min-height: 200px; }
  .pipeline-visual, .invoice-visual, .analytics-visual { padding: 1rem; }
  .pipeline-col-labels, .pipeline-cols { grid-template-columns: repeat(2, 1fr); }
  /* Trim pipeline to 2 cols on mobile */
  .pipeline-col:nth-child(n+3) { display: none; }
  .pipeline-col-label:nth-child(n+3) { display: none; }

  /* Metric row: 2 col tight */
  .metric-card { padding: 0.65rem 0.75rem; }
  .metric-value { font-size: 1.05rem; }

  /* Workflow step: shrink numbers */
  .workflow-step { padding: 1.25rem 0; gap: 0.85rem; }
  .step-num { width: 28px; height: 28px; font-size: 0.7rem; }

  /* Trust: 1 col on small */
  .trust-grid { grid-template-columns: 1fr; }

  /* Audience cards: tighter */
  .audience-card { padding: 1.25rem; }

  /* Pricing: full width */
  .pricing-grid { max-width: 100%; }
  .pricing-tier { padding: 1.35rem; }
  .tier-store-btns { flex-direction: column; }
  .tier-store-btns .store-btn { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-summary { font-size: 0.9rem; padding: 1rem 0; }

  /* CTA */
  .cta-box { padding: 2rem 1.25rem; border-radius: var(--radius-xl); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .store-btn { justify-content: center; }


  /* Footer grid: 2-col links */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  /* Footer bottom: stacked */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-bottom-links { gap: 0.25rem 1rem; }

  /* App table: hide 3rd+ columns */
  .table-header > *:nth-child(n+3),
  .table-row   > *:nth-child(n+3) { display: none; }
  .table-header, .table-row { grid-template-columns: 2fr 1fr; }

  /* Hero actions: full width stacked */
  .hero-actions { max-width: 100%; }

  /* Hide hero stats on mobile devices */
  .hero-stats { display: none; }

  /* Store button smaller and stacked */
  .store-btn-lg {
    padding: 0.65rem 1rem;
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
  }
  .store-btn-lg svg { width: 18px; height: 18px; }
  .store-btn-lg .store-btn-sub { font-size: 0.55rem; }
  .store-btn-lg .store-btn-name { font-size: 0.95rem; }
}

/* ── MOBILE-SMALL — 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  /* Stats marquee hidden — too wide */
  .stats-band { display: none; }

  /* Hero: more compact */
  .hero { padding-top: 1.5rem; }
  .hero-badge { margin-bottom: 1rem; }
  h1 { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .hero-lead { font-size: 0.9rem; margin-bottom: 1.5rem; }

  /* Hero visual: slimmer */
  .hero-visual { margin-top: 2rem; }
  .window-bar { padding: 0.55rem 0.75rem; }
  .window-dot { width: 7px; height: 7px; }
  .app-main { padding: 0.75rem 0.9rem; gap: 0.65rem; }
  .app-topbar { margin-bottom: 0; }
  .app-page-title { font-size: 0.85rem; }

  /* Metric: 2 max */
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-card:nth-child(n+3) { display: none; }

  /* Sections */
  .section { padding: 2.5rem 1rem; }

  /* Pipeline: 1 col */
  .pipeline-col-labels { grid-template-columns: repeat(1, 1fr); }
  .pipeline-cols { grid-template-columns: repeat(1, 1fr); }
  .pipeline-col:nth-child(n+2) { display: none; }
  .pipeline-col-label:nth-child(n+2) { display: none; }

  /* Footer: single col */
  .footer-top { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-brand-col { grid-column: auto; }
  .footer-col { gap: 0.5rem; }

  /* App badges in footer: stacked */
  .app-badges { flex-direction: column !important; }
  .app-badges .store-btn { width: 100%; justify-content: center; }

  /* Pricing toggle: stack buttons */
  .pricing-toggle-wrap { flex-direction: column; border-radius: var(--radius-lg); width: 100%; }
  .pricing-toggle-btn { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-body p { font-size: 0.85rem; }
}

/* ── TINY — 360px (older Android, small iPhones) ─────────────── */
@media (max-width: 360px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  .hero-lead { font-size: 0.88rem; }

  .store-btn-lg { padding: 0.75rem 1.1rem; }
  .store-btn-lg .store-btn-name { font-size: 1rem; }

  .nav-toggle { width: 1.85rem; height: 1.85rem; }
  .brand { font-size: 0.9rem; }
  .brand img { width: 22px; height: 22px; }

  .section { padding: 2rem 0.85rem; }
  .cta-box { padding: 1.75rem 1rem; }
  .pricing-tier { padding: 1.15rem; }
  .audience-card { padding: 1rem; }
}

/* ── MOBILE NAV open state — full screen overlay ─────────────── */
@media (max-width: 860px) {
  .mobile-nav-overlay {
    /* Respect iOS safe areas at top/bottom */
    inset: var(--header-h) 0 0 0;
    padding-bottom: calc(1.5rem + var(--safe-bottom));
    padding-left:  calc(1.25rem + var(--safe-left));
    padding-right: calc(1.25rem + var(--safe-right));
  }

  .mobile-nav-links a {
    /* Minimum 44px touch target (Apple/Google HIG) */
    min-height: 44px;
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
  }
  .mobile-nav-actions .store-btn {
    min-height: 52px;
    width: 100%;
    justify-content: center;
  }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .stats-inner { animation: none; }
  .hero-orb { animation: none; }
}

