/* ============================================================
   PropertyDesk — Product Landing Page
   ============================================================ */

/* ------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Brand — fixed */
  --teal-fixed:  hsl(194, 66%, 24%);
  --amber-fixed: hsl(39, 73%, 49%);

  /* Interactive brand — lighten in dark mode */
  --teal:        hsl(194, 66%, 24%);
  --amber:       hsl(39, 73%, 49%);
  --amber-hover: hsl(39, 73%, 42%);

  /* Contextual */
  --c-bg:         #FFFFFF;
  --c-bg-alt:     #FAFAFA;
  --c-surface:    #FFFFFF;
  --c-border:     #E4E4E7;
  --c-border-sub: #F4F4F5;
  --c-text:       #0A0A0A;
  --c-text-2:     #71717A;
  --c-text-3:     #A1A1AA;
  --c-text-4:     #52525B;
  --c-text-5:     #3F3F46;
  --c-nav-bg:     rgba(255, 255, 255, 0.88);
  --c-teal-bg:    hsl(194, 40%, 94%);
  --c-amber-bg:   hsl(39, 73%, 95%);

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r:    8px;
  --r-lg: 12px;

  /* Spacing */
  --section-pad: 96px;
}

[data-theme="dark"] {
  --teal:        hsl(194, 60%, 58%);
  --amber:       hsl(39, 88%, 62%);
  --amber-hover: hsl(39, 88%, 54%);

  --c-bg:         #0C0C0D;
  --c-bg-alt:     #111113;
  --c-surface:    #18181B;
  --c-border:     #27272A;
  --c-border-sub: #1C1C1F;
  --c-text:       #F4F4F5;
  --c-text-2:     #A1A1AA;
  --c-text-3:     #71717A;
  --c-text-4:     #D4D4D8;
  --c-text-5:     #E4E4E7;
  --c-nav-bg:     rgba(12, 12, 13, 0.92);
  --c-teal-bg:    hsl(194, 55%, 13%);
  --c-amber-bg:   hsl(39, 55%, 12%);
  color-scheme: dark;
}

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

html.switching,
html.switching *,
html.switching *::before,
html.switching *::after {
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.2s ease,
    box-shadow 0.28s ease !important;
}

/* ------------------------------------------------------------
   UTILITIES
   ------------------------------------------------------------ */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}
.badge--amber { background: var(--c-amber-bg); color: var(--amber-hover); }
.badge--teal  { background: var(--c-teal-bg);  color: var(--teal); }
[data-theme="dark"] .badge--amber { color: var(--amber); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px hsla(39, 73%, 49%, 0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text-5);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover { border-color: var(--c-text-3); background: var(--c-bg-alt); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 14px;
}
.section-subtitle { font-size: 17px; color: var(--c-text-2); line-height: 1.65; }

/* ------------------------------------------------------------
   ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse     { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes glowPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes float     { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.animate      { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.a-d1         { animation-delay: 0.08s; }
.a-d2         { animation-delay: 0.16s; }
.a-d3         { animation-delay: 0.24s; }
.a-d4         { animation-delay: 0.34s; }
.a-d5         { animation-delay: 0.44s; }

.reveal         { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1      { transition-delay: 0.08s; }
.reveal-d2      { transition-delay: 0.16s; }
.reveal-d3      { transition-delay: 0.24s; }
.reveal-d4      { transition-delay: 0.32s; }
.reveal-d5      { transition-delay: 0.40s; }
.reveal-d6      { transition-delay: 0.48s; }

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border-sub);
  transition: box-shadow 0.3s ease;
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }
[data-theme="dark"] .nav--scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--teal);
  flex-shrink: 0;
}
.nav__logo span  { color: var(--amber); }
.nav__logo small { font-size: 11px; font-weight: 400; color: var(--c-text-3); margin-left: 6px; letter-spacing: 0; }
.nav__logo img   { width: 26px; height: 26px; flex-shrink: 0; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a { font-size: 14px; font-weight: 500; color: var(--c-text-4); transition: color 0.15s; }
.nav__links a:hover { color: var(--c-text); }
.nav__right { display: flex; align-items: center; gap: 8px; }
.nav__cta   { font-size: 13px !important; padding: 9px 18px !important; }
.nav__mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--c-text); }
.nav__mobile-toggle svg { width: 22px; height: 22px; stroke: currentColor; }

/* THEME TOGGLE */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r);
  border: 1px solid var(--c-border);
  background: none;
  cursor: pointer;
  color: var(--c-text-2);
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--c-bg-alt); color: var(--c-text); }
.theme-toggle svg { width: 15px; height: 15px; pointer-events: none; display: block; }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, hsl(194, 40%, 91%) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 9s ease-in-out infinite;
}
[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, hsl(194, 55%, 10%) 0%, transparent 68%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-2);
  margin-bottom: 20px;
  padding: 5px 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.2s ease infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--teal); }
.hero__description {
  font-size: 17px;
  line-height: 1.72;
  color: var(--c-text-2);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; }
.hero__trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-text-2); }
.hero__trust-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

/* ------------------------------------------------------------
   MOCK DASHBOARD
   ------------------------------------------------------------ */
.mock-browser {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.11), 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid var(--c-border);
  animation: float 6s ease-in-out infinite;
}
[data-theme="dark"] .mock-browser {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), 0 4px 14px rgba(0, 0, 0, 0.3);
}
.mock-browser__bar {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dot  { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }
.mock-url {
  flex: 1;
  text-align: center;
  background: var(--c-surface);
  font-size: 10px;
  color: var(--c-text-3);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--c-border);
  font-family: monospace;
  letter-spacing: -0.01em;
}
.mock-app { display: flex; height: 310px; }

/* Sidebar — always uses brand teal, doesn't invert */
.mock-sidebar {
  width: 148px;
  background: var(--teal-fixed);
  padding: 12px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.mock-sidebar__logo {
  padding: 2px 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
}
.mock-sidebar__logo span { color: var(--amber-fixed); }
.mock-nav-item {
  padding: 7px 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  cursor: default;
}
.mock-nav-item--active {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
}
.mock-nav-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--amber-fixed);
  color: #fff;
  padding: 1px 5px;
  border-radius: 100px;
  line-height: 1.4;
}

/* Main content area */
.mock-main {
  flex: 1;
  background: var(--c-bg-alt);
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-topbar { display: flex; align-items: center; justify-content: space-between; }
.mock-greeting { font-size: 12px; font-weight: 600; color: var(--c-text); }
.mock-date     { font-size: 10px; color: var(--c-text-3); }

.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mock-stat {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 9px 10px;
}
.mock-stat__label { font-size: 9px; color: var(--c-text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.mock-stat__value { font-size: 18px; font-weight: 600; color: var(--c-text); line-height: 1; }
.mock-stat__sub   { font-size: 9px; color: var(--c-text-3); margin-top: 2px; }

.mock-section-label { font-size: 9px; font-weight: 600; color: var(--c-text-3); text-transform: uppercase; letter-spacing: 0.07em; }
.mock-rows { display: flex; flex-direction: column; gap: 4px; }
.mock-row {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-row__left  { display: flex; flex-direction: column; gap: 1px; }
.mock-row__title { font-size: 11px; font-weight: 500; color: var(--c-text); }
.mock-row__sub   { font-size: 9px; color: var(--c-text-3); }

.mock-status { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 100px; }
.mock-status--new  { background: #FEF3C7; color: #92400E; }
.mock-status--open { background: #DBEAFE; color: #1E40AF; }
.mock-status--done { background: #DCFCE7; color: #166534; }
[data-theme="dark"] .mock-status--new  { background: #451A03; color: #FCD34D; }
[data-theme="dark"] .mock-status--open { background: #1E3A5F; color: #93C5FD; }
[data-theme="dark"] .mock-status--done { background: #14532D; color: #86EFAC; }

/* ------------------------------------------------------------
   FEATURES
   ------------------------------------------------------------ */
.features { padding: var(--section-pad) 0; background: var(--c-bg-alt); }
.features__header { text-align: center; margin-bottom: 56px; }
.features__header .section-subtitle { max-width: 500px; margin: 0 auto; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-sub);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.feature-card:hover {
  border-color: var(--c-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .feature-card:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3); }

.feature-card__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-teal-bg);
  border-radius: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.feature-card__icon svg    { width: 18px; height: 18px; }
.feature-card:hover .feature-card__icon { transform: translateY(-3px) scale(1.08); }
.feature-card__badge       { position: absolute; top: 14px; right: 14px; }
.feature-card__title       { font-size: 15px; font-weight: 600; color: var(--c-text); margin-bottom: 7px; }
.feature-card__desc        { font-size: 14px; color: var(--c-text-2); line-height: 1.62; }

/* ------------------------------------------------------------
   COMPARE
   ------------------------------------------------------------ */
.compare { padding: var(--section-pad) 0; background: var(--c-surface); }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
}
.compare__table th,
.compare__table td {
  padding: 0.875rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.compare__table th:first-child,
.compare__table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--c-text);
  width: 35%;
}
.compare__table thead th {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-2);
  border-bottom: 2px solid var(--c-border);
  padding-bottom: 1rem;
}
.compare__table thead th.col-us {
  color: var(--teal);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody tr:hover td { background: var(--c-bg); }
.check { color: var(--teal); font-weight: 700; font-size: 1.1rem; }
.cross { color: var(--c-text-3); font-size: 1.1rem; }
.col-us { background: color-mix(in srgb, var(--teal) 6%, transparent); }
.col-us .check { font-size: 1.25rem; }
.compare__note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--c-text-2);
  text-align: center;
}

/* ------------------------------------------------------------
   PAIN BANNER
   ------------------------------------------------------------ */
.pain-banner { padding: 3rem 0; border-bottom: 1px solid var(--c-border); }
.pain-banner__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pain-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.pain-item__icon { flex-shrink: 0; width: 2rem; height: 2rem; color: var(--amber); }
.pain-item__text strong { display: block; font-weight: 600; color: var(--c-text); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.pain-item__text span { font-size: 0.875rem; color: var(--c-text-2); line-height: 1.5; }

/* ------------------------------------------------------------
   PRICE TEASE
   ------------------------------------------------------------ */
.price-tease {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--amber) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--amber) 30%, transparent);
  border-radius: 2rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 1.25rem;
}
[data-theme="dark"] .price-tease { color: hsl(39, 88%, 65%); }

/* ------------------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------------------ */
.how { padding: var(--section-pad) 0; }
.how__header { text-align: center; margin-bottom: 60px; }
.how__header .section-subtitle { max-width: 440px; margin: 0 auto; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 18%; right: 18%;
  height: 1px;
  background: var(--c-border);
}
.step { text-align: center; }
.step__number {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
  position: relative;
  z-index: 1;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover .step__number {
  border-color: var(--teal);
  transform: scale(1.08);
  box-shadow: 0 0 0 4px var(--c-teal-bg);
}
.step__title { font-size: 16px; font-weight: 600; color: var(--c-text); margin-bottom: 8px; }
.step__desc  { font-size: 14px; color: var(--c-text-2); line-height: 1.62; max-width: 220px; margin: 0 auto; }

/* ------------------------------------------------------------
   FOUNDER
   ------------------------------------------------------------ */
.founder { padding: var(--section-pad) 0; background: var(--c-bg-alt); }
.founder__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.founder__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 23px);
  font-style: italic;
  line-height: 1.72;
  color: var(--c-text-5);
  margin-bottom: 20px;
}
.founder__attr { font-size: 14px; color: var(--c-text-3); }
.founder__attr strong { color: var(--c-text-4); font-weight: 600; }

/* ------------------------------------------------------------
   WAITLIST CTA  (always-dark section)
   ------------------------------------------------------------ */
.cta { padding: var(--section-pad) 0; background: #0A0A0A; }
[data-theme="dark"] .cta { background: #000; }
.cta__inner { text-align: center; max-width: 520px; margin: 0 auto; }
.cta .section-label    { color: var(--amber); margin-bottom: 12px; }
.cta .section-title    { color: #F4F4F5; margin-bottom: 12px; }
.cta .section-subtitle { color: #A1A1AA; margin: 0 auto 36px; }

.cta__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.cta__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #3F3F46;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.05);
  color: #F4F4F5;
  outline: none;
  transition: border-color 0.2s;
}
.cta__input::placeholder { color: #52525B; }
.cta__input:focus { border-color: var(--amber); }
.cta__note    { font-size: 12px; color: #52525B; margin-top: 12px; }
.cta__success { display: none; font-size: 16px; color: var(--amber); font-weight: 500; margin-top: 16px; }

/* ------------------------------------------------------------
   PRICING
   ------------------------------------------------------------ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--c-bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.pricing-card--featured {
  border-color: var(--teal);
  background: var(--c-bg-alt);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

[data-theme="dark"] .pricing-card--featured {
  background: var(--c-surface);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.pricing-card__top-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  font-family: var(--font-body);
}

.pricing-card__tagline {
  font-size: 14px;
  color: var(--c-text-2);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--teal);
}

.pricing-card__period {
  font-size: 15px;
  color: var(--c-text-2);
}

.pricing-card__annual {
  font-size: 12px;
  color: var(--c-text-3);
  margin-top: 4px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--c-text-4);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

.pricing-card--featured .pricing-card__features li::before {
  opacity: 1;
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-3);
  margin-top: 32px;
}

.pricing__tier-labels {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: -8px;
}

.pricing__tier-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  padding-left: 4px;
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing__tier-labels { display: none; }
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer { padding: 40px 0; border-top: 1px solid var(--c-border-sub); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__left  { display: flex; flex-direction: column; gap: 3px; }
.footer__logo  { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: var(--teal); }
.footer__logo span { color: var(--amber); }
.footer__logo img  { width: 20px; height: 20px; }
.footer__copy      { font-size: 13px; color: var(--c-text-3); }
.footer__copy a    { color: var(--c-text-3); text-decoration: underline; }
.footer__copy a:hover { color: var(--c-text-4); }
.footer__links     { display: flex; gap: 24px; list-style: none; }
.footer__links a   { font-size: 13px; color: var(--c-text-3); transition: color 0.2s; }
.footer__links a:hover { color: var(--c-text-4); }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .mock-browser { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
  .nav__cta { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--c-nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border-sub);
    padding: 20px 24px;
    gap: 16px;
    animation: fadeIn 0.2s ease;
  }
  .hero { padding: 96px 0 56px; }
  .mock-browser { display: none; }
  .features__grid, .how__steps { grid-template-columns: 1fr; }
  .pain-banner__grid { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }
  .cta__form { flex-direction: column; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hero__trust { gap: 12px; }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
