:root {
  --bg: #050505;
  --panel: #111214;
  --panel-2: #1c1d20;
  --text: #f5f5f7;
  --muted: #a7a7ad;
  --orange: #ff7a1a;
  --orange-2: #ff4d00;
  --blue: #1687f5;
  --green: #32d061;
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(255,122,26,.35), transparent 28rem),
    radial-gradient(circle at 8% 50%, rgba(22,135,245,.15), transparent 26rem),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; }
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.brand span span { color: var(--orange); }
nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 700; }
.nav-cta { color: white; background: var(--orange); padding: 10px 16px; border-radius: 999px; }
.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(48px, 8vw, 110px) clamp(20px, 6vw, 92px);
  overflow: hidden;
}
.eyebrow { color: var(--orange); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(4rem, 12vw, 9.5rem); line-height: .86; letter-spacing: -.08em; margin-bottom: 24px; }
.hero-subtitle { color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.55; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.primary-btn, .secondary-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 900;
}
.primary-btn { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: white; box-shadow: 0 18px 60px rgba(255,122,26,.28); }
.secondary-btn { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.04); }
.hero-art { position: relative; min-height: 620px; display: grid; place-items: center; }
.glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,26,.52), transparent 66%); filter: blur(10px); }
.hero-phone { position: relative; max-height: 760px; width: auto; filter: drop-shadow(0 35px 70px rgba(0,0,0,.55)); border-radius: 54px; }
.quick-points, .feature-grid, .screen-carousel, .screen-carousel-status, .privacy, .cta, footer { margin-inline: clamp(20px, 6vw, 92px); }
.quick-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 96px; }
.quick-points article, .feature-grid article, .privacy-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; }
.quick-points span { color: var(--orange); font-weight: 900; }
.quick-points h3 { font-size: 2rem; margin: 8px 0; }
.quick-points p, .feature-grid p, .privacy-card p { color: var(--muted); line-height: 1.55; margin-bottom: 0; }
.feature-highlight { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 48px; margin: 0 clamp(20px, 6vw, 92px) 110px; padding: clamp(28px, 5vw, 72px); background: linear-gradient(135deg, rgba(255,122,26,.14), rgba(22,135,245,.12)); border: 1px solid rgba(255,255,255,.12); border-radius: 40px; }
h2 { font-size: clamp(2.4rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.06em; margin-bottom: 18px; }
.hero-copy, .feature-highlight > div, .privacy > div, .section-heading { min-width: 0; }
.feature-highlight p:not(.eyebrow) { color: var(--muted); font-size: 1.15rem; line-height: 1.6; }
.feature-highlight img { width: 100%; border-radius: 32px; box-shadow: 0 35px 80px rgba(0,0,0,.45); }
.features, .screens, .privacy, .cta { padding-block: 80px; }
.section-heading { text-align: center; max-width: 860px; margin: 0 auto 42px; padding-inline: 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid h3 { font-size: 1.35rem; margin-bottom: 10px; }
.screen-carousel {
  --screen-gap: 18px;
  --slides-per-view: 3;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: var(--screen-gap);
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
}
.screen-viewport {
  min-width: 0;
  overflow: hidden;
}
.screen-track {
  display: flex;
  gap: var(--screen-gap);
  transition: transform .35s ease;
}
.screen-slide {
  display: grid;
  flex: 0 0 calc((100% - (var(--screen-gap) * (var(--slides-per-view) - 1))) / var(--slides-per-view));
  gap: 18px;
  justify-items: center;
  margin: 0;
}
.screen-slide img {
  width: min(100%, 380px);
  max-height: 720px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.screen-slide figcaption {
  color: var(--muted);
  font-weight: 900;
}
.carousel-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(255,122,26,.22);
  border-color: rgba(255,122,26,.55);
  transform: translateY(-1px);
  outline: none;
}
.screen-carousel-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 900;
}
.screen-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}
.screen-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
}
.screen-dots button[aria-current="true"] {
  background: var(--orange);
  transform: scale(1.25);
}
.privacy { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.cta { text-align: center; background: linear-gradient(135deg, rgba(255,122,26,.18), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.12); border-radius: 44px; padding: 64px 20px; margin-bottom: 72px; }
.cta img { width: 92px; height: 92px; border-radius: 24px; margin: 0 auto 20px; }
.cta p { color: var(--muted); font-size: 1.2rem; }
footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 28px 0 42px; color: var(--muted); border-top: 1px solid rgba(255,255,255,.1); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.social-links a {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
}
.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(255,122,26,.55);
  background: rgba(255,122,26,.16);
  outline: none;
}
@media (max-width: 980px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 58px; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-art { min-height: auto; }
  .hero-phone { max-height: 620px; }
  .quick-points, .feature-grid, .privacy, .feature-highlight { grid-template-columns: 1fr; }
  .feature-highlight { text-align: center; }
  .feature-highlight img { width: min(100%, 360px); max-width: 100%; margin: 0 auto; }
  .screen-carousel { --slides-per-view: 2; }
}
@media (max-width: 620px) {
  .site-header { padding: 14px 16px; }
  .brand span { display: none; }
  .nav-cta { padding: 9px 12px; }
  h1 { font-size: 4.6rem; }
  h2 { font-size: clamp(2rem, 10vw, 2.8rem); letter-spacing: -.04em; }
  .feature-highlight {
    margin: 0 16px 80px;
    padding: 28px 18px;
    border-radius: 32px;
    overflow: hidden;
  }
  .feature-highlight p:not(.eyebrow) { font-size: 1rem; }
  .quick-points article, .feature-grid article { padding: 22px; }
  .screen-carousel { --screen-gap: 10px; --slides-per-view: 1; grid-template-columns: 44px minmax(0, 1fr) 44px; }
  .carousel-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .screen-slide img { width: min(100%, 300px); border-radius: 24px; }
  .screen-carousel-status { flex-direction: column; }
  footer { flex-direction: column; align-items: flex-start; }
  .social-links { justify-content: flex-start; }
}
@media (min-width: 1240px) {
  .screen-carousel { --slides-per-view: 4; }
}
