@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

/* ══════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════ */

:root {
  color-scheme: dark;

  /* Backgrounds — warm dark tones */
  --bg-base: #0a0a0a;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;
  --bg-card: rgba(22, 22, 22, 0.7);

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);

  /* Text */
  --text-primary: #f5f0eb;
  --text-secondary: #a39e97;
  --text-muted: #6b6560;

  /* Accent — warm amber/gold */
  --accent: #e8a838;
  --accent-light: #f0c060;
  --accent-glow: rgba(232, 168, 56, 0.2);
  --accent-soft: rgba(232, 168, 56, 0.08);

  /* Teal — muted sage for secondary */
  --teal: #7ec9a0;
  --teal-soft: rgba(126, 201, 160, 0.08);

  /* Gradient */
  --gradient-accent: linear-gradient(135deg, #e8a838, #d4842a, #c06820);
  --gradient-text: linear-gradient(135deg, #f5deb3, #e8a838, #d4842a);

  /* Semantic */
  --success: #7ec9a0;
  --error: #e87461;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(232, 168, 56, 0.08);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 999px;
}

/* ══════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ══════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--accent-glow);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
  padding: 0.6rem 1rem;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ══════════════════════════════════════════════
   CHIPS & BADGES
   ══════════════════════════════════════════════ */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 168, 56, 0.15);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   GRADIENT TEXT
   ══════════════════════════════════════════════ */

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(232, 168, 56, 0.08) 0%, rgba(212, 132, 42, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 720px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--accent-light);
  font-size: 0.75rem;
}

/* ══════════════════════════════════════════════
   HERO BROWSER MOCKUP
   ══════════════════════════════════════════════ */

.product-showcase {
  margin-top: -2rem;
  padding-top: 0;
}

.hero-browser {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(232, 168, 56, 0.06);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.browser-dot:first-child { background: rgba(232, 116, 97, 0.6); }
.browser-dot:nth-child(2) { background: rgba(232, 168, 56, 0.6); }
.browser-dot:nth-child(3) { background: rgba(126, 201, 160, 0.6); }

.browser-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: "SF Mono", "Fira Code", monospace;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.browser-screenshot {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════════════
   FEATURE ROWS (text + screenshot)
   ══════════════════════════════════════════════ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.feature-row-reverse {
  grid-template-columns: 1.3fr 1fr;
}

.feature-row-reverse .feature-text {
  order: 2;
}

.feature-row-reverse .feature-visual {
  order: 1;
}

.feature-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  margin-top: var(--space-md);
}

.feature-text > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.feature-checks {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.feature-checks li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.feature-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.screenshot-frame {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.screenshot-frame:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(232, 168, 56, 0.05);
}

.screenshot-frame img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ══════════════════════════════════════════════
   NUMBER ROW (social proof)
   ══════════════════════════════════════════════ */

.number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
}

.number-block {
  text-align: center;
}

.number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.number-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.number-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════════ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.step {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   BENTO GRID (features)
   ══════════════════════════════════════════════ */

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.bento-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.bento-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

.bento-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  color: var(--accent-light);
}

.bento-icon-teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.bento-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   COMPARE (before/after)
   ══════════════════════════════════════════════ */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.compare-col {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.compare-header {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-before {
  border-color: rgba(232, 116, 97, 0.2);
}

.compare-before .compare-header {
  color: var(--error);
}

.compare-after {
  border-color: rgba(126, 201, 160, 0.2);
}

.compare-after .compare-header {
  color: var(--success);
}

.compare-col ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.compare-col li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.compare-before li::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

.compare-after li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: border-color 0.3s;
}

.testimonial:hover {
  border-color: var(--border-hover);
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 168, 56, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   FAQ (accordion on homepage)
   ══════════════════════════════════════════════ */

.faq {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-sm);
}

.faq > .faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq > .faq-item:hover {
  border-color: var(--border-hover);
}

.faq > .faq-item summary {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  transition: color 0.2s;
}

.faq > .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq > .faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq > .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq > .faq-item p {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* FAQ grid (pricing page fallback) */
.faq-grid {
  display: grid;
  gap: var(--space-sm);
  max-width: 680px;
}

.faq-grid .faq-item {
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.faq-grid .faq-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════ */

.cta-strip {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232, 168, 56, 0.06), transparent);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-strip-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.cta-strip-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */

.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-brand .logo img {
  height: 38px;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 240px;
  line-height: 1.6;
}

.footer-links h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-disclosure {
  margin-top: 0.8rem;
  max-width: 900px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-disclosure a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-disclosure a:hover {
  color: var(--text-primary);
}

.cookie-settings-link {
  margin-left: 0.5rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   CARDS (generic — features, contact pages)
   ══════════════════════════════════════════════ */

.card {
  background: var(--bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s,
              border-color 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-hover);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stack {
  display: grid;
  gap: var(--space-lg);
}

/* ══════════════════════════════════════════════
   FEATURE ICON (features page)
   ══════════════════════════════════════════════ */

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--accent-light);
}

.feature-icon.teal {
  background: var(--teal-soft);
  color: var(--teal);
}

/* ══════════════════════════════════════════════
   SPLIT SECTION (features page)
   ══════════════════════════════════════════════ */

.split-section {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.soft-panel {
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.image-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card .pill {
  width: fit-content;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(232, 168, 56, 0.06), var(--bg-card));
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-glow);
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-card .price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.feature-list {
  display: grid;
  gap: 0.6rem;
  flex: 1;
}

.feature-list li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pricing-card .cta {
  margin-top: auto;
}

.btw-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════
   EYEBROW & HELPER TEXT
   ══════════════════════════════════════════════ */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-lead {
  color: var(--text-secondary);
  max-width: 640px;
}

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

/* ══════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════ */

.hero--small {
  padding: 8rem 0 2rem;
}

.hero--small h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

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

  .hamburger {
    display: block;
  }

  /* Mobile menu overlay */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
  }

  .nav-links.open a {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
  }

  .nav-links.open a::after {
    display: none;
  }

  .nav-actions.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 3rem;
    left: 0;
    right: 0;
    z-index: 1000;
    align-items: center;
    gap: 0.75rem;
  }

  .hero {
    padding: 7rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero-sub {
    font-size: 1rem;
  }

  /* CTAs stack full-width on mobile */
  .cta {
    flex-direction: column;
    width: 100%;
  }

  .cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Hero CTA constrained width */
  .hero-content .cta {
    max-width: 320px;
  }

  .trust-row {
    gap: 1rem;
  }

  /* Number row */
  .number-row {
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .number-divider {
    width: 40px;
    height: 1px;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
  }

  /* Bento */
  .bento {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: span 1;
  }

  /* Feature rows */
  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .feature-row-reverse .feature-text {
    order: 1;
  }

  .feature-row-reverse .feature-visual {
    order: 2;
  }

  .feature-text h3 {
    font-size: 1.2rem;
  }

  /* Compare */
  .compare {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr;
  }

  /* Section headers */
  .section-header {
    margin-bottom: var(--space-xl);
  }

  /* CTA strip */
  .cta-strip {
    padding: var(--space-3xl) 0;
  }

  .cta-strip-inner .cta {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Pricing cards */
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card .cta {
    max-width: none;
  }

  /* Split section */
  .split-section {
    grid-template-columns: 1fr;
  }

  /* Sections */
  .section {
    padding: var(--space-3xl) 0;
  }

  .section-sm {
    padding: var(--space-xl) 0;
  }

  /* Product showcase */
  .product-showcase {
    margin-top: -1rem;
  }

  /* Legal */
  .hero--small {
    padding: 6.5rem 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .hero {
    padding: 6.5rem 0 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .cta-strip-content h2 {
    font-size: 1.5rem;
  }

  .number {
    font-size: 1.6rem;
  }

  .step {
    padding: var(--space-lg);
  }

  .bento-card {
    padding: var(--space-lg) var(--space-md);
  }

  .compare-col {
    padding: var(--space-lg);
  }

  .testimonial {
    padding: var(--space-lg);
  }

  .card {
    padding: var(--space-lg);
  }

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

  .faq > .faq-item summary {
    font-size: 0.88rem;
    padding: var(--space-md);
  }

  .faq > .faq-item p {
    padding: 0 var(--space-md) var(--space-md);
  }

  /* Browser mockup */
  .browser-bar {
    padding: 8px 12px;
  }

  .browser-url {
    font-size: 0.65rem;
    padding: 2px 8px;
  }

  /* Smaller btn-lg on small screens */
  .btn-lg {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  width: min(430px, calc(100vw - 24px));
  animation: slideUp 0.28s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(16px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  width: 100%;
  background: linear-gradient(160deg, rgba(30, 30, 30, 0.98), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  padding: 14px;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #f3f3f3;
}

.cookie-inner p strong {
  display: inline-block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.95rem;
}

.cookie-inner p a {
  color: #7de2d1;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
}

.cookie-actions .btn {
  min-width: 108px;
  justify-content: center;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-inner {
    align-items: stretch;
    padding: 12px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}
