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

:root {
  --color-cream: #fdfaf7;
  --color-dark: #2c2c2c;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-accent: #e73733;
  --color-accent-dark: #c62828;
  --color-accent-tint: #ef5350;
  --color-peach: #fecaca;

  --gray-50:  #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-200: #e4e4e4;
  --gray-400: #a0a0a0;
  --gray-600: #6b6b6b;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 16px;
  text-decoration: none;
  font-size: 0.875rem;
  z-index: 1000;
  transition: top 0.2s;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; outline: 2px solid var(--color-accent); outline-offset: 2px; }
body {
  font-family: var(--font);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
nav {
  max-width: 1080px; margin: 0 auto; padding: 0 2rem;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 0.95rem; font-weight: 700; color: var(--color-dark);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  display: block; object-fit: contain; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400; color: var(--gray-600);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--color-dark); }
.btn-red {
  background: var(--color-accent); color: var(--color-white) !important;
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-weight: 600 !important; transition: background 0.15s, transform 0.12s !important;
}
.btn-red:hover { background: var(--color-accent-dark) !important; transform: translateY(-1px); }

/* HERO */
.hero {
  max-width: 1080px; margin: 0 auto; padding: 6rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-peach); color: var(--color-accent-dark);
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag .blink { width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--color-dark); margin-bottom: 1.25rem;
}
.hero h1 .red { color: var(--color-accent); }
.hero-sub {
  font-size: 1rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 2.25rem; max-width: 420px; font-weight: 300;
}
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badges a img { height: 42px; display: block; border-radius: 8px; transition: opacity 0.15s, transform 0.15s; }
.badges a:hover img { opacity: 0.85; transform: translateY(-2px); }
.badges a[aria-disabled="true"] { cursor: default; }
.badges a[aria-disabled="true"]:hover img { transform: none; opacity: 1; }
.hero-note { font-size: 0.78rem; color: var(--gray-400); }

.hero-visual { position: relative; }
.img-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); background: var(--gray-50);
}
.img-frame img { width: 100%; display: block; }

.chip {
  position: absolute; background: var(--color-white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.chip strong { display: block; font-weight: 600; font-size: 0.82rem; color: var(--color-dark); }
.chip span.sub { font-size: 0.74rem; color: var(--gray-600); }
.chip-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: block; object-fit: contain; flex-shrink: 0;
}
.chip-bottom { bottom: -16px; left: -18px; }
.chip-top {
  top: -13px; right: -12px;
  background: var(--color-accent); border-color: var(--color-accent);
  padding: 7px 13px; border-radius: var(--radius-pill);
}
.chip-top span { color: rgba(255,255,255,0.9); font-size: 0.78rem; display: flex; align-items: center; gap: 6px; }
.chip-top .live { width: 7px; height: 7px; background: #fff; border-radius: 50%; }

/* STRIP */
.strip {
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50); padding: 0.85rem 2rem; text-align: center;
}
.strip p { font-size: 0.82rem; color: var(--gray-600); }
.strip strong { color: var(--color-dark); font-weight: 600; }

/* SECTIONS */
section { padding: 5.5rem 2rem; }
.inner { max-width: 1080px; margin: 0 auto; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--color-accent); border-radius: 2px; }
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.15; color: var(--color-dark); margin-bottom: 1rem;
}
.section-title .red { color: var(--color-accent); }
.section-sub { font-size: 1rem; color: var(--gray-600); line-height: 1.75; max-width: 520px; font-weight: 300; }

/* WHY — DARK */
.why { background: var(--color-dark); }
.why .eyebrow { color: var(--color-peach); }
.why .eyebrow::before { background: var(--color-accent); }
.why .section-title { color: var(--color-white); }
.why .section-title .red { color: var(--color-accent-tint); }
.why .section-sub { color: var(--gray-400); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 3.5rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  overflow: hidden; background: rgba(255,255,255,0.06);
}
.why-card {
  padding: 2.5rem; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.065); }
.why-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--color-accent); text-transform: uppercase; margin-bottom: 1rem; display: block;
}
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--color-white); margin-bottom: 0.55rem; line-height: 1.4; }
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.75; font-weight: 300; }

/* FEATURES */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 3.5rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--gray-200);
}
.feat {
  background: var(--color-white); padding: 2rem; transition: background 0.18s;
}
.feat:hover { background: var(--gray-50); }
.feat-icon {
  width: 40px; height: 40px; background: var(--color-peach);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; margin-bottom: 1.2rem;
}
.feat h3 { font-size: 0.88rem; font-weight: 700; color: var(--color-dark); margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.feat p { font-size: 0.84rem; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

.feat-gallery {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  width: 100%;
}
.feat-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* PRIVATE */
.private { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.private-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.check-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; font-weight: 300; }
.check-list strong { color: var(--color-dark); font-weight: 600; }
.chk {
  width: 20px; height: 20px; background: var(--color-accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.chk svg { width: 10px; height: 10px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--gray-200);
}
.stat { background: var(--color-white); padding: 1.75rem 1.5rem; text-align: center; }
.stat-n { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.04em; color: var(--color-dark); line-height: 1; margin-bottom: 0.4rem; }
.stat-n .red { color: var(--color-accent); }
.stat-l { font-size: 0.74rem; color: var(--gray-600); font-weight: 400; line-height: 1.5; }

/* FAQ */
.faq-wrap { max-width: 680px; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-align: left; font-family: inherit;
}
.faq-btn span { font-size: 0.92rem; font-weight: 500; color: var(--color-dark); line-height: 1.5; }
.faq-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s;
}
.faq-arrow svg { width: 14px; height: 14px; stroke: var(--gray-400); fill: none; stroke-width: 2; stroke-linecap: round; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-arrow svg { stroke: var(--color-accent); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-body p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.8; padding-bottom: 1.2rem; padding-right: 2rem; font-weight: 300; }
.faq-item.open .faq-body { max-height: 320px; }

/* CTA */
.cta { background: var(--color-accent); text-align: center; padding: 6rem 2rem; }
.cta .eyebrow { color: rgba(255,255,255,0.55); justify-content: center; }
.cta .eyebrow::before { background: rgba(255,255,255,0.4); }
.cta .section-title { color: var(--color-white); text-align: center; }
.cta .section-sub { color: rgba(255,255,255,0.72); margin: 0 auto 2.5rem; text-align: center; }
.cta-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 1.25rem; }
.cta-badges a img { height: 48px; border-radius: 10px; display: block; transition: opacity 0.15s, transform 0.15s; }
.cta-badges a:hover img { opacity: 0.85; transform: translateY(-2px); }
.cta-badges a[aria-disabled="true"] { cursor: default; }
.cta-badges a[aria-disabled="true"]:hover img { transform: none; opacity: 1; }
.btn-web {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); border: 1.5px solid rgba(255,255,255,0.32);
  color: var(--color-white); text-decoration: none;
  padding: 11px 24px; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 500;
  transition: background 0.15s, transform 0.12s;
}
.btn-web:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.cta-small { margin-top: 1.5rem; font-size: 0.74rem; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; }

/* FOOTER */
footer { background: var(--color-dark); padding: 3rem 2rem 2rem; }
.footer-top {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--color-white); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 0.75rem; max-width: 280px; line-height: 1.65; font-weight: 400; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--color-white); margin-bottom: 0.35rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.15s; font-weight: 400; }
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  max-width: 1080px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 400; }
.footer-bottom a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-bottom a:hover { color: var(--color-white); }

.footer-credits {
  max-width: 1080px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-credits p { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 400; letter-spacing: 0.02em; }
.footer-credits a { color: rgba(255,255,255,0.92); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); text-underline-offset: 3px; transition: color 0.15s, text-decoration-color 0.15s; }
.footer-credits a:hover { color: var(--color-white); text-decoration-color: var(--color-white); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* HERO ANIMATIONS */
.hero-text > * { animation: fadeUp 0.5s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.04s; }
.hero-text > *:nth-child(2) { animation-delay: 0.10s; }
.hero-text > *:nth-child(3) { animation-delay: 0.17s; }
.hero-text > *:nth-child(4) { animation-delay: 0.24s; }
.hero-text > *:nth-child(5) { animation-delay: 0.30s; }
.hero-visual { animation: fadeIn 0.6s ease 0.22s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 3.5rem; }
  .hero-visual { order: -1; }
  .chip-bottom { bottom: -12px; left: 0; }
  .chip-top { top: -10px; right: 0; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .private-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 620px) {
  .feat-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
}
