/* Nano Owl — lightweight static styles (no framework) */
:root {
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-900: #312e81;
  --purple-200: #e9d5ff;
  --purple-400: #c084fc;
  --purple-600: #9333ea;
  --purple-900: #581c87;
  --pink-100: #fce7f3;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --green-100: #dcfce7;
  --green-600: #16a34a;
  --white: #fff;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-xl: 1rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.06);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.06);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.5;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

/* Nav */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  background: var(--indigo-600);
  padding: 0.5rem;
  border-radius: 0.75rem;
  display: flex;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--indigo-600), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--indigo-600);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-inline-start: 1rem;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

.btn-primary {
  background: var(--indigo-600);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: background 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  background: var(--indigo-700);
  box-shadow: var(--shadow-xl);
}

.nav-toggle {
  display: flex;
  color: var(--slate-600);
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  padding: 0.5rem 1rem 1rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--slate-600);
  border-radius: 0.375rem;
}

.mobile-menu a:hover {
  background: var(--slate-50);
}

.mobile-menu-actions {
  border-top: 1px solid var(--slate-100);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-actions .btn-primary {
  text-align: center;
  width: 100%;
}

/* Hero */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 500px;
  background: linear-gradient(to bottom, rgb(238 242 255 / 0.8), transparent);
  z-index: -1;
}

.hero-blur-r {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -5rem;
  margin-top: -5rem;
  width: 500px;
  height: 500px;
  background: rgb(233 213 255 / 0.4);
  border-radius: 50%;
  filter: blur(64px);
  z-index: -1;
}

.hero-blur-l {
  position: absolute;
  top: 10rem;
  left: 0;
  margin-left: -5rem;
  width: 400px;
  height: 400px;
  background: rgb(199 210 254 / 0.4);
  border-radius: 50%;
  filter: blur(64px);
  z-index: -1;
}

.hero-inner {
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgb(224 231 255 / 0.5);
  color: var(--indigo-700);
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgb(199 210 254 / 0.5);
  font-size: 0.875rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(90deg, var(--indigo-600), var(--purple-600), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.625;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-lg {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-lg {
    width: auto;
  }
}

.btn-lg-primary {
  background: var(--indigo-600);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgb(99 102 241 / 0.25);
  border: none;
  transition: background 0.15s, box-shadow 0.15s;
}

.btn-lg-primary:hover {
  background: var(--indigo-700);
  box-shadow: 0 20px 25px -5px rgb(99 102 241 / 0.2);
}

.btn-lg-outline {
  background: var(--white);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: background 0.15s;
}

.btn-lg-outline:hover {
  background: var(--slate-50);
}

/* Mockup */
.mock-wrap {
  margin-top: 5rem;
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
}

.mock-frame {
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
}

.mock-header {
  height: 3rem;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
  background: rgb(248 250 252 / 0.5);
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.dot-r {
  background: #f87171;
}
.dot-y {
  background: #fbbf24;
}
.dot-g {
  background: #4ade80;
}

.mock-url {
  margin-left: 1rem;
  height: 1.5rem;
  width: 16rem;
  max-width: 40%;
  background: var(--white);
  border-radius: 0.375rem;
  border: 1px solid var(--slate-200);
}

.mock-body {
  flex: 1;
  display: flex;
  background: var(--slate-50);
}

.mock-sidebar {
  width: 16rem;
  border-right: 1px solid var(--slate-100);
  background: var(--white);
  padding: 1rem;
  display: none;
}

@media (min-width: 768px) {
  .mock-sidebar {
    display: block;
  }
}

.skel {
  border-radius: 0.5rem;
  background: var(--slate-100);
  margin-bottom: 0.5rem;
  height: 2rem;
}

.skel-indigo {
  background: var(--indigo-50);
  margin-bottom: 1rem;
}

.mock-main {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.chat-row.rev {
  flex-direction: row-reverse;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--slate-200);
  flex-shrink: 0;
}

.avatar-ai {
  background: var(--indigo-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble {
  width: 75%;
  border-radius: 1rem;
  border-top-left-radius: 0;
  border: 1px solid var(--slate-100);
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.bubble-ai {
  border-radius: 1rem;
  border-top-right-radius: 0;
  background: var(--indigo-50);
  border-color: var(--indigo-100);
  display: flex;
  gap: 1rem;
}

.bubble-inner {
  flex: 1;
}

.thumb {
  width: 6rem;
  height: 6rem;
  background: var(--indigo-200);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.float-card {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  animation: bounce-soft 3s ease-in-out infinite;
}

@media (max-width: 767px) {
  .float-card {
    right: 0;
    bottom: -1rem;
    scale: 0.9;
  }
}

@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-white {
  background: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.section-head p {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 42rem;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--slate-50);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  border: 1px solid var(--slate-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.card p {
  color: var(--slate-600);
  margin: 0 0 1rem;
  line-height: 1.625;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Showcase dark */
.showcase {
  background: var(--slate-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgb(79 70 229 / 0.2);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.showcase .section-head p {
  color: var(--slate-400);
}

.showcase-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .showcase-layout {
    flex-direction: row;
    align-items: center;
  }
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .tabs {
    width: 33.333%;
  }
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
  width: 100%;
  background: rgb(30 41 59 / 0.5);
  color: var(--slate-400);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tab-btn:hover {
  background: var(--slate-800);
  color: var(--slate-200);
}

.tab-btn.is-active {
  background: var(--indigo-600);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgb(49 46 129 / 0.5);
  transform: scale(1.02);
}

.tab-btn h4 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.tab-btn .sub {
  font-size: 0.875rem;
  margin: 0;
}

.tab-btn.is-active .sub {
  color: var(--indigo-100);
}

.tab-btn:not(.is-active) .sub {
  color: var(--slate-500);
}

.show-panel-wrap {
  width: 100%;
  background: var(--slate-800);
  border-radius: 1.5rem;
  padding: 0.5rem;
  border: 1px solid var(--slate-700);
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .show-panel-wrap {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .show-panel-wrap {
    width: 66.666%;
  }
}

.show-panel {
  background: var(--slate-900);
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .show-panel {
    aspect-ratio: 16 / 9;
  }
}

.panel-hidden {
  display: none;
}

.panel-visible {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  animation: fadeIn 0.35s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dark-bubble {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--slate-200);
  align-self: flex-end;
  max-width: 80%;
  border-top-right-radius: 0;
}

.reply-row {
  display: flex;
  gap: 1rem;
}

.reply-bubble {
  flex: 1;
  background: rgb(79 70 229 / 0.2);
  border: 1px solid rgb(99 102 241 / 0.3);
  border-radius: 0.75rem;
  border-top-left-radius: 0;
  padding: 1rem;
  color: var(--indigo-100);
}

.reply-bubble .muted {
  color: var(--indigo-300);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.prompt-bar {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.prompt-bar span {
  color: var(--slate-300);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .prompt-bar span {
    font-size: 1rem;
  }
}

.image-stage {
  flex: 1;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-700);
  background: linear-gradient(to bottom right, rgb(88 28 135 / 0.4), rgb(30 58 138 / 0.4));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
}

.image-stage .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.image-stage .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(88 28 135 / 0.85), transparent);
}

.video-stage {
  flex: 1;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-700);
  background: var(--slate-950);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  overflow: hidden;
}

.video-stage .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgb(255 255 255 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.08);
}

.timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: rgb(15 23 42 / 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--slate-800);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
}

.timeline-bar {
  flex: 1;
  height: 0.5rem;
  background: var(--slate-800);
  border-radius: 9999px;
  overflow: hidden;
}

.timeline-fill {
  width: 33%;
  height: 100%;
  background: var(--pink-500);
  border-radius: 9999px;
}

.timeline span {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.input-preview {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  padding: 1rem;
  border-radius: 0.75rem;
  flex: 1;
}

.input-preview .label {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-bottom: 0.5rem;
}

.input-preview .text {
  font-size: 0.875rem;
  color: var(--slate-200);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.price-card.featured {
  background: var(--indigo-600);
  border-color: var(--indigo-700);
  box-shadow: var(--shadow-xl);
  position: relative;
}

@media (min-width: 768px) {
  .price-card.featured {
    transform: translateY(-1rem);
  }
}

.badge-popular {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--pink-500), var(--purple-600));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.price-card.featured h3 {
  color: var(--white);
}

.price-card .desc {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.price-card:not(.featured) .desc {
  color: var(--slate-500);
}

.price-card.featured .desc {
  color: var(--indigo-200);
}

.price-tag {
  margin-bottom: 1.5rem;
}

.price-tag .amt {
  font-size: 2.25rem;
  font-weight: 900;
}

.price-card:not(.featured) .amt {
  color: var(--slate-900);
}

.price-card.featured .amt {
  color: var(--white);
}

.price-tag .period {
  color: var(--slate-500);
}

.price-card.featured .period {
  color: var(--indigo-200);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.price-card:not(.featured) li {
  color: var(--slate-600);
}

.price-card.featured li {
  color: var(--white);
}

.btn-block {
  width: 100%;
  padding: 0.75rem;
  border-radius: 9999px;
  font-weight: 800;
  transition: background 0.15s, color 0.15s;
}

.btn-outline-indigo {
  border: 2px solid var(--indigo-600);
  color: var(--indigo-600);
  background: transparent;
}

.btn-outline-indigo:hover {
  background: var(--indigo-50);
}

.btn-white {
  background: var(--white);
  color: var(--indigo-600);
  border: none;
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--slate-50);
}

/* Stats */
.stats {
  background: var(--indigo-600);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--indigo-200);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid > div:not(:first-child) {
    border-left: 1px solid rgb(99 102 241 / 0.5);
    padding-left: 2rem;
  }
}

/* CTA */
.cta {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-inner {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
}

.cta p {
  font-size: 1.25rem;
  color: var(--slate-600);
  margin: 0 0 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.btn-secondary-lg {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  background: var(--slate-100);
  color: var(--slate-800);
  border: none;
  transition: background 0.15s;
}

.btn-secondary-lg:hover {
  background: var(--slate-200);
}

.cta-blur-tl {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: var(--pink-100);
  border-radius: 50%;
  filter: blur(48px);
  margin-top: -8rem;
  margin-left: -8rem;
  z-index: 0;
}

.cta-blur-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: var(--indigo-100);
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
}

/* Footer */
.footer {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand p {
  color: var(--slate-500);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 0.875rem;
  color: var(--slate-400);
}

.footer-col h4 {
  font-weight: 800;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--slate-500);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--indigo-600);
}

.footer-bottom {
  border-top: 1px solid var(--slate-200);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* Legal pages */
.legal-page {
  padding: 6rem 0 4rem;
  min-height: 100vh;
}

.legal-inner {
  max-width: 48rem;
  margin-inline: auto;
}

.legal-inner h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-inner h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
  color: var(--slate-900);
}

.legal-inner h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.35rem 0 0.5rem;
  color: var(--slate-800);
}

.legal-inner .policy-lead {
  font-size: 1rem;
  color: var(--slate-700);
}

.legal-inner .principles-list {
  list-style: disc;
  margin: 1rem 0 2rem;
}

.legal-inner .principles-list li {
  margin-bottom: 0.65rem;
}

.legal-inner p,
.legal-inner ul {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-inner ul {
  padding-left: 1.25rem;
}

.legal-inner li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--indigo-600);
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

/* Icons inline sizing */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 768px) {
  .tab-btn .icon-xl {
    width: 2rem;
    height: 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
