:root {
  --navy: #0c1222;
  --navy-light: #162044;
  --gold: #eab308;
  --gold-hover: #facc15;
  --gold-subtle: rgba(234, 179, 8, 0.1);
  --white: #ffffff;
  --warm: #f5f0eb;
  --cream: #faf8f5;
  --text: #1a1d29;
  --muted: #6b6b6b;
  --gold-text: #7a5e00;
  --border: #e5e7eb;
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-l, .reveal-r, .reveal-s { opacity: 1 !important; transform: none !important; }
}
.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 300;
  background: var(--navy); color: var(--white); padding: 12px 24px;
  border-radius: 8px; font-weight: 600; font-size: 0.88rem; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
#scrollProgress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: var(--gold); transform-origin: 0 50%;
  transform: scaleX(0); will-change: transform;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(12, 18, 34, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; }
nav .logo-mark { color: var(--gold); flex-shrink: 0; }
nav .logo-text { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
nav .logo-divider { font-size: 1.1rem; color: rgba(255,255,255,0.2); font-weight: 300; }
nav .logo-accent { font-size: 1.3rem; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
nav a.cta {
  background: var(--gold); color: var(--navy); padding: 10px 24px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
nav a.cta:hover { opacity: 0.85; }
nav .cta-outline {
  background: transparent; color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.2);
  margin-left: 10px; padding: 10px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 500; font-size: 0.88rem; transition: border-color 0.2s, color 0.2s;
  position: relative;
}
nav .cta-outline:hover { border-color: var(--gold); color: var(--gold); }
nav .cta-outline::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 1.5px; background: var(--gold); border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
}
nav .cta-outline:hover::after { left: 20%; right: 20%; }
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: var(--navy); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(234,179,8,0.04) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.03) 79px, rgba(255,255,255,0.03) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.03) 79px, rgba(255,255,255,0.03) 80px);
  pointer-events: none;
}
.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 120px 0 80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  padding: 6px 14px; border-radius: 6px; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 800; color: var(--white);
  line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(255,255,255,0.55);
  max-width: 480px; line-height: 1.7; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-block; padding: 16px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s; font-family: var(--font);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 24px rgba(234, 179, 8, 0.25);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(234, 179, 8, 0.35); }
.btn-outline-hero {
  background: transparent; color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-hero:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stats div { text-align: left; }
.hero-stats strong { display: block; font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.hero-stats .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.45); display: block; margin-top: 4px; }
.hero-stats .stat-number { display: inline; }
.hero-visual {
  position: relative; z-index: 2; display: flex; justify-content: center; align-items: center;
}
.hero-mockup {
  width: 100%; max-width: 380px; height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero-mockup:hover {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}
.hero-glow {
  position: absolute; width: 70%; height: 70%; top: 15%; left: 15%;
  background: radial-gradient(circle, rgba(234,179,8,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.hero-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(234,179,8,0.08) 30%, rgba(234,179,8,0.12) 50%, rgba(234,179,8,0.08) 70%, transparent 100%);
  opacity: 0; transition: filter 0.4s ease;
}
.hero-line.snapped {
  filter: brightness(2) drop-shadow(0 0 2px rgba(234,179,8,0.15));
}
.title-word { display: inline-block; }
section { padding: 100px 0; }
.section-warm {
  background: var(--warm);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(180,120,80,0.015) 40px, rgba(180,120,80,0.015) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(180,120,80,0.015) 40px, rgba(180,120,80,0.015) 41px);
}
.section-cream {
  background: var(--cream);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 48px, rgba(180,120,80,0.01) 48px, rgba(180,120,80,0.01) 49px),
    repeating-linear-gradient(-45deg, transparent, transparent 48px, rgba(180,120,80,0.01) 48px, rgba(180,120,80,0.01) 49px);
}
section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.15;
}
section h2 em { font-style: italic; color: var(--gold); }
.section-dark h2 { font-family: var(--font-display); font-weight: 400; color: var(--white); }
.editorial {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.editorial.flipped { direction: rtl; }
.editorial.flipped > * { direction: ltr; }
.editorial-visual { position: relative; }
.editorial-visual img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.editorial-content { max-width: 480px; }
.editorial-label {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold-text); margin-bottom: 16px;
}
.section-dark .editorial-label { color: var(--gold); }
.editorial-content h2 { margin-bottom: 16px; }
.editorial-content p {
  color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 28px;
}
.editorial-features { display: flex; flex-direction: column; gap: 16px; }
.editorial-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.editorial-feature svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--gold);
}
.section-warm .editorial-feature svg,
.section-cream .editorial-feature svg { color: var(--gold-text); }
.editorial-feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.editorial-feature p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0; }
.section-dark {
  background: var(--navy); color: var(--white); position: relative;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 2; }
.section-dark .editorial-content p { color: rgba(255,255,255,0.55); }
.section-dark .editorial-feature p { color: rgba(255,255,255,0.55); }
.trust-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.trust-image {
  border-radius: var(--radius); width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}
.trust-items { display: flex; flex-direction: column; gap: 20px; }
.trust-item {
  display: flex; gap: 18px; align-items: flex-start;
}
.trust-item svg {
  width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px;
  color: var(--gold);
}
.trust-item h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.trust-item p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cta-section.section-cream {
  background: var(--cream); text-align: center; padding: 120px 0;
}
.cta-section h2 { max-width: 640px; margin: 0 auto 16px; }
.cta-section p {
  color: var(--muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px;
}
.section-split {
  position: relative; overflow: hidden;
}
.split-media {
  position: absolute; top: 0; left: 0; width: 55%; height: 100%; z-index: 0;
  overflow: hidden;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.split-gradient {
  position: absolute; top: 0; left: 0; width: 65%; height: 100%; z-index: 1;
  background: linear-gradient(90deg,
    rgba(245,240,235,0.15) 0%,
    rgba(245,240,235,0.5) 40%,
    rgba(245,240,235,0.95) 60%,
    rgba(245,240,235,1) 100%
  );
  pointer-events: none;
}
.split-layout {
  position: relative; z-index: 2; display: flex; justify-content: flex-end;
}
.split-content {
  width: 50%; max-width: 520px; padding: 40px 0;
}
.split-content h2 { margin-bottom: 24px; }
.split-content p { margin-bottom: 36px; line-height: 1.8; font-size: 1.1rem; }
.split-content .editorial-features { gap: 24px; }
.split-content .editorial-feature { gap: 18px; }
.split-content .btn-primary { margin-top: 20px; }
.section-split .container { position: relative; z-index: 2; }
#compareGrid > .reveal-s {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#compareGrid > .reveal-s:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
#compareGrid > .reveal-s:first-child:hover {
  box-shadow: 0 8px 30px rgba(234,179,8,0.12);
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}
.feature-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); padding: 24px 32px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
  transform: translateX(4px); border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-subtle); color: var(--gold); margin-top: 2px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; line-height: 1.4; }
.feature-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
footer {
  text-align: center; padding: 32px 0;
  color: var(--muted); font-size: 0.82rem;
  border-top: 1px solid var(--border);
}
.reveal, .reveal-l, .reveal-r, .reveal-s { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .reveal-l { opacity: 0; transform: translateX(-30px); }
.js .reveal-r { opacity: 0; transform: translateX(30px); }
.js .reveal-s { opacity: 0; transform: scale(0.96); }
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; padding: 100px 0 60px; text-align: center; }
  .hero p { margin: 0 auto 36px; max-width: 480px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mockup { max-width: 340px; transform: none; }
  .hero-mockup:hover { transform: none; }
  .editorial { grid-template-columns: 1fr; gap: 48px; }
  .editorial.flipped { direction: ltr; }
  .editorial.flipped > * { direction: ltr; }
  .editorial-content { max-width: 100%; }
  .trust-layout { grid-template-columns: 1fr; gap: 48px; }
  .trust-image { max-width: 600px; margin: 0 auto; }
  .split-media { width: 45%; }
  .split-gradient { width: 60%; }
  .split-content { width: 55%; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero-layout { gap: 32px; padding: 80px 0 40px; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stats div { flex: 1; min-width: 100px; }
  .hero-stats strong { font-size: 2rem; }
  .hero-stats .stat-label { font-size: 0.78rem; }
  .hero-mockup { max-width: 260px; border-radius: 20px; }
  .cta-section { padding: 72px 0; }
  .editorial { gap: 36px; }
  .trust-layout { gap: 36px; }
  .section-split { padding-top: 0; }
  .split-media {
    position: relative; width: 100%; height: 220px; opacity: 1;
  }
  .split-media img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
    border-radius: 0;
  }
  .split-gradient { display: none; }
  .split-layout { justify-content: flex-start; }
  .split-content { width: 100%; max-width: 100%; padding: 24px 0 0; }
  .split-content h2 { margin-bottom: 18px; }
  .split-content p { margin-bottom: 24px; font-size: 1rem; }
  .split-content .editorial-features { gap: 18px; }
}
@media (max-width: 640px) {
  nav { padding: 14px 0; }
  nav .logo-text { font-size: 1.1rem; }
  nav .logo-accent { font-size: 1.1rem; }
  nav .logo-mark { width: 24px; height: 24px; }
  nav .cta-outline { display: none; }
  nav a.cta { padding: 8px 16px; font-size: 0.78rem; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero p { font-size: 0.92rem; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .btn { width: 100%; text-align: center; padding: 14px 24px; font-size: 0.92rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-layout { padding: 80px 0 32px; }
  .hero-stats { gap: 16px; justify-content: center; margin-top: 32px; padding-top: 24px; text-align: center; }
  .hero-stats div { text-align: center; }
  .hero-mockup { max-width: 220px; }
  section h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .editorial-feature { gap: 12px; }
  .trust-item { gap: 14px; }
  .feature-item { padding: 20px 24px; width: 100%; }
  #featuresGrid { overflow-x: hidden; }
  .compareGrid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-layout { padding: 70px 0 24px; gap: 24px; }
  .hero-mockup { max-width: 180px; border-radius: 14px; }
  .hero-stats { flex-direction: column; gap: 12px; text-align: center; justify-content: center; }
  .hero-stats div { min-width: auto; text-align: center; }
  .hero-stats strong { font-size: 1.6rem; }
  section { padding: 48px 0; }
  .editorial { gap: 24px; }
  .trust-layout { gap: 28px; }
  .feature-item { padding: 20px; gap: 16px; flex-direction: column; width: 100%; }
  .feature-item h3 { font-size: 0.88rem; }
  .feature-item p { font-size: 0.82rem; }
  .cta-section { padding: 56px 0; }
  nav a.cta { font-size: 0.72rem; padding: 6px 12px; }
  .feature-item { padding: 16px; width: 100%; }
  a:active, .btn:active { transform: scale(0.97); }
}
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(1.3rem, 6vw, 1.5rem); }
  .hero-mockup { max-width: 150px; border-radius: 12px; }
  .hero-badge { font-size: 0.65rem; }
  nav .logo-text { font-size: 1rem; }
  nav .logo-accent { font-size: 1rem; }
  nav .logo-mark { width: 20px; height: 20px; }
  nav a.cta { font-size: 0.68rem; padding: 5px 10px; }
}
