:root {
  --navy: #000000;
  --green: #68E8FF;
  --blue: #68E8FF;
  --white: #FFFFFF;
  --grey-light: #F4F6F9;
  --grey: #6B7280;
  --grey-border: #E2E8F0;
  --red: #E5484D;
  --amber: #F5A524;
  --radius: 12px;
  --btn-radius: 6px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

[x-cloak] { display: none !important; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--navy); }

h1, h2, h3, h4 { font-family: 'Host Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 800; line-height: 1.2; }

/* Announcement bar */
.announcement-bar {
  background: #FFF6CC;
  color: var(--navy);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Host Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 10px 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--grey-border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-family: 'Host Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { display: inline-flex; width: 32px; height: 32px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo .accent { color: var(--blue); }
.logo-tm { font-size: 0.55em; vertical-align: super; font-weight: 400; letter-spacing: 0; margin-left: -5px; }
.footer-dot { opacity: 0.4; margin: 0 4px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: 0.95rem; }

/* Burger button — hidden on desktop */
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--white);
  z-index: 200;
  flex-shrink: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .burger { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 150;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .site-nav.nav-open { display: flex; }
  .site-nav a {
    padding: 12px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--grey-border);
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin: 12px 24px 0;
    text-align: center;
    border-radius: var(--btn-radius) !important;
    border-bottom: none !important;
  }
  .has-mega { display: contents; }
  .mega-trigger { padding: 12px 24px; border-bottom: 1px solid var(--grey-border); }
  .mega-chevron-icon { display: none; }
  .mega-menu { display: none !important; }
}
.nav-cta {
  background: var(--green);
  color: var(--navy) !important;
  padding: 10px 18px;
  border-radius: var(--btn-radius);
}

/* Hero */
.hero {
  background: #000000;
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right bottom;
  filter: invert(1) brightness(0.35);
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  text-align: left;
}
.hero-copy { flex: 1 1 460px; max-width: 640px; }
.hero h1 {
  font-size: 4.4rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.accent-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--navy);
  border-radius: var(--btn-radius);
  padding: 0 14px;
}
.hero-sub {
  color: #B8C0D4;
  max-width: 560px;
  margin: 0 0 32px;
  font-size: 1.1rem;
}
.hero-search input {
  width: 100%;
  max-width: 560px;
  padding: 16px 20px;
  border-radius: var(--btn-radius);
  border: none;
  font-size: 1rem;
  font-family: inherit;
}
.hero-illustration { display: none; }
@media (max-width: 800px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-inner { text-align: center; }
  .hero-categories { margin-left: auto; margin-right: auto; }
}

.hero-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  max-width: 560px;
}
.hero-cat-card {
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s;
}
.hero-cat-card:hover { transform: translateY(-3px); }
.hero-cat-icon {
  width: 28px;
  height: 28px;
  color: #000000;
}
.hero-cat-icon svg { width: 100%; height: 100%; }
@media (max-width: 800px) {
  .hero-categories { margin: 24px auto 0; grid-template-columns: repeat(2, 1fr); }
}

/* Stats bar */
.stats-bar {
  background: var(--grey-light);
  padding: 32px 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.stat-block-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-block-label {
  color: var(--grey);
  font-size: 0.9rem;
}

/* Mission section */
.mission-section { padding: 60px 24px; text-align: center; }
.mission-section h2 { font-size: 2.4rem; margin-bottom: 8px; }
.mission-sub { color: var(--grey); max-width: 560px; margin: 0 auto 32px; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.mission-card {
  background: #000000;
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
}
.mission-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 16px;
}
.mission-icon svg { width: 100%; height: 100%; }
.mission-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.mission-card p { color: #B8C0D4; margin: 0; font-size: 0.92rem; }

/* Category tabs */
.category-tabs-section { padding: 40px 24px 0; }
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.category-tab {
  border: 1px solid var(--grey-border);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.category-tab.active, .category-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Tools section */
.tools-section { padding: 48px 24px 80px; }
.tools-section h2 { text-align: center; margin-bottom: 32px; font-size: 3.2rem; }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tool-grid { grid-template-columns: 1fr; }
}
.tool-card {
  display: block;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--navy);
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
  background: var(--white);
}
.tool-card:hover {
  box-shadow: 0 8px 24px rgba(15,31,61,0.08);
  transform: translateY(-2px);
}

.tool-card-top {
  position: relative;
  padding: 20px;
  height: 256px;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
}
.tool-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.tool-card-pink .tool-card-top { background-color: #FFD8E4; }
.tool-card-green .tool-card-top { background-color: #CFF6E4; }
.tool-card-blue .tool-card-top { background-color: #D6E9FF; }
.tool-card-yellow .tool-card-top { background-color: #FFEFC2; }
.tool-card-purple .tool-card-top { background-color: #E5DBFF; }

.tool-card-pink .tool-card-top::before { background: #FF6B9D; }
.tool-card-green .tool-card-top::before { background: #00C896; }
.tool-card-blue .tool-card-top::before { background: #2D6CDF; }
.tool-card-yellow .tool-card-top::before { background: #F5A524; }
.tool-card-purple .tool-card-top::before { background: #8B5CF6; }

.tool-card-pill {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
}
.tool-card-icon {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: -14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  color: var(--navy);
  padding: 10px;
  box-shadow: 0 4px 10px rgba(15,31,61,0.08);
}
.tool-card-icon svg { width: 100%; height: 100%; }

.tool-card-body { padding: 24px; }
.tool-card h3 { margin: 0 0 8px; font-size: 1.25rem; font-weight: 800; }
.tool-card p {
  color: var(--grey);
  font-size: 0.92rem;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tool-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--grey);
}
.tool-card-arrow { color: var(--navy); font-weight: 700; }
.tool-card-time { display: inline-flex; align-items: center; gap: 6px; }
.tool-card-time svg { width: 14px; height: 14px; }

.badge {
  display: inline-block;
  background: var(--grey-light);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 6px;
}
.badge-rising {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  background: #FFF1E0;
  color: #C2540A;
}
.badge-deadline {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  background: #FEE2E2;
  color: #991B1B;
  font-weight: 700;
  animation: pulse-deadline 2s ease-in-out infinite;
}
@keyframes pulse-deadline {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.no-results { text-align: center; color: var(--grey); padding: 40px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--navy); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { background: transparent; border: 1px solid var(--grey-border); color: var(--navy); }
.btn-large { width: 100%; padding: 16px; font-size: 1.05rem; }

/* Health check CTA */
.health-check-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin: 40px auto;
  max-width: 1100px;
  text-align: center;
}
.health-check-cta h3 { font-size: 2rem; margin-bottom: 12px; }
.health-check-cta p { color: #C5CEDF; max-width: 560px; margin: 0 auto 16px; }
.health-check-cta ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.health-check-cta ul li {
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.health-check-cta .small-print {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #8FA0BD;
}

/* Static pages */
.page-content { padding: 32px 24px 80px; max-width: 760px; margin: 0 auto; }
.page-content h1 { font-size: 2.2rem; margin-bottom: 8px; }
.page-content h2 { font-size: 1.3rem; margin-top: 32px; }
.page-intro { color: var(--grey); font-size: 1.05rem; }

.health-check-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
}
.health-check-form label { font-weight: 700; font-size: 0.9rem; margin-top: 12px; }
.health-check-form input, .health-check-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--grey-border);
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 1rem;
}
.health-check-form button { margin-top: 20px; }
.health-check-form .small-print { color: var(--grey); font-size: 0.85rem; text-align: center; }

/* Tool page */
.tool-page { padding: 32px 24px 60px; }
.breadcrumb { font-size: 0.85rem; color: var(--grey); margin-bottom: 24px; }
.breadcrumb a { color: var(--grey); text-decoration: none; }
.tool-hero { margin-bottom: 32px; }
.tool-hero:has(.tool-hero-image) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.tool-hero-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.tool-hero-text { max-width: 720px; }
.tool-hero h1 { font-size: 2.2rem; margin: 8px 0 12px; }
.tool-hero-desc { color: var(--grey); font-size: 1.1rem; }
@media (max-width: 800px) {
  .tool-hero:has(.tool-hero-image) { grid-template-columns: 1fr; }
  .tool-hero-image { order: -1; height: 200px; }
}
.trust-badges { margin-top: 16px; }

.tool-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 800px) {
  .tool-layout { grid-template-columns: 1fr; }
}

.card {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.card h2 { font-size: 1.3rem; margin-top: 0; }

.check-list { padding-left: 20px; }
.check-list li { margin-bottom: 8px; }

.sticky-card { position: relative; }
@media (min-width: 801px) {
  .tool-sidebar { position: sticky; top: 90px; align-self: start; }
}
.stats-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}
.stats-card h3 { margin: 0 0 16px; color: var(--white); }
.stats-list { display: flex; flex-direction: column; gap: 16px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-value { font-size: 1rem; font-weight: 800; color: var(--green); white-space: nowrap; }
.stat-label { font-size: 0.85rem; color: #B8C0D4; text-align: right; }

.related-tools { margin-top: 48px; }
.related-tools h2 { margin-bottom: 24px; }

.report-dateline {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0 0 4px;
  font-weight: 500;
}

.disclaimer-inline, .disclaimer {
  font-size: 0.8rem;
  color: var(--grey);
  text-align: center;
  margin-top: 32px;
}

/* Footer */
.site-footer { background: #000000; color: var(--white); margin-top: 60px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 48px 24px;
}
.site-footer .logo, .site-footer .logo .accent { color: var(--white); }
.site-footer .logo .accent { color: var(--blue); }
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand p { color: #B8C0D4; max-width: 320px; }
.footer-links h4, .footer-col h4 { margin-bottom: 8px; }
.footer-links p { color: #B8C0D4; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: #B8C0D4; text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #8A93AB;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #8A93AB; }
.footer-links .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.footer-links .btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* Quiz page */
.quiz-page { padding: 32px 24px 60px; max-width: 1000px; margin: 0 auto; }
.quiz-card { text-align: left; }
.quiz-card h1 { font-size: 1.8rem; }

.progress-bar {
  height: 8px;
  background: var(--grey-light);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  transition: width 0.3s;
}
.progress-label { color: var(--grey); font-size: 0.85rem; margin-bottom: 24px; }

.why-asking { margin: 12px 0 20px; }
.why-toggle {
  background: none;
  border: none;
  color: var(--grey);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0;
}
.why-asking p { color: var(--grey); font-size: 0.9rem; margin-top: 8px; }

.answer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.answer-cards:has(button:nth-child(3)) { grid-template-columns: 1fr; }
.answer-card {
  border: 2px solid var(--grey-border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.answer-card:hover { border-color: var(--green); }

.answer-text textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--grey-border);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Loading */
.loading-card { text-align: center; padding: 60px 28px; }
.spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--grey-light);
  border-top-color: var(--green);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Results */
.results-card { text-align: center; }
.score-gauge {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}
.score-gauge svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.gauge-bg { fill: none; stroke: var(--grey-light); stroke-width: 10; }
.gauge-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.gauge-fill.score-red { stroke: var(--red); }
.gauge-fill.score-amber { stroke: var(--amber); }
.gauge-fill.score-green { stroke: var(--green); }
.score-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
}
.score-value small { font-size: 1rem; color: var(--grey); margin-left: 4px; }

.status-label {
  display: inline-block;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.status-label.score-red { background: #FCE8E8; color: #b91c1c; }
.status-label.score-amber { background: #FDF2DD; color: #92400e; }
.status-label.score-green { background: #DEF7EE; color: #065f46; }

.findings-list, .recommendations-list { text-align: left; }
.finding-item, .recommendation-item {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.finding-item { display: flex; gap: 12px; align-items: flex-start; }
.finding-item h4, .recommendation-item h4 { margin: 0 0 4px; }
.finding-item p, .recommendation-item p { margin: 0; color: var(--grey); font-size: 0.92rem; }

.severity-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.severity-high { background: #FCE8E8; color: var(--red); }
.severity-medium { background: #FDF2DD; color: var(--amber); }
.severity-low { background: #DEF7EE; color: var(--green); }

.rec-chips { margin-bottom: 8px; display: flex; gap: 8px; }
.chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--grey-light);
  text-transform: uppercase;
}

/* ── App page ── */
.app-page {
  background: #080C14;
  color: #fff;
  min-height: 100vh;
}
body:has(.app-page) .site-footer { margin-top: 0; }

.app-hero {
  padding: 80px 0 60px;
  overflow: hidden;
}
.app-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.app-hero-copy {
  flex: 1 1 400px;
  max-width: 480px;
}
.app-badge {
  display: inline-block;
  background: rgba(104,232,255,0.12);
  color: #68E8FF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.app-hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
}
.app-accent {
  color: #68E8FF;
}
.app-sub {
  font-size: 1.1rem;
  color: #8A97B0;
  line-height: 1.7;
  margin: 0 0 32px;
}
.app-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0A0F1A;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: 'Host Grotesk', 'Inter', sans-serif;
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  color: #0A0F1A;
}
.app-store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.app-store-btn--android { background: #1A1F2E; color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.app-store-btn--android:hover { color: #fff; }
.app-tagline-note {
  color: #4A5568;
  font-size: 0.85rem;
  margin: 0;
}

/* Screenshot fan */
.app-hero-screens {
  flex: 0 0 520px;
  max-width: 520px;
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-screen {
  position: absolute;
  width: 210px;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.3s;
}
.app-screen--back {
  transform: rotate(-10deg) translateX(-110px) translateY(20px);
  opacity: 0.75;
  z-index: 1;
}
.app-screen--mid {
  transform: rotate(-3deg) translateX(-10px);
  z-index: 2;
}
.app-screen--front {
  transform: rotate(6deg) translateX(110px) translateY(20px);
  z-index: 3;
}
.app-hero-screens:hover .app-screen--back { transform: rotate(-12deg) translateX(-120px) translateY(24px); }
.app-hero-screens:hover .app-screen--front { transform: rotate(8deg) translateX(120px) translateY(24px); }

/* Features */
.app-features {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.app-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.app-feature-item {
  display: flex;
  align-items: center;
  gap: 64px;
}
.app-feature-item--flip {
  flex-direction: row-reverse;
}
.app-feature-screen {
  flex: 0 0 280px;
  max-width: 280px;
}
.app-feature-screen img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  display: block;
}
.app-feature-copy { flex: 1; }
.app-feature-copy h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}
.app-feature-copy p {
  font-size: 1.05rem;
  color: #8A97B0;
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}

/* App CTA */
.app-cta-section {
  background: linear-gradient(135deg, #0A0F1A 0%, #0D1826 50%, #0A1420 100%);
  border-top: 1px solid rgba(104,232,255,0.15);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.app-cta-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(104,232,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.app-cta-inner h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}
.app-cta-inner p {
  color: #8A97B0;
  font-size: 1.1rem;
  margin: 0 0 32px;
}
.app-cta-inner .app-ctas {
  justify-content: center;
}

@media (max-width: 900px) {
  .app-hero-inner { flex-direction: column; text-align: center; }
  .app-hero-screens { flex: none; max-width: 100%; height: 360px; }
  .app-screen { width: 140px; }
  .app-screen--back { transform: rotate(-10deg) translateX(-75px) translateY(14px); }
  .app-screen--front { transform: rotate(6deg) translateX(75px) translateY(14px); }
  .app-ctas { justify-content: center; }
  .app-hero h1 { font-size: 2.6rem; }
  .app-feature-item, .app-feature-item--flip { flex-direction: column; text-align: center; gap: 32px; }
  .app-feature-screen { flex: none; max-width: 220px; }
  .app-feature-copy p { max-width: 100%; }
}

/* Results layout with sidebar */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 760px) {
  .results-layout { grid-template-columns: 1fr; }
}
.results-main {}
.results-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-widget {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}
.sidebar-widget h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
}
.score-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.score-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
}
.score-history-name {
  flex: 1;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.score-history-badge {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 999px;
}
.score-history-badge.score-red { background: #FCE8E8; color: #b91c1c; }
.score-history-badge.score-amber { background: #FDF2DD; color: #92400e; }
.score-history-badge.score-green { background: #DEF7EE; color: #065f46; }
.overall-avg {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.overall-avg-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
}
.overall-avg-denom {
  color: var(--grey);
  font-size: 0.9rem;
}
.overall-avg-label {
  font-size: 0.82rem;
  color: var(--grey);
  margin: 0;
}
.sidebar-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-subscribe-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--grey-border);
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 0.88rem;
}
.sidebar-subscribe-form input[type="email"]:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}
.sidebar-subscribe-form .btn {
  width: 100%;
  font-size: 0.88rem;
  padding: 10px;
}
.sidebar-subscribe-success {
  font-size: 0.88rem;
  color: #065f46;
  background: #DEF7EE;
  border-radius: var(--btn-radius);
  padding: 10px 12px;
  text-align: center;
}

.share-bar { margin-top: 32px; text-align: center; }
.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

@media print {
  .site-header, .site-footer, .share-bar, .health-check-cta { display: none !important; }
}

/* ── Tool Library Page ── */
.tool-library-page { padding-bottom: 80px; }
.tool-library-header {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 48px;
}
.tool-library-header h1 { color: var(--white); font-size: 3rem; margin: 0 0 8px; }
.tool-library-sub { color: #B8C0D4; margin: 0; font-size: 1.05rem; }

.tool-library-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding-top: 40px;
  align-items: start;
}

.tool-library-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 8px;
}
.sidebar-search { margin-bottom: 32px; }
.sidebar-search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-border);
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
}
.sidebar-search-input:focus { outline: 2px solid var(--green); border-color: transparent; }

.sidebar-categories { display: flex; flex-direction: column; gap: 4px; }
.lib-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 14px;
  border: none;
  border-radius: var(--btn-radius);
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.lib-cat-btn:hover { background: var(--grey-light); }
.lib-cat-btn.active { background: var(--navy); color: var(--white); }
.lib-cat-icon { display: flex; align-items: center; flex-shrink: 0; }
.lib-cat-icon svg { width: 18px; height: 18px; opacity: 0.7; }
.lib-cat-btn.active .lib-cat-icon svg { opacity: 1; stroke: var(--green); }

.tool-library-count {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 16px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .tool-library-layout { grid-template-columns: 1fr; }
  .tool-library-sidebar { position: static; }
  .sidebar-categories { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .lib-cat-btn { width: auto; }
}

/* ── Mega Menu ── */
.has-mega { position: static; }
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.mega-chevron-icon { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }
.has-mega:hover .mega-chevron-icon { transform: rotate(180deg); }

.mega-menu {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  box-shadow: 0 16px 48px rgba(15,31,61,0.12);
  padding: 32px 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.mega-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  transition: background 0.12s, border-color 0.12s, transform 0.12s;
}
.mega-card:hover {
  background: var(--grey-light);
  border-color: var(--navy);
  transform: translateY(-2px);
  color: var(--navy);
}
.mega-card-icon {
  width: 28px;
  height: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}
.mega-card-icon svg { width: 100%; height: 100%; }
.mega-card-name { font-weight: 700; font-size: 0.9rem; }
.mega-card-count { font-size: 0.78rem; color: var(--grey); }

/* ── App Page v2 ── */

/* Hero v2 */
.app-hero-v2 {
  background: #080C14;
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.app-hero-inner-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-hero-copy-v2 {
  max-width: 550px;
}
.app-hero-copy-v2 h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 20px;
  color: #fff;
}

/* Premium store buttons */
.app-ctas-v2 { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.app-store-btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0A0F1A;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Host Grotesk', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  line-height: 1.2;
}
.app-store-btn-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  color: #0A0F1A;
}
.app-store-btn-v2 .store-icon { width: 24px; height: 24px; flex-shrink: 0; }
.app-store-btn-v2 .store-btn-text { display: flex; flex-direction: column; }
.app-store-btn-v2 .store-btn-text small { font-size: 0.7rem; font-weight: 400; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.04em; }
.app-store-btn-v2--android {
  background: #1A1F2E;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.app-store-btn-v2--android:hover { color: #fff; }

/* Phone fan */
.app-phones-fan {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-fan-wrap {
  position: relative;
  width: 340px;
  height: 620px;
}

/* Phone mockup shared */
.phone-mockup {
  background: #1A1A1A;
  border-radius: 46px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 0 0 1.5px #3a3a3a;
  position: relative;
}
.phone-dynamic-island {
  width: 126px;
  height: 37px;
  background: #000;
  border-radius: 20px;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* Fan positioning */
.phone-mockup--center {
  position: absolute;
  width: 210px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.phone-mockup--left {
  position: absolute;
  width: 180px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-12deg) translateX(-20px);
  z-index: 1;
  opacity: 0.8;
}
.phone-mockup--right {
  position: absolute;
  width: 180px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(10deg) translateX(20px);
  z-index: 2;
  opacity: 0.85;
}

/* Stats strip */
.app-stats-strip {
  background: #0D1320;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.app-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #8A97B0;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.stats-dot { color: #2A3550; font-size: 1.4rem; line-height: 0; }

/* =====================================================
   APP MISSION SECTION  (.app-mission-)
   ===================================================== */

.app-mission {
  background: #0A0F1A;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.app-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.app-mission-copy .app-badge {
  margin-bottom: 20px;
}
.app-mission-copy h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 24px;
}
.app-mission-copy p {
  font-size: 1rem;
  color: #8A97B0;
  line-height: 1.75;
  margin: 0 0 16px;
}
.app-mission-copy p:last-child { margin-bottom: 0; }

.app-mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.app-pillar {
  background: #0F1726;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.app-pillar-text {
  flex: 1;
  min-width: 0;
}
.app-pillar:hover {
  border-color: rgba(104,232,255,0.3);
  background: #111927;
}
.app-pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(104,232,255,0.1);
  border: 1px solid rgba(104,232,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #68E8FF;
}
.app-pillar-icon svg {
  width: 22px;
  height: 22px;
}
.app-pillar-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}
.app-pillar-text p {
  font-size: 0.88rem;
  color: #6A7A96;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .app-mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .app-mission-copy h2 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .app-mission { padding: 72px 0; }
  .app-mission-copy h2 { font-size: 1.8rem; }
}

/* Feature sections */
.app-feature-section {
  background: #080C14;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.app-feature-section--alt { background: #0A0F1A; }

.app-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-feature-inner--flip { direction: rtl; }
.app-feature-inner--flip > * { direction: ltr; }

.app-feature-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup--solo {
  width: 240px;
  flex-shrink: 0;
}

.app-feature-text {}
.feature-number {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(104,232,255,0.15);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Host Grotesk', 'Inter', sans-serif;
}
.feature-headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.feature-desc {
  font-size: 1.05rem;
  color: #8A97B0;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 440px;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-bullets li {
  color: #B8C4D8;
  font-size: 0.95rem;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}
.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #68E8FF;
  border-radius: 50%;
}

/* Social proof */
.app-social-proof {
  background: #070B12;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.social-proof-headline {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  margin: 0 0 8px;
}
.social-proof-sub {
  color: #8A97B0;
  text-align: center;
  margin: 0 0 48px;
  font-size: 1.05rem;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: #0F1726;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}
.proof-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.proof-company { font-weight: 700; color: #fff; font-size: 0.9rem; }
.proof-doc {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8A97B0;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 999px;
}
.proof-flag {
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}
.proof-flag--red { background: rgba(229,72,77,0.12); border: 1px solid rgba(229,72,77,0.25); }
.proof-flag--amber { background: rgba(245,165,36,0.12); border: 1px solid rgba(245,165,36,0.25); }
.proof-flag-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.proof-flag--red .proof-flag-label { color: #E5484D; }
.proof-flag--amber .proof-flag-label { color: #F5A524; }
.proof-clause {
  font-size: 0.88rem;
  color: #C8D0E0;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.proof-note {
  font-size: 0.82rem;
  color: #5A6480;
  margin: 0;
  line-height: 1.5;
}

/* App page v2 responsive */
@media (max-width: 1000px) {
  .app-hero-inner-v2 { grid-template-columns: 1fr; text-align: center; }
  .app-hero-copy-v2 { max-width: 100%; }
  .app-hero-copy-v2 h1 { font-size: 3rem; }
  .app-ctas-v2 { justify-content: center; }
  .app-phones-fan { height: 420px; }
  .phone-fan-wrap { width: 260px; height: 460px; }
  .phone-mockup--center { width: 160px; }
  .phone-mockup--left, .phone-mockup--right { width: 140px; }
  .app-feature-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .app-feature-inner--flip { direction: ltr; }
  .feature-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .feature-bullets { align-items: flex-start; max-width: 360px; margin: 0 auto; }
  .proof-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .app-hero-copy-v2 h1 { font-size: 2.4rem; }
  .phone-mockup--left, .phone-mockup--right { display: none; }
  .phone-mockup--center { position: static; transform: none; width: 200px; margin: 0 auto; }
  .phone-fan-wrap { display: flex; justify-content: center; width: 100%; height: auto; }
  .app-phones-fan { height: auto; padding: 20px 0; }
  .feature-number { font-size: 3.5rem; }
  .feature-headline { font-size: 1.8rem; }
}

/* =====================================================
   HEALTH CHECK PAGE  (.hc-)
   ===================================================== */

/* Hero */
.hc-hero {
  background: #000;
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
}
.hc-hero-inner { max-width: 760px; }
.hc-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.15;
  color: var(--white);
}
.hc-hero-sub {
  font-size: 1.15rem;
  color: #B8C0D4;
  margin: 0 auto 36px;
  max-width: 580px;
  line-height: 1.6;
}
.hc-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
}
.hc-chip svg { color: var(--green); flex-shrink: 0; }

/* What we check */
.hc-areas {
  background: var(--white);
  padding: 80px 0;
}
.hc-section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 20px;
}
.hc-section-sub {
  text-align: center;
  color: var(--grey);
  margin: 0 auto 48px;
  max-width: 520px;
  font-size: 1rem;
}
.hc-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hc-area-card {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.hc-area-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.hc-area-icon {
  width: 40px;
  height: 40px;
  color: #000;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.hc-area-icon svg { width: 100%; height: 100%; }
.hc-area-card h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; }
.hc-area-card p { margin: 0; color: var(--grey); font-size: 0.9rem; line-height: 1.55; }

/* How it works */
.hc-how {
  background: var(--grey-light);
  padding: 80px 0;
}
.hc-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 8px;
}
.hc-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 16px;
}
.hc-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.hc-step h3 { font-size: 1rem; font-weight: 700; margin: 0 0 8px; }
.hc-step p { color: var(--grey); font-size: 0.9rem; margin: 0; line-height: 1.55; }
.hc-step-arrow {
  color: var(--grey);
  padding-top: 14px;
  flex-shrink: 0;
}

/* Form */
.hc-form-section {
  background: #000;
  padding: 80px 0;
}
.hc-form-wrap {
  display: flex;
  justify-content: center;
}
.hc-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hc-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.hc-form-intro {
  color: var(--grey);
  font-size: 0.95rem;
  margin: 0 0 28px;
}
.hc-field { margin-bottom: 20px; }
.hc-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.hc-field input,
.hc-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
  resize: vertical;
}
.hc-field input:focus,
.hc-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.hc-submit-btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: var(--green);
  color: var(--navy);
  border: none;
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.15s;
}
.hc-submit-btn:hover { opacity: 0.88; }
.hc-trust-note {
  margin: 18px 0 0;
  color: var(--grey);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}

/* HC responsive */
@media (max-width: 900px) {
  .hc-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-steps { flex-direction: column; align-items: center; gap: 24px; }
  .hc-step-arrow { display: none; }
  .hc-step { max-width: 100%; }
}
@media (max-width: 600px) {
  .hc-hero-title { font-size: 2.2rem; }
  .hc-areas-grid { grid-template-columns: 1fr; }
  .hc-form-card { padding: 32px 20px; }
}

/* =====================================================
   APP FEATURE CAROUSEL  (.app-carousel-)
   ===================================================== */

.app-carousel {
  background: #000;
  overflow: hidden;
  position: relative;
  padding-bottom: 48px;
}
.app-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.app-carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 80px 0 24px;
}
.app-carousel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-carousel-phone {
  display: flex;
  justify-content: center;
}
.app-carousel-text {
  color: var(--white);
}
.app-carousel-text .feature-number {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -8px;
  font-family: 'Host Grotesk', 'Inter', -apple-system, sans-serif;
}
.app-carousel-text .feature-headline {
  color: var(--white);
  font-size: 2.2rem;
  margin: 0 0 16px;
}
.app-carousel-text .feature-desc {
  color: #B8C0D4;
  font-size: 1rem;
  margin: 0 0 24px;
  line-height: 1.65;
}
.app-carousel-text .feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-carousel-text .feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B8C0D4;
  font-size: 0.92rem;
}
.app-carousel-text .feature-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Controls */
.app-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
}
.app-carousel-arrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.app-carousel-arrow:hover { background: rgba(255,255,255,0.2); }
.app-carousel-dots {
  display: flex;
  gap: 8px;
}
.app-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.app-carousel-dot--active {
  background: var(--green);
  transform: scale(1.3);
}

/* Carousel responsive */
@media (max-width: 900px) {
  .app-carousel-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .app-carousel-slide { padding: 60px 0 24px; }
  .app-carousel-text .feature-bullets { align-items: flex-start; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .app-carousel-text .feature-headline { font-size: 1.8rem; }
  .app-carousel-text .feature-number { font-size: 3.5rem; }
}
