/* ───────────────────────────────────────
   FreeBusy — Pink Liquid Glass Theme
   ─────────────────────────────────────── */

:root {
  --pink-50:  #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-900: #831843;

  --glass-bg:       rgba(255, 255, 255, 0.08);
  --glass-border:   rgba(255, 255, 255, 0.18);
  --glass-blur:     20px;
  --glass-shadow:   0 8px 32px rgba(131, 24, 67, 0.18);

  --text-primary:   #fff;
  --text-secondary: rgba(255, 255, 255, 0.78);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0011 0%, #3b0a2a 25%, #2d1b4e 50%, #1a0a2e 75%, #0d0015 100%);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ── Animated background blobs ────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink-500), transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink-300), transparent 70%);
  bottom: -15%; right: -10%;
  animation-delay: -6s;
}

.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(60px, -40px) scale(1.1); }
  50%      { transform: translate(-30px, 50px) scale(0.95); }
  75%      { transform: translate(40px, 20px) scale(1.05); }
}

/* ── Glass utility ────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              box-shadow 0.35s cubic-bezier(.4,0,.2,1),
              border-color 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.25);
  border-color: rgba(244, 114, 182, 0.35);
}

/* ── Navbar ───────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.nav-brand {
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--pink-300);
}

/* ── Container ────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
  display: grid;
  gap: 5rem;
}

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  min-height: calc(100vh - 6rem);
}

/* ── Hero → page scroll transition ───── */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.75;
  transition: color 0.25s, opacity 0.25s;
  animation: cue-bob 2.2s ease-in-out infinite;
}

.scroll-cue:hover {
  color: var(--pink-300);
  opacity: 1;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
}

@keyframes cue-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

@keyframes hero-lift {
  to { opacity: 0; transform: translateY(-52px) scale(0.97); }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-content,
    .hero-phone {
      animation: hero-lift linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 85%;
    }
  }
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-200);
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.35);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  background: linear-gradient(135deg, #fff 20%, var(--pink-300) 60%, var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 4px 24px rgba(236, 72, 153, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.55);
}

.cta-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 114, 182, 0.4);
  box-shadow: none;
  color: var(--pink-200);
}

.cta-btn-ghost:hover {
  background: rgba(244, 114, 182, 0.12);
  box-shadow: 0 4px 24px rgba(236, 72, 153, 0.25);
}

.cta-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.4rem 0.65rem 0.7rem;
  background: linear-gradient(135deg, #0f0d1a, #1a1230);
  border: 1px solid rgba(244, 114, 182, 0.45);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(244, 114, 182, 0.1) inset;
  color: #fff;
}

.cta-btn-play:hover {
  background: linear-gradient(135deg, #14112a, #211642);
  box-shadow: 0 10px 32px rgba(236, 72, 153, 0.35), 0 0 0 1px rgba(244, 114, 182, 0.25) inset;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: #fff;
  flex-shrink: 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.cta-label {
  font-weight: 600;
  font-size: 1rem;
}

.cta-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}

/* ── Screenshot gallery ──────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 1.5rem;
  justify-items: center;
  align-items: start;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 260px;
}

.gallery-item .phone-frame {
  transform: rotate(0deg);
}

.gallery-item:nth-child(2n) .phone-frame {
  transform: rotate(1.5deg);
}

.gallery-item:nth-child(2n + 1) .phone-frame {
  transform: rotate(-1.5deg);
}

.gallery-item .phone-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.gallery-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gallery-item figcaption strong {
  font-weight: 700;
  color: var(--pink-200);
  font-size: 1rem;
}

.gallery-item figcaption span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ── Nav CTA ──────────────────────────── */
.nav-cta {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
}

.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

/* ── Download ─────────────────────────── */
.download {
  padding: 2.75rem clamp(1.5rem, 4vw, 3rem);
}

.download-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.download-body .pill {
  margin-bottom: 1rem;
}

.download h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #fff, var(--pink-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.download-cta-row {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.cta-btn-play-lg {
  padding: 0.8rem 1.8rem 0.8rem 0.9rem;
}

.cta-btn-play-lg .play-icon {
  width: 44px;
  height: 44px;
}

.cta-btn-play-lg .cta-label {
  font-size: 1.25rem;
  font-weight: 700;
}

.download-facts {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 480px;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.download-facts li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.5;
}

.download-facts li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
}

.download-facts strong { color: var(--text-primary); font-weight: 600; }

.download-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
  opacity: 0.85;
}

.download-note a {
  color: var(--pink-300);
  text-decoration: none;
  font-weight: 600;
}

.download-note a:hover { text-decoration: underline; }

/* ── FAQ ──────────────────────────────── */
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-primary);
  position: relative;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--pink-200); }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pink-300);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item p a {
  color: var(--pink-300);
  text-decoration: none;
  font-weight: 600;
}

.faq-item p a:hover { text-decoration: underline; }

/* ── Phone frame (screenshots) ───────── */
.hero-phone,
.showcase-phones {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 280px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  box-shadow:
    0 24px 60px rgba(131, 24, 67, 0.45),
    0 0 0 1px rgba(244, 114, 182, 0.15) inset;
  transform: rotate(-1.5deg);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.phone-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.phone-frame img {
  display: block;
  width: 100%;
  border-radius: 28px;
}

.phone-small {
  width: 240px;
  transform: rotate(2deg);
}

/* ── Trust strip ─────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  align-items: center;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--pink-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(transparent, rgba(244, 114, 182, 0.4), transparent);
}

/* ── Section Titles ───────────────────── */
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #fff, var(--pink-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-left {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff, var(--pink-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.6;
}

/* ── Features ─────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--pink-200);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── How it works ────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.how-card {
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
}

.how-step {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
}

.how-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pink-200);
}

.how-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ── Showcase (pivot screenshot) ──────── */
.showcase-pivot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.7rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
}

/* ── Privacy callout ──────────────────── */
.privacy-callout {
  padding: 2.5rem 2rem;
  text-align: center;
}

.privacy-callout-body {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-callout h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--pink-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-callout p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ── Contact ──────────────────────────── */
.contact-section {
  text-align: center;
}

.contact-subtitle {
  color: var(--text-secondary);
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-subtitle a {
  color: var(--pink-300);
  text-decoration: none;
  font-weight: 600;
}

.contact-subtitle a:hover {
  text-decoration: underline;
}

.card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem;
}

.form {
  display: grid;
  gap: 1.1rem;
  text-align: left;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pink-200);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2);
}

button[type="submit"] {
  font: inherit;
}

#status {
  min-height: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--pink-300);
}

/* ── Footer ───────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem;
  border-radius: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-row {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--pink-300);
}

/* ── Legal page (privacy.html) ───────── */
.legal {
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: 880px;
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--pink-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-200);
}

.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pink-200);
}

.legal p,
.legal li {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
}

.legal p { margin-bottom: 0.85rem; }

.legal ul,
.legal ol {
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  display: grid;
  gap: 0.3rem;
}

.legal a {
  color: var(--pink-300);
  text-decoration: none;
}
.legal a:hover { text-decoration: underline; }

.legal strong { color: var(--text-primary); font-weight: 600; }

.legal code {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.85em;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pink-200);
}

.table-wrap {
  overflow-x: auto;
  margin: 0.5rem 0 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal th,
.legal td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  vertical-align: top;
}

.legal th {
  background: rgba(244, 114, 182, 0.08);
  color: var(--pink-200);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal tr:last-child td { border-bottom: none; }

/* ── Blog ─────────────────────────────── */
.blog-hero {
  display: block;
  text-align: center;
}

.blog-hero-title {
  margin-top: 1rem;
}

.blog-hero-subtitle {
  margin: 1rem auto 0;
  max-width: 42rem;
}

.blog-list-section {
  padding-top: 1rem;
}

.blog-list-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-list-card:hover h3 {
  text-decoration: underline;
}

.blog-list-meta {
  margin-top: 0.85rem;
  opacity: 0.7;
  font-size: 0.875rem;
}

.legal blockquote {
  margin: 1.2rem 0;
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 3px solid var(--accent, #ff4d8d);
  color: var(--text-primary);
  font-style: italic;
}

.blog-post-cta {
  margin-top: 2rem;
}

/* ── Fade-in animation ────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1),
              transform 0.7s cubic-bezier(.4,0,.2,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .scroll-cue {
    display: none;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-phone {
    margin-top: 1rem;
  }

  .phone-frame {
    width: 240px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.4), transparent);
    margin: 0 auto;
  }

  .showcase-pivot {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-text .checklist {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  /* Keep the mobile header uncluttered: show only the install CTA.
     Every section link is still reachable via the footer. */
  .nav-links a:not(.nav-cta) { display: none; }

  .navbar {
    padding: 0.8rem 1.2rem;
  }

  .container {
    gap: 3.5rem;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}
