/* ============================================================
   FILETALLY — SITE STYLES
   ============================================================ */

/* ------------------------------------------------------------
   1. VARIABLES & TOKENS
   ------------------------------------------------------------ */
:root {
  /* Accent */
  --accent:         #e0305a;
  --accent-dark:    #c22850;
  --accent-faint:   rgba(224, 48, 90, 0.08);
  --accent-faint-2: rgba(224, 48, 90, 0.13);

  /* Main surfaces — dark */
  --bg:             #0b0b14;
  --bg-2:           #0e0e1c;
  --bg-3:           #121222;
  --bg-alt:         #0f0f1e;
  --surface:        #121222;

  /* Deeper darks (footer, CTA block) */
  --bg-dark:        #060610;
  --bg-dark-2:      #08080f;
  --bg-dark-3:      #0a0a14;

  /* Borders */
  --border:         rgba(255, 255, 255, 0.08);
  --border-hover:   rgba(255, 255, 255, 0.15);

  /* Borders — dark surfaces (footer/CTA) */
  --border-dark:       rgba(255, 255, 255, 0.07);
  --border-dark-hover: rgba(255, 255, 255, 0.13);

  /* Text — on dark surfaces (main page) */
  --text-primary:   #eceef2;
  --text-secondary: #8a8aaa;
  --text-muted:     #585870;

  /* Text — deepest dark surfaces (footer, CTA) */
  --text-on-dark:        #f0f0f4;
  --text-secondary-dark: #9898b2;
  --text-muted-dark:     #64647e;

  --text-on-accent: #ffffff;

  /* Shadows — darker for dark-bg depth */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.55), 0 2px 4px rgba(0, 0, 0, 0.35);
  --shadow-lg:  0 12px 32px rgba(0, 0, 0, 0.65), 0 4px 10px rgba(0, 0, 0, 0.4);
  --shadow-xl:  0 24px 56px rgba(0, 0, 0, 0.75), 0 8px 24px rgba(0, 0, 0, 0.5);

  /* Layout */
  --shell-width: 1140px;
  --shell-pad:   clamp(1.25rem, 5vw, 2.5rem);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  22px;

  /* Typography */
  --font-ui:      "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: "Sora", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --font-mono:    "Cascadia Code", "Consolas", monospace;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);

  /* Header */
  --header-h: 64px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::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 {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------------------
   3. ACCESSIBILITY
   ------------------------------------------------------------ */
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
  outline: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.shell {
  max-width: var(--shell-width);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ------------------------------------------------------------
   5. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.eyebrow-inverted {
  color: rgba(224, 48, 90, 0.9);
}

.section-heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 54ch;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.65rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition:
    background-color 0.18s var(--ease-out),
    border-color     0.18s var(--ease-out),
    color            0.18s var(--ease-out),
    box-shadow       0.18s var(--ease-out),
    transform        0.12s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(224, 48, 90, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(224, 48, 90, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-hover);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  background: rgba(11, 11, 20, 0.02);
  color: var(--text-primary);
  border-color: rgba(17, 17, 26, 0.14);
}

.btn-outline:hover {
  color: var(--text-primary);
  border-color: rgba(224, 48, 90, 0.34);
  background: rgba(224, 48, 90, 0.06);
  box-shadow: 0 8px 24px rgba(17, 17, 26, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: rgba(240, 240, 244, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark:hover {
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ------------------------------------------------------------
   7. HEADER
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 11, 20, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-lockup {
  height: 34px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background-color 0.15s;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link[aria-current="page"] {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-faint-2);
  color: var(--accent) !important;
  border: 1px solid rgba(224, 48, 90, 0.22);
  font-weight: 600;
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* ------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------ */
.hero {
  padding-block: clamp(4rem, 9vw, 8rem);
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(224, 48, 90, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 5% 85%, rgba(100, 80, 200, 0.07) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 52ch;
}

.hero-heading {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-heading em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.2;
  transition: color 0.18s var(--ease-out);
}

.hero-inline-link:hover {
  color: var(--text-primary);
}

.hero-download-note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-download-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-download-note a:hover {
  color: var(--accent-dark);
}

/* Device frame — kept dark regardless of page theme */
.hero-media {
  position: relative;
}

.device-frame {
  position: relative;
  background: #18181f;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.device-frame::before {
  content: '';
  display: block;
  height: 36px;
  background: #111118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.device-frame::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.12), 28px 0 0 rgba(255, 255, 255, 0.12);
}

.hero-video {
  display: block;
  width: 100%;
  height: calc(100% - 36px);
  object-fit: cover;
}

/* ------------------------------------------------------------
   9. TRUST STRIP
   ------------------------------------------------------------ */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.125rem;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding-inline: 1.25rem;
  white-space: nowrap;
}

.trust-icon {
  font-size: 0.5rem;
  color: var(--accent);
  line-height: 1;
}

.trust-divider {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   10. HOW IT WORKS
   ------------------------------------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

.step-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.step-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   11. EXPORT PROOF
   ------------------------------------------------------------ */
.export-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.export-panel {
  display: flex;
  flex-direction: column;
}

.app-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.app-window-bar {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 1rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
}

.app-window-dots {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.1), 28px 0 0 rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.app-window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-ui);
  white-space: nowrap;
  pointer-events: none;
}

.export-img {
  width: 100%;
  height: auto;
  display: block;
}

.export-panel-caption {
  padding: 0.875rem 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.export-panel-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.export-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  justify-content: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.export-meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-block: 0.4rem;
}

.export-meta li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ------------------------------------------------------------
   12. PRODUCT SCREENSHOTS
   ------------------------------------------------------------ */
.screenshots-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.screenshot-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.screenshot-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.screenshot-frame {
  background: var(--bg-3);
  padding: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.screenshot-card-secondary .screenshot-frame {
  padding: 0.5rem;
}

.screenshot-img {
  width: 100%;
  height: auto;
  aspect-ratio: 49 / 48;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

.screenshot-caption {
  display: block;
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.screenshot-caption strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* ------------------------------------------------------------
   13. FEATURES
   ------------------------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.625rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-faint) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  border-radius: inherit;
}

.feature-card:hover {
  border-color: rgba(224, 48, 90, 0.22);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-faint-2);
  border: 1px solid rgba(224, 48, 90, 0.15);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   14. WHO IT HELPS
   ------------------------------------------------------------ */
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: flex-start;
}

.who-copy .section-heading {
  text-align: left;
  margin-inline: 0;
}

.who-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.375rem 1.5rem;
  transition: border-color 0.2s;
}

.who-card:hover {
  border-color: var(--border-hover);
}

.who-card-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.who-card-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   15. FINAL CTA
   ------------------------------------------------------------ */
.cta-section {
  background: var(--bg-dark);
  border-top: none;
  border-bottom: none;
}

.cta-card {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--bg-dark-2);
  border: 1px solid rgba(224, 48, 90, 0.18);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(224, 48, 90, 0.05) inset;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 48, 90, 0.45), transparent);
}

.cta-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.cta-body {
  font-size: 1.0625rem;
  color: var(--text-secondary-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 52ch;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}

.cta-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-note a:hover {
  color: #f06080;
}

/* ------------------------------------------------------------
   16. PRICING + SUCCESS
   ------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.pricing-card .btn {
  margin-top: auto;
  justify-self: start;
}

.pricing-card-featured {
  border-color: rgba(224, 48, 90, 0.35);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(224, 48, 90, 0.14) inset;
}

.pricing-tier {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-value {
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.pricing-copy {
  color: var(--text-secondary);
  line-height: 1.65;
}

.pricing-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.pricing-list li {
  padding-left: 1rem;
  position: relative;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-note {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 60ch;
  margin-inline: auto;
}

.success-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top, rgba(224, 48, 90, 0.1), transparent 34%),
    var(--bg-dark);
  color: var(--text-on-dark);
}

.success-shell {
  flex: 1 0 auto;
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 2rem 2rem 3rem;
}

.success-card {
  width: min(680px, 100%);
  background: var(--bg-dark-2);
  border: 1px solid rgba(224, 48, 90, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3rem);
}

.success-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.success-copy,
.success-note {
  color: var(--text-secondary-dark);
  line-height: 1.7;
}

.success-list {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text-secondary-dark);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.success-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding-block: 3rem 1.75rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  max-width: min(240px, 100%);
}

.footer-lockup {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin-block: -0.4rem -0.55rem;
}

.footer-contact {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  text-align: right;
}

.footer-email-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.footer-email-link:hover {
  color: #f06080;
}

.footer-legal {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}

.footer-legal p {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}

/* ------------------------------------------------------------
   18. RESPONSIVE — ~960px
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-heading {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
  }

  .hero-sub {
    max-width: none;
  }

  .device-frame {
    max-width: 640px;
    margin-inline: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .export-panels {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }

  .screenshots-layout {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .who-copy .section-heading {
    text-align: center;
  }

  .who-copy .eyebrow {
    display: block;
    text-align: center;
  }

  .who-body {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-contact {
    text-align: left;
  }
}

/* ------------------------------------------------------------
   19. RESPONSIVE — ~700px
   ------------------------------------------------------------ */
@media (max-width: 700px) {
  :root {
    --header-h: 56px;
  }

  .brand-lockup {
    height: 30px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 20, 0.95);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--shell-pad) 1.5rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 0.5rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    justify-content: center;
    gap: 0.75rem 1rem;
    overflow: visible;
  }

  .trust-divider {
    display: block;
  }

  .trust-item {
    padding-inline: 0;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .success-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .export-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}

/* ------------------------------------------------------------
   20. REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
