:root {
  --violet: #5b4cff;
  --violet-2: #7b61ff;
  --green: #22c55e;
  --amber: #ffb020;
  --pink: #ff5ca8;
  --ink: #0f172a;
  --slate: #64748b;
  --surface: #f1f5f9;
  --line: #e2e8f0;
  --white: #fff;
  --radius: 26px;
  --shadow: 0 24px 60px rgba(38, 34, 89, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.shell { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(226,232,240,.8);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.2rem; font-weight: 800; letter-spacing: -.03em; }
.brand img, .footer-brand img { border-radius: 10px; box-shadow: 0 8px 20px rgba(91,76,255,.22); }
.nav-wrap nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-wrap nav a, footer nav a { color: #475569; text-decoration: none; font-size: .94rem; font-weight: 650; }
.nav-wrap nav a:hover, footer nav a:hover { color: var(--violet); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  box-shadow: 0 12px 30px rgba(91,76,255,.26);
  text-decoration: none;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(91,76,255,.32); }
.button-small { min-height: 42px; padding-inline: 17px; border-radius: 13px; font-size: .9rem; }
.text-link { color: var(--violet); font-weight: 760; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { min-height: 700px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; padding-block: 80px 88px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--violet); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 690px; margin-bottom: 24px; font-size: clamp(3.3rem, 6.2vw, 5.6rem); line-height: .96; letter-spacing: -.065em; }
h1 span { color: var(--violet); }
.lede { max-width: 610px; margin-bottom: 28px; color: #475569; font-size: 1.2rem; line-height: 1.7; }
.actions { display: flex; align-items: center; gap: 24px; }
.availability { margin: 20px 0 0; color: var(--slate); font-size: .87rem; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; isolation: isolate; }
.glow { position: absolute; inset: 6% 0 2%; z-index: -2; border-radius: 50%; background: radial-gradient(circle at 50% 40%, rgba(123,97,255,.35), rgba(91,76,255,.08) 52%, transparent 70%); filter: blur(8px); }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; z-index: -1; border-radius: 42px; transform: rotate(-9deg); }
.hero-visual::before { width: 76%; height: 74%; background: linear-gradient(145deg, #f4f1ff, #ece9ff); }
.hero-visual::after { width: 67%; height: 67%; border: 2px solid rgba(91,76,255,.15); transform: rotate(8deg); }
.phone { position: relative; width: 290px; padding: 9px; border: 2px solid #172033; border-radius: 48px; background: #0f172a; box-shadow: 0 35px 70px rgba(15,23,42,.3); overflow: hidden; }
.phone img { width: 100%; border-radius: 39px; }
.phone-top { position: absolute; z-index: 2; top: 15px; left: 50%; width: 84px; height: 22px; transform: translateX(-50%); border-radius: 20px; background: #0f172a; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 13px 16px; border: 1px solid rgba(226,232,240,.9); border-radius: 16px; background: rgba(255,255,255,.93); box-shadow: 0 16px 38px rgba(15,23,42,.13); font-size: .79rem; font-weight: 750; backdrop-filter: blur(12px); }
.note-one { top: 20%; right: 0; }
.note-two { bottom: 18%; left: 0; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-green { background: var(--green); }
.dot-pink { background: var(--pink); }

.trust-band { padding: 25px 0; border-block: 1px solid var(--line); background: #fbfcfe; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-grid > div { display: grid; grid-template-columns: 30px 1fr; align-items: center; }
.trust-grid .check { grid-row: span 2; display: grid; place-items: center; width: 22px; height: 22px; color: white; border-radius: 50%; background: var(--green); font-size: .75rem; }
.trust-grid strong { font-size: .94rem; }
.trust-grid small { margin-top: 3px; color: var(--slate); }

.section { padding-block: 108px; }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading.aligned-left { margin: 0; text-align: left; }
h2 { margin-bottom: 18px; font-size: clamp(2.25rem, 4.5vw, 3.7rem); line-height: 1.04; letter-spacing: -.052em; }
.section-heading > p:last-child, .privacy-callout p, .pro-card > div > p:last-child { color: var(--slate); font-size: 1.08rem; line-height: 1.68; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card, .feature-grid article { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 40px rgba(15,23,42,.05); }
.step-number { position: absolute; top: 24px; right: 26px; color: #cbd5e1; font-size: 2rem; font-weight: 850; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 15px; font-size: 1.3rem; font-weight: 850; }
.violet { color: var(--violet); background: rgba(91,76,255,.11); }
.green { color: #15803d; background: rgba(34,197,94,.13); }
.amber { color: #b76b00; background: rgba(255,176,32,.16); }
.pink { color: #d72c7d; background: rgba(255,92,168,.14); }
.step-card h3, .feature-grid h3 { margin-bottom: 10px; font-size: 1.28rem; }
.step-card p, .feature-grid p { margin-bottom: 0; color: var(--slate); line-height: 1.62; }

.soft-section { background: linear-gradient(180deg, #f7f6ff, #f8fafc); overflow: hidden; }
.split-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 70px; align-items: center; }
.extension-list { display: grid; gap: 22px; margin-top: 34px; }
.extension-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.extension-list p { margin: 0; line-height: 1.4; }
.extension-list small { display: inline-block; margin-top: 5px; color: var(--slate); font-size: .9rem; line-height: 1.5; }
.mini-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--violet); border-radius: 13px; background: white; box-shadow: 0 9px 20px rgba(91,76,255,.09); font-weight: 800; }
.extension-gallery { position: relative; min-height: 640px; }
.shot { position: absolute; margin: 0; padding: 8px; border: 1px solid rgba(226,232,240,.8); border-radius: 37px; background: #fff; box-shadow: var(--shadow); }
.shot img { border-radius: 30px; }
.shot figcaption { position: absolute; padding: 10px 14px; border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 10px 25px rgba(15,23,42,.12); font-size: .75rem; font-weight: 750; white-space: nowrap; }
.shot-share { top: 8px; left: 4%; width: 300px; transform: rotate(-5deg); }
.shot-share figcaption { bottom: 12%; right: -25%; }
.shot-widget { right: 1%; bottom: 2px; width: 300px; transform: rotate(5deg); }
.shot-widget figcaption { top: 18%; left: -33%; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid article { padding: 26px; box-shadow: none; }

.pro-section { color: white; background: var(--ink); }
.pro-card { position: relative; overflow: hidden; }
.pro-card::after { content: ""; position: absolute; top: -180px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: rgba(91,76,255,.24); filter: blur(10px); }
.pro-card > div:first-child { position: relative; z-index: 1; max-width: 690px; }
.pro-card > div > p:last-child { color: #cbd5e1; }
.eyebrow.light { color: #b9b0ff; }
.plan-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 45px; }
.plan { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: rgba(255,255,255,.06); }
.pro-plan { border-color: rgba(185,176,255,.45); background: linear-gradient(145deg, rgba(91,76,255,.3), rgba(123,97,255,.13)); }
.plan-label { display: inline-block; padding: 6px 10px; border-radius: 9px; color: white; background: rgba(255,255,255,.12); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.plan h3 { margin: 8px 0 18px; font-size: 1.3rem; }
.plan ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #e2e8f0; }
.plan li::before { content: "✓"; margin-right: 10px; color: #7ee29f; font-weight: 800; }
.price-note { position: relative; z-index: 1; margin: 20px 0 0; color: #94a3b8; font-size: .82rem; }

.privacy-callout { display: grid; grid-template-columns: 92px 1fr auto; gap: 30px; align-items: center; }
.privacy-mark { display: grid; place-items: center; width: 88px; height: 88px; color: var(--violet); border-radius: 28px; background: #f0eeff; font-size: 2rem; font-weight: 850; }
.privacy-callout h2 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3rem); }
.privacy-callout p { margin-bottom: 0; }

.faq { padding-top: 24px; }
.faq-grid { max-width: 820px; margin: auto; display: grid; gap: 12px; }
details { padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
summary { cursor: pointer; font-weight: 760; }
details p { margin: 15px 0 0; color: var(--slate); line-height: 1.65; }

.closing { padding: 95px 0; color: white; background: linear-gradient(135deg, var(--violet), var(--violet-2)); text-align: center; }
.closing img { margin: 0 auto 25px; border-radius: 20px; box-shadow: 0 18px 38px rgba(15,23,42,.25); }
.closing h2 { margin-bottom: 12px; }
.closing p { margin-bottom: 28px; color: rgba(255,255,255,.82); font-size: 1.1rem; }
.button-light { color: var(--violet); background: white; box-shadow: 0 12px 28px rgba(15,23,42,.16); }

footer { padding: 32px 0; background: #fff; }
.footer-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand span { display: grid; gap: 2px; }
.footer-brand small { color: var(--slate); font-size: .72rem; }
footer nav { display: flex; gap: 24px; }
footer p { justify-self: end; margin: 0; color: var(--slate); font-size: .77rem; }

.legal-main { min-height: 70vh; padding: 78px 0 100px; }
.legal-shell { width: min(760px, calc(100% - 40px)); margin-inline: auto; }
.legal-main h1 { margin-bottom: 18px; font-size: clamp(2.6rem, 7vw, 4.6rem); }
.legal-meta { margin-bottom: 40px; color: var(--slate); }
.legal-main h2 { margin: 38px 0 12px; font-size: 1.55rem; letter-spacing: -.025em; }
.legal-main p, .legal-main li { color: #475569; line-height: 1.75; }
.legal-main li + li { margin-top: 7px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 38px; }
.support-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; text-decoration: none; }
.support-card:hover { border-color: #b9b0ff; box-shadow: 0 14px 35px rgba(91,76,255,.08); }
.support-card h2 { margin-top: 0; font-size: 1.2rem; }
.support-card p { margin-bottom: 0; font-size: .92rem; }
.contact-box { margin-top: 36px; padding: 28px; border-radius: 22px; background: #f4f2ff; }
.contact-box h2 { margin-top: 0; }

@media (max-width: 900px) {
  .nav-wrap nav { display: none; }
  .nav-wrap .button { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { min-height: 540px; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; }
  .section-heading.aligned-left { margin-inline: auto; text-align: center; }
  .extension-list { max-width: 590px; margin-inline: auto; text-align: left; }
  .extension-gallery { width: min(650px, 100%); margin-inline: auto; }
  .privacy-callout { grid-template-columns: 80px 1fr; }
  .privacy-callout > a { grid-column: 2; }
  .footer-wrap { grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1140px); }
  .site-header .button-small { display: none; }
  .nav-wrap { min-height: 66px; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero { gap: 24px; padding-block: 50px 60px; }
  .actions { flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 500px; }
  .phone { width: 250px; }
  .note-one { right: -4px; }
  .note-two { left: -4px; }
  .section { padding-block: 78px; }
  .steps, .feature-grid, .plan-grid, .support-grid { grid-template-columns: 1fr; }
  .extension-gallery { min-height: 700px; }
  .shot { width: 245px; }
  .shot-share { left: 0; }
  .shot-share figcaption { right: -18%; }
  .shot-widget { right: 0; }
  .shot-widget figcaption { left: -18%; }
  .privacy-callout { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .privacy-callout > a { grid-column: auto; }
  .footer-wrap { grid-template-columns: 1fr; justify-items: start; }
  footer p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
