:root {
  --bg: #FFFFFF;
  --bg-dark: #F7F9FC;
  --surface: #FFFFFF;
  --surface-2: #F4F7FB;
  --text: #1A2233;
  --text-2: #5B6779;
  --text-3: #9AA6B8;
  --accent: #3B6FF5;
  --accent-light: #EEF3FF;
  --accent-dark: #2F5CD8;
  --green: #10B981;
  --green-light: #E9FBF3;
  --border: #EAEEF5;
  --border-2: #DCE2EC;
  --radius: 10px;
  --radius-lg: 16px;
}

:root[data-theme="light"], :root[data-theme="dark"] {
  --bg: #FFFFFF;
  --bg-dark: #F7F9FC;
  --surface: #FFFFFF;
  --surface-2: #F4F7FB;
  --text: #1A2233;
  --text-2: #5B6779;
  --text-3: #9AA6B8;
  --accent: #3B6FF5;
  --accent-light: #EEF3FF;
  --accent-dark: #2F5CD8;
  --green: #10B981;
  --green-light: #E9FBF3;
  --border: #EAEEF5;
  --border-2: #DCE2EC;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-image {
  display: block;
  width: 202px;
  height: 46px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-logo-image { width: 176px; height: 40px; }
  .nav-cta .btn-ghost { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 11px 22px;
}
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 11px 22px;
  border: 1.5px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent-light); text-decoration: none; }
.btn-lg { font-size: 16px; padding: 14px 28px; border-radius: var(--radius); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  font-size: 14px;
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--text); text-decoration: none; }

/* HERO */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.7;
  pointer-events: none;
}
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: 32px;
}
.hero-content { position: relative; max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
h1.hero-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
h1.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-fine {
  font-size: 13px;
  color: var(--text-3);
}
.hero-fine strong { color: var(--text-2); font-weight: 500; }
.privacy-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 540px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(24, 36, 65, .06);
}
.privacy-proof-head {
  grid-column: 1 / -1;
  padding: 12px 15px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #f7f9ff, #fdfbff);
}
.privacy-proof-head span {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.privacy-proof-head strong { display: block; color: var(--text); font-size: 15px; line-height: 1.25; }
.privacy-proof-item { padding: 13px 15px; }
.privacy-proof-visible { border-right: 1px solid var(--border); }
.privacy-proof-private { background: #faf8ff; }
.privacy-proof-label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.privacy-proof strong { display: block; color: var(--text); font-size: 15px; line-height: 1.2; }
.privacy-proof-visible strong { color: var(--accent); }
.privacy-proof small { display: block; margin-top: 4px; color: var(--text-3); font-size: 11px; line-height: 1.35; }

/* Animated calendar sync preview */
.calendar-sync-animation {
  position: relative;
  width: min(100%, 560px);
  height: 330px;
  justify-self: end;
  isolation: isolate;
}
.sync-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 0;
}
.sync-path {
  fill: none;
  stroke: #cbd9ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: .02 .05;
  animation: sync-dash 2.8s linear infinite;
}
.sync-traveler { fill: var(--accent); filter: drop-shadow(0 0 5px rgba(59, 111, 245, .55)); }
.sync-traveler-two { fill: #7e5bef; }
.sync-hub {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 3;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid #dbe5ff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 26px rgba(59, 111, 245, .14);
  color: var(--accent);
  animation: sync-pulse 2.7s ease-in-out infinite;
}
.sync-hub span { font-size: 21px; line-height: 18px; font-weight: 700; }
.sync-hub small { font-size: 8px; letter-spacing: .11em; font-weight: 700; margin-top: 2px; }
.mini-calendar {
  position: absolute;
  z-index: 1;
  width: 178px;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid #e3e7ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 34px rgba(24, 36, 65, .09);
  animation: calendar-float 5.6s ease-in-out infinite;
}
.mini-calendar-google { left: 0; top: 62px; }
.mini-calendar-outlook { right: 0; top: 24px; animation-delay: -1.8s; }
.mini-calendar-apple { left: 50%; bottom: 0; transform: translateX(-50%); animation-delay: -3.2s; }
.mini-calendar-head {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 11px;
  border-bottom: 1px solid #e4e8f0;
  color: #5d6676;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.provider-mark { display: inline-grid; place-items: center; width: 13px; height: 13px; font-size: 12px; font-weight: 800; }
.google-mark { color: #4285f4; }
.outlook-mark { color: #fff; background: #2074d4; font-size: 10px; }
.apple-mark { color: #1d2430; font-size: 15px; }
.mini-calendar-body {
  display: grid;
  grid-template-columns: 27px 1fr;
  grid-auto-rows: 34px;
  padding: 6px 7px 8px;
}
.mini-time { padding-top: 4px; color: #a4acb9; font-size: 7px; text-align: right; padding-right: 6px; }
.mini-event {
  align-self: stretch;
  margin: 2px 0;
  padding: 5px 7px;
  overflow: hidden;
  border-left: 2px solid currentColor;
  border-radius: 7px;
  font-size: 8px;
  line-height: 12px;
  color: #364152;
  animation: event-sync 4.8s ease-in-out infinite;
}
.mini-event:nth-child(4) { animation-delay: -.8s; }
.mini-event:nth-child(6) { animation-delay: -1.6s; }
.mini-event:nth-child(8) { animation-delay: -2.4s; }
.event-green { color: #2f9e71; background: #e5f8ef; }
.event-blue { color: #4285f4; background: #eaf3ff; }
.event-yellow { color: #bf8a08; background: #fff7dc; }
.event-purple { color: #8056dc; background: #f1edff; }
.event-slate { color: #98a1b0; background: #f1f3f6; }
.event-red { color: #e15a70; background: #fff0f3; }
.event-orange { color: #e48a3d; background: #fff3e7; }
@keyframes sync-dash { to { stroke-dashoffset: -.28; } }
@keyframes sync-pulse { 50% { box-shadow: 0 8px 34px rgba(59, 111, 245, .28); transform: translate(-50%, -50%) scale(1.08); } }
@keyframes calendar-float { 50% { translate: 0 -7px; } }
@keyframes event-sync { 0%, 75%, 100% { opacity: 1; transform: scale(1); } 84% { opacity: .62; transform: scale(.96); } 92% { opacity: 1; transform: scale(1.02); } }
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; gap: 18px; }
  .calendar-sync-animation { justify-self: center; margin-top: 8px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 56px; }
  .privacy-proof { grid-template-columns: 1fr; }
  .privacy-proof-visible { border-right: 0; border-bottom: 1px solid var(--border); }
  .calendar-sync-animation { width: 100%; height: 276px; transform: scale(.88); transform-origin: top center; margin-bottom: -28px; }
}
@media (prefers-reduced-motion: reduce) {
  .sync-path, .sync-hub, .mini-calendar, .mini-event { animation: none; }
  .sync-traveler { display: none; }
}

/* STATS BAR */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  display: block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-inner { justify-content: center; gap: 32px; }
}

/* PRODUCT PREVIEW */
.product-preview-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
}
.product-preview-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.product-preview-intro .section-label { margin-bottom: 9px; }
.product-preview-intro .section-title { max-width: 610px; }
.product-preview-intro p {
  max-width: 380px;
  margin: 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.55;
}
.product-preview-frame {
  overflow: hidden;
  border: 1px solid #dce4f2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 56px rgba(24, 36, 65, .12);
}
.product-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  .product-preview-section { padding: 64px 0; }
  .product-preview-intro { display: block; margin-bottom: 24px; }
  .product-preview-intro p { margin-top: 14px; }
  .product-preview-frame { border-radius: 10px; }
}

/* SECTION HEADINGS */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
h2.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-section { padding: 80px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 52px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--surface);
  padding: 36px 32px;
}
.step-num {
  font-family: Georgia, serif;
  font-size: 42px;
  color: var(--accent-light);
  color: var(--border-2);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.step p { font-size: 15px; color: var(--text-2); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-meta {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 2px;
}
.testimonials-cta {
  text-align: center;
  margin-top: 36px;
}

/* WHO IT'S FOR */
.who-section { padding: 80px 0; }
.personas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.persona {
  background: var(--surface);
  padding: 28px;
}
.persona-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}
.persona h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.persona p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.who-cta { margin-top: 32px; }

/* FEATURES */
.features-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 52px;
}
.feature-item { }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.feature-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.features-cta { margin-top: 40px; }

/* PRIVACY TABLE */
.privacy-section { padding: 80px 0; }
.privacy-table-wrap { overflow-x: auto; margin-top: 48px; }
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.privacy-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 2px solid var(--border);
  padding: 0 0 12px;
}
.privacy-table th:last-child, .privacy-table td:last-child { text-align: right; }
.privacy-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.privacy-table tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-gray { background: var(--surface-2); color: var(--text-2); }

/* PRICING */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 8px;
  margin: 32px 0 48px;
  font-size: 14px;
}
.toggle-btn {
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-2);
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.15s;
}
.toggle-btn.active {
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}
.toggle-save {
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.03em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.plan-card.featured {
  border-color: var(--accent);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.plan-tagline {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.plan-price .per { font-size: 14px; color: var(--text-3); }
.plan-billing {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta { display: flex; flex-direction: column; gap: 8px; }
.plan-cta .btn { justify-content: center; width: 100%; }
.plan-cta .btn-primary.featured-btn { background: var(--accent); }
.pricing-footer {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-3);
}
.pricing-footer strong { color: var(--text-2); font-weight: 500; }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--text-3);
  transition: transform 0.2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-contact {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-2);
}

/* FINAL CTA */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.final-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: normal;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  text-wrap: balance;
}
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  position: relative;
}
.final-cta .actions { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.15s;
}
.final-cta .btn-white:hover { background: #F0F4FF; text-decoration: none; }
.final-cta .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.15s;
}
.final-cta .btn-outline-white:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.final-cta .fine {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  position: relative;
}

/* BLOG SECTION */
.blog-section { padding: 80px 0; background: var(--bg-dark); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.15s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.blog-card a { display: block; text-decoration: none; color: inherit; }

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
}
.footer-logo img {
  display: block;
  width: 148px;
  height: auto;
}
.footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }

/* WORKS WITH */
.calendars-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.calendar-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--text-2);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
  .how-section, .who-section, .features-section, .privacy-section,
  .pricing-section, .faq-section, .blog-section, .testimonials-section { padding: 60px 0; }
  .final-cta { padding: 72px 0; }
  .footer-grid { gap: 28px; }
  .steps, .personas { border-radius: var(--radius); }
}

/* ===== SUBPAGE / CONTENT STYLES ===== */
.page-hero { padding: 64px 0 40px; position: relative; }
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 20px;
  max-width: 780px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.6;
}
.page-hero .lead a { font-weight: 500; }
.page-hero .hero-actions { margin-top: 28px; }

.content-section { padding: 44px 0; border-top: 1px solid var(--border); }
.content-section:first-of-type { border-top: none; }
.content-block { max-width: 760px; }
.content-block .kicker {
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.content-block h2 {
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.25;
  margin-bottom: 6px; text-wrap: balance;
}
.content-block .subhead { font-size: 16px; color: var(--text-3); margin-bottom: 18px; }
.content-block p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul.plain { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.content-block ul.plain li { display: flex; gap: 10px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.content-block ul.plain li::before { content: '—'; color: var(--accent); flex-shrink: 0; }
.content-block strong { color: var(--text); font-weight: 600; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 40px;
  background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.info-card { background: var(--surface); padding: 28px; }
.info-card .ic { font-size: 22px; margin-bottom: 12px; display: block; }
.info-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.info-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.info-card .tag { display:inline-block; margin-top:12px; font-size:12px; color:var(--text-3); }
.info-card a { font-size: 13px; font-weight: 500; }

.data-table-wrap { overflow-x: auto; margin: 24px 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-3); border-bottom: 2px solid var(--border); padding: 0 12px 10px 0; }
.data-table td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--border); color: var(--text-2); vertical-align: top; }
.data-table td:first-child { color: var(--text); font-weight: 500; }
.data-table tr:last-child td { border-bottom: none; }

.code-box {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px; color: var(--text); overflow-x: auto; margin: 8px 0 16px;
}
.code-box .lbl { display:block; font-family: system-ui, sans-serif; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-3); margin-bottom: 4px; }

/* BLOG LIST */
.blog-list { margin-top: 40px; display: flex; flex-direction: column; }
.blog-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border); text-decoration: none;
}
.blog-row:first-child { border-top: 1px solid var(--border); }
.blog-row:hover { text-decoration: none; }
.blog-row:hover .blog-row-title { color: var(--accent); }
.blog-row-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.4; flex: 1; transition: color 0.15s; }
.blog-row-meta { font-size: 13px; color: var(--text-3); white-space: nowrap; flex-shrink: 0; font-variant-numeric: tabular-nums; }
@media (max-width: 600px) { .blog-row { flex-direction: column; gap: 4px; } }

.featured-post {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; margin-top: 40px; display: block; text-decoration: none;
}
.featured-post:hover { border-color: var(--accent); text-decoration: none; }
.featured-post .fp-tag { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; }
.featured-post h3 { font-family: Georgia, serif; font-size: 26px; font-weight: normal; color: var(--text); margin: 10px 0; line-height: 1.2; }
.featured-post p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.featured-post .fp-meta { font-size: 13px; color: var(--text-3); margin-top: 12px; }

/* PROSE (legal pages) */
.prose { max-width: 720px; }
.prose h2 { font-size: 20px; font-weight: 600; color: var(--text); margin: 32px 0 10px; }
.prose h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 22px 0 8px; }
.prose p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 12px; }
.prose ul { margin: 12px 0 12px 20px; }
.prose li { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 6px; }
.prose .meta { font-size: 14px; color: var(--text-3); margin-bottom: 8px; }
.prose strong { color: var(--text); font-weight: 600; }

.mini-cta {
  text-align: center; padding: 56px 0; border-top: 1px solid var(--border);
}
.mini-cta h2 { font-family: Georgia, serif; font-size: clamp(26px, 4vw, 36px); font-weight: normal; color: var(--text); margin-bottom: 14px; text-wrap: balance; }
.mini-cta p { font-size: 16px; color: var(--text-2); margin-bottom: 24px; }
.mini-cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== WAITLIST MODAL ===== */
.wl-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(16, 26, 48, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.wl-overlay.open { display: flex; }
.wl-modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); max-width: 440px; width: 100%;
  padding: 32px; position: relative;
  box-shadow: 0 24px 60px rgba(16,26,48,0.25);
}
.wl-close {
  position: absolute; top: 16px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: var(--surface-2); color: var(--text-2);
  font-size: 18px; line-height: 1; cursor: pointer; transition: all 0.15s;
}
.wl-close:hover { background: var(--border); color: var(--text); }
.wl-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.wl-modal h3 {
  font-family: Georgia, serif; font-size: 24px; font-weight: 700;
  color: var(--text); margin-bottom: 10px; line-height: 1.2;
}
.wl-modal p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-field label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.wl-input {
  width: 100%; padding: 12px 14px; font-size: 15px; font-family: inherit;
  color: var(--text); background: var(--surface-2);
  border: 1.5px solid var(--border-2); border-radius: var(--radius);
  transition: border-color 0.15s; outline: none;
}
.wl-input:focus { border-color: var(--accent); }
.wl-input.error { border-color: #E24B4A; }
.wl-err { font-size: 13px; color: #E24B4A; min-height: 18px; }
.wl-submit {
  width: 100%; margin-top: 8px; justify-content: center;
  font-size: 16px; padding: 13px 22px;
}
.wl-fine { font-size: 12px; color: var(--text-3); text-align: center; margin: 14px 0 0; }
