/* ===== CSS Custom Properties (Light Mode Default) ===== */
:root {
  /* Neutrals */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #e8e8ed;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --border-color: #d2d2d7;

  /* Brand colors from the app's feature cards */
  --color-coral: rgb(217, 115, 97);
  --color-blue: rgb(102, 166, 217);
  --color-green: rgb(140, 191, 115);
  --color-purple: rgb(179, 140, 204);
  --color-orange: rgb(230, 166, 89);
  --color-teal: rgb(95, 185, 180);

  /* Backgrounds for feature cards */
  --coral-bg: rgba(217, 115, 97, 0.1);
  --blue-bg: rgba(102, 166, 217, 0.1);
  --green-bg: rgba(140, 191, 115, 0.1);
  --purple-bg: rgba(179, 140, 204, 0.1);
  --orange-bg: rgba(230, 166, 89, 0.1);
  --teal-bg: rgba(95, 185, 180, 0.1);

  /* Accent */
  --accent: #d97361;
  --accent-hover: #c4624f;

  /* Pricing */
  --card-bg: #ffffff;
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);

  /* Hero gradient */
  --hero-gradient: linear-gradient(135deg, #fdf0ed 0%, #f0e6f6 50%, #e6f0fa 100%);

  /* Nav */
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-border: rgba(0, 0, 0, 0.1);

  /* Screenshot mockup */
  --mockup-bg: #1e1e1e;

  /* FAQ */
  --faq-border: #e8e8ed;
  --faq-hover: #f5f5f7;
}

/* ===== Dark Mode ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1c1c1e;
    --bg-tertiary: #2c2c2e;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #86868b;
    --border-color: #38383a;

    --coral-bg: rgba(217, 115, 97, 0.15);
    --blue-bg: rgba(102, 166, 217, 0.15);
    --green-bg: rgba(140, 191, 115, 0.15);
    --purple-bg: rgba(179, 140, 204, 0.15);
    --orange-bg: rgba(230, 166, 89, 0.15);
    --teal-bg: rgba(95, 185, 180, 0.15);

    --accent: #e08a7a;
    --accent-hover: #d97361;

    --card-bg: #1c1c1e;
    --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.5);

    --hero-gradient: linear-gradient(135deg, #1a1210 0%, #1a1520 50%, #101520 100%);

    --nav-bg: rgba(10, 10, 10, 0.85);
    --nav-border: rgba(255, 255, 255, 0.1);

    --mockup-bg: #1e1e1e;

    --faq-border: #2c2c2e;
    --faq-hover: #1c1c1e;
  }
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
  transform: scale(1.03);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--hero-gradient);
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
}

.hero-icon {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 40px rgba(217, 115, 97, 0.25);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-tertiary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mac-app-store-badge {
  height: 44px;
  transition: transform 0.2s ease;
}

.mac-app-store-badge:hover {
  transform: scale(1.05);
}

.badge-ios {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== Features ===== */
.features {
  background: var(--bg-secondary);
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-icon.coral   { background: var(--coral-bg);  color: var(--color-coral);  }
.feature-icon.blue    { background: var(--blue-bg);   color: var(--color-blue);   }
.feature-icon.green   { background: var(--green-bg);  color: var(--color-green);  }
.feature-icon.purple  { background: var(--purple-bg); color: var(--color-purple); }
.feature-icon.orange  { background: var(--orange-bg); color: var(--color-orange); }
.feature-icon.teal    { background: var(--teal-bg);   color: var(--color-teal);   }

.feature-card h3 {
  margin-bottom: 0.5rem;
}

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

/* 3 columns on desktop (clean 3x2 grid for 6 cards) */
@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Interface Showcase ===== */
.showcase {
  background: var(--bg-primary);
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.showcase-tab {
  background: var(--bg-tertiary);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.showcase-tab:hover {
  color: var(--text-primary);
  background: var(--border-color);
}

.showcase-tab.active {
  background: var(--accent);
  color: #fff;
}

.showcase-window {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (prefers-color-scheme: dark) {
  .showcase-window {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
}

.window-body {
  position: relative;
  background: var(--mockup-bg);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.screenshot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-slide.active {
  opacity: 1;
}

.screenshot-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.screenshot-placeholder {
  color: var(--text-tertiary);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.screenshot-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* ===== Contracts ===== */
/* ===== Pricing ===== */
.pricing {
  background: var(--bg-primary);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0.25rem 0 0.15rem;
  letter-spacing: -0.035em;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1.35rem;
  vertical-align: super;
  font-weight: 600;
}

.pricing-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  min-height: 1.5rem;
}

.pricing-strike {
  color: var(--text-tertiary);
  text-decoration: line-through;
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-save {
  background: var(--green-bg);
  color: var(--color-green);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-period {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Launch-promo vs regular-pricing visibility.
   Set by the inline <head> script via [data-pricing] on <html>:
     launch   → before 2026-09-01 00:00 PT
     regular  → on and after that date
   Default (before JS) hides .price-regular so visitors see launch first. */
.price-regular { display: none; }
[data-pricing="regular"] .price-launch { display: none; }
[data-pricing="regular"] .price-regular { display: inline; }

.launch-only { display: none; }
[data-pricing="launch"] .launch-only { display: block; }

.pricing-launch-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin: 1.75rem auto 0;
  max-width: 820px;
  font-style: italic;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.pricing-btn.secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.pricing-btn.secondary:hover {
  background: var(--border-color);
}

.pricing-btn.primary {
  background: var(--accent);
  color: #fff;
}

.pricing-btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ===== CTA ===== */
.cta {
  background: var(--hero-gradient);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-brand img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.footer-ios {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Hero entrance */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FAQ Page ===== */
.faq-page {
  padding-top: 100px;
  min-height: 100vh;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-tertiary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 1.4rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Doc Pages (Privacy, Support, Release Notes) ===== */
.privacy-page,
.support-page,
.release-notes-page {
  padding-top: 100px;
  min-height: 100vh;
}

.privacy-content,
.support-content,
.release-notes-content {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-content h2,
.support-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content p,
.support-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.privacy-content ul,
.support-content ul {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.8;
}

.support-content li + li {
  margin-top: 0.5rem;
}

/* Support-page intro paragraph (slightly larger than body) */
.support-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Prominent "Email us" card at the top of the support page */
.support-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow);
  color: inherit;
}

.support-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--coral-bg);
  color: var(--color-coral);
  flex-shrink: 0;
}

.support-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.support-contact-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Release notes intro and per-version entries */
.release-notes-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Platform selector tabs (macOS / iOS) */
.release-notes-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.release-notes-tab {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.release-notes-tab:hover {
  color: var(--text-primary);
}

.release-notes-tab.active {
  background: var(--accent);
  color: #fff;
}

/* Muted tag for "In development" / "Coming soon" badges */
.release-entry-tag.tag-pending {
  background: var(--blue-bg);
  color: var(--color-blue);
}

/* Dim placeholder entries slightly to communicate "not yet shipped" */
.release-entry-pending .release-entry-body {
  color: var(--text-tertiary);
}

.release-entry {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.release-entry:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.release-entry-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 1rem;
}

.release-entry-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.release-entry-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.release-entry-tag {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: var(--coral-bg);
  color: var(--color-coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.release-entry-body {
  color: var(--text-secondary);
  line-height: 1.7;
}

.release-entry-body p {
  margin-bottom: 1rem;
}

.release-entry-body p:last-child {
  margin-bottom: 0;
}

.release-entry-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.release-entry-body li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }


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

  .footer-links {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .showcase-tabs {
    gap: 0.35rem;
  }

  .showcase-tab {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }
}
