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

  :root {
    --navy: #0f1f3d;
    --navy-light: #1a3060;
    --blue: #1a73e8;
    --blue-light: #4a9bff;
    --blue-pale: #e8f0fe;
    --accent: #00c896;
    --accent-dark: #00a07a;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-100: #f0f4f8;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #64748b;
    --gray-800: #1e293b;
    --text: #0f1f3d;
    --radius: 12px;
    --radius-sm: 8px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── HEADER ─── */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(15, 31, 61, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #1a73e8, #00c896);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    letter-spacing: -0.5px;
  }

  .logo-text {
    font-size: 17px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
  }
  .logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
  }

  .site-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  .site-nav a:hover { color: white; background: rgba(255,255,255,0.08); }
  .site-nav a.active { color: white; }

  @media (max-width: 1100px) {
    .site-nav a {
      font-size: 14px;
      padding: 0.45rem 0.7rem;
    }
    .header-cta {
      font-size: 13px;
      padding: 0.5rem 1rem;
    }
  }

  .header-cta {
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .header-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 2rem 80px;
    background: var(--navy);
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(15, 31, 61, 0.42) 0%,
      rgba(15, 31, 61, 0.58) 55%,
      rgba(15, 31, 61, 0.78) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 150, 0.15);
    border: 1px solid rgba(0, 200, 150, 0.3);
    color: #00e8af;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
  .hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #00c896;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: #4ab8ff;
  }

  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
  }

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

  .btn-primary {
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,0.3); }

  .btn-outline {
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

  /* ─── MOBILE APP SECTION ─── */
  .app-section {
    background: var(--off-white);
    padding: 100px 2rem;
  }

  .app-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .app-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
  }
  .app-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    display: inline-block;
  }

  .app-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .app-text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .store-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.2s;
    min-width: 160px;
  }
  .store-badge:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,31,61,0.2); }

  .store-badge-icon {
    font-size: 28px;
    line-height: 1;
  }

  .store-badge-text small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .store-badge-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
  }

  /* App screenshot mockup */
  .app-visual {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
    background: var(--navy);
    border-radius: 38px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(15,31,61,0.25), 0 0 0 1px rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
  }

  .phone-screen {
    background: #111827;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
  }

  .phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 22px;
    background: var(--navy);
    border-radius: 0 0 14px 14px;
    z-index: 10;
  }

  .phone-ui {
    padding: 30px 12px 12px;
    height: 100%;
    background: #0d1117;
  }

  .phone-.site-header {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .phone-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .phone-stat {
    background: #1c2333;
    border-radius: 10px;
    padding: 10px;
  }
  .phone-stat-label { font-size: 9px; color: #64748b; margin-bottom: 2px; }
  .phone-stat-value { font-size: 16px; font-weight: 700; color: white; }
  .phone-stat-value.green { color: #00c896; }
  .phone-stat-value.blue { color: #4a9bff; }

  .phone-item {
    background: #1c2333;
    border-radius: 8px;
    padding: 9px 10px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .phone-item-name { font-size: 9px; color: #cbd5e1; }
  .phone-item-qty { font-size: 9px; font-weight: 600; color: white; }

  .phone-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,200,150,0.15), transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 1;
  }

  /* ─── FEATURE STRIP ─── */
  .features-strip {
    background: var(--navy);
    padding: 80px 2rem;
  }

  .strip-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .strip-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
  }

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

  .feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.75rem;
    transition: background 0.2s, transform 0.2s;
  }
  .feature-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

  .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1rem;
  }
  .feature-icon.green { background: rgba(0,200,150,0.15); }
  .feature-icon.blue { background: rgba(74,155,255,0.15); }
  .feature-icon.amber { background: rgba(251,191,36,0.15); }
  .feature-icon.purple { background: rgba(167,139,250,0.15); }

  .feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* ─── FOOTER ─── */
  .site-footer {
    background: #070f20;
    color: rgba(255,255,255,0.65);
    padding: 80px 2rem 0;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .logo { margin-bottom: 1rem; }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 280px;
    margin-bottom: 1.5rem;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
  }
  .footer-contact-item span { font-size: 16px; }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
  }

  .footer-col ul {
    list-style: none;
  }
  .footer-col ul li {
    margin-bottom: 0.65rem;
  }
  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: white; }

  .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
  }
  .social-link:hover:not(.is-disabled) {
    background: rgba(255,255,255,0.12);
    color: white;
    transform: translateY(-2px);
  }

  .social-link.is-disabled {
    cursor: not-allowed;
    opacity: 0.45;
    pointer-events: none;
  }

  .social-link--youtube svg {
    display: block;
  }

  .newsletter-form {
    display: flex;
    gap: 8px;
  }

  .newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
  .newsletter-form input:focus { border-color: var(--accent); }

  .newsletter-form button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .newsletter-form button:hover { background: var(--accent-dark); }

  .newsletter-note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 8px;
  }

  .footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
  }

  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .app-inner { grid-template-columns: 1fr; gap: 3rem; }
    .app-visual { order: -1; }
  }

  @media (max-width: 640px) {
    .site-header .header-inner { padding: 0 1rem; }
    .site-nav { display: none; }
    .site-header.is-nav-open .site-nav { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,31,61,0.98); padding: 1rem 2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: 2.2rem; }
  }


.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-contact-item a:hover { color: white; }

.ew-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.ew-skip:focus { left: 8px; top: 8px; }

.site-menu-btn {
  display: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 640px) {
  .site-menu-btn { display: block; margin-left: auto; }
  .site-header .header-inner { flex-wrap: wrap; }
  .header-cta { order: 2; }
}

/* ─── INNER PAGES ─── */
.page-inner { background: var(--off-white); }

.page-inner .site-main {
  padding-top: 68px;
}

.page-hero {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero .eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: white;
  margin: 0 0 1rem;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}

.page-hero .actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero .btn-outline-dark {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 10px;
}
.page-hero .btn-outline-dark:hover {
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: white;
}

.section {
  padding: 4rem 2rem;
}

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

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

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem 2.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.feature-block:last-child { margin-bottom: 0; }

.feature-block.reverse .feature-copy { order: 2; }
.feature-block.reverse .feature-media { order: 1; }

.feature-copy {
  min-width: 0;
}

.feature-media {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-copy h2 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

.feature-copy h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.feature-copy p, .feature-copy ul {
  color: var(--gray-600);
  font-size: 1rem;
}

.feature-copy ul { padding-left: 1.25rem; }

.feature-path {
  font-size: 13px;
  color: var(--gray-400);
  font-family: ui-monospace, monospace;
  margin-top: 1rem;
}

.feature-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(380px, 50vh);
  object-fit: contain;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(15, 31, 61, 0.12);
}

.cta-band {
  background: var(--navy);
  text-align: center;
  padding: 4rem 2rem;
  color: white;
}

.cta-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.cta-band p {
  opacity: 0.75;
  margin: 0 0 1.5rem;
}

.cta-band .btn-primary {
  background: var(--accent);
}

/* Pricing page */
.page-pricing .page-hero--pricing {
  padding-bottom: 2.5rem;
}

.pricing-section {
  background: #f7f4ef;
  padding: 2.5rem 1.5rem 5rem;
}

.site-wrap--pricing {
  max-width: 1280px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2.75rem;
}

.billing-toggle__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ebe6de;
  border-radius: 999px;
  padding: 4px;
  min-width: 220px;
}

.billing-toggle__track::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: #1b4332;
  transition: transform 0.22s ease;
  z-index: 0;
}

.billing-toggle__track.is-annual::before {
  transform: translateX(100%);
}

.billing-toggle__track button {
  position: relative;
  z-index: 1;
  appearance: none;
  border: none;
  background: transparent;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray-600);
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.2s;
}

.billing-toggle__track button.is-active {
  color: #fff;
}

.billing-save-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b84a3a;
  background: #f5d5cc;
  padding: 5px 10px;
  border-radius: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e4e0d8;
  border-radius: 14px;
  padding: 1.75rem 1.35rem 1.5rem;
  box-shadow: 0 1px 0 rgba(15, 31, 61, 0.04);
}

.pricing-card--featured {
  background: #1b4332;
  border-color: #1b4332;
  color: #fff;
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.28);
}

.pricing-card--premium {
  background: #faf6f0;
  border: 1px solid #c4a574;
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 13px 0 10px;
}

.pricing-card__badge--popular {
  background: #e8a598;
  color: #fff;
}

.pricing-card__badge--suite {
  background: #c4a574;
  color: #fff;
}

.pricing-card__name {
  margin: 0 0 0.5rem;
  padding-right: 4.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__tagline,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__note,
.pricing-card--featured .pricing-card__trial {
  color: #fff;
}

.pricing-card--featured .pricing-card__tagline,
.pricing-card--featured .pricing-card__note,
.pricing-card--featured .pricing-card__trial {
  opacity: 0.82;
}

.pricing-card__tagline {
  margin: 0 0 1.25rem;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-600);
  min-height: 3.1em;
}

.pricing-card__price {
  margin: 0;
  font-family: 'DM Serif Display', serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}

.pricing-card__note {
  margin: 0.35rem 0 1.25rem;
  font-size: 12px;
  color: var(--gray-400);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d8d4cc;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.pricing-cta:hover {
  background: #f7f4ef;
  border-color: #c9c4bb;
  text-decoration: none;
  color: var(--navy);
  transform: translateY(-1px);
}

.pricing-cta--inverse {
  background: #fff;
  border-color: #fff;
  color: #1b4332;
}

.pricing-cta--inverse:hover {
  background: #f0fdf8;
  color: #1b4332;
}

.pricing-card__trial {
  margin: 0.5rem 0 0;
  font-size: 11px;
  text-align: center;
  color: var(--gray-400);
}

.pricing-card__rule {
  border: none;
  border-top: 1px solid #ebe6de;
  margin: 1.25rem 0 1rem;
}

.pricing-card--featured .pricing-card__rule {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 12px;
  line-height: 1.45;
}

.pricing-features li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.35rem;
  color: var(--gray-600);
}

.pricing-features li.is-header {
  padding-left: 0;
  margin-top: 0.65rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.pricing-features li.is-header:first-child {
  margin-top: 0;
}

.pricing-features li.is-yes::before,
.pricing-features li.is-no::before {
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.pricing-features li.is-yes::before {
  content: '✓';
  color: #1b4332;
}

.pricing-features li.is-no {
  color: var(--gray-400);
}

.pricing-features li.is-no::before {
  content: '✕';
  color: #c5c0b8;
  font-weight: 400;
}

.pricing-card--featured .pricing-features li {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card--featured .pricing-features li.is-header {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card--featured .pricing-features li.is-yes::before {
  color: #7dffc8;
}

.pricing-card--featured .pricing-features li.is-no {
  color: rgba(255, 255, 255, 0.45);
}

.pricing-card--featured .pricing-features li.is-no::before {
  color: rgba(255, 255, 255, 0.35);
}

.pricing-compare-title {
  margin: 4rem 0 1.25rem;
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 3rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.compare-table th {
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
}

.compare-table tr.section-row td {
  background: var(--blue-pale);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.compare-table .check { color: var(--accent-dark); font-weight: 700; }
.compare-table .dash { color: var(--gray-400); }

/* Prose / legal (About, Terms, Privacy) — full content width */
.page-inner .section--legal {
  background: var(--white);
  padding: 3rem 2rem 5rem;
}

.page-inner .section--legal .site-wrap {
  max-width: 1200px;
  width: 100%;
}

.prose {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.prose h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.prose h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.prose p, .prose li { color: var(--gray-800); }

.prose .updated {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.prose a { color: var(--blue); }

.prose .btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  display: inline-flex;
}
.prose .btn-outline:hover {
  background: var(--blue-pale);
  text-decoration: none;
  color: var(--navy);
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card__name {
    padding-right: 0;
    padding-top: 1.5rem;
  }

  .pricing-card__badge {
    border-radius: 10px 10px 0 0;
    left: 0;
    right: auto;
    top: 0;
  }
}

@media (max-width: 1024px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem;
  }
  .feature-block.reverse .feature-copy,
  .feature-block.reverse .feature-media { order: unset; }
  .feature-media img {
    max-height: 320px;
  }
}

@media (max-width: 900px) {
  .feature-block.reverse .feature-copy,
  .feature-block.reverse .feature-media { order: unset; }
}
