:root {
  color-scheme: light dark;
  --bg: #f7f8fb;
  --surface: rgba(255,255,255,.82);
  --surface-solid: #ffffff;
  --surface-2: #f0f2f6;
  --text: #12151b;
  --muted: #667085;
  --line: rgba(18,21,27,.10);
  --brand: #ff7a00;
  --brand-2: #ff9b3d;
  --brand-deep: #d65d00;
  --shadow: 0 20px 55px rgba(20,24,32,.10);
  --nav: rgba(247,248,251,.78);
  --success: #0a8f63;
  --warning: #b56900;
  --radius: 24px;
}
html[data-theme="dark"] {
  --bg: #090a0d;
  --surface: rgba(20,22,28,.80);
  --surface-solid: #12141a;
  --surface-2: #171a21;
  --text: #f7f8fb;
  --muted: #a7adba;
  --line: rgba(255,255,255,.10);
  --shadow: 0 24px 80px rgba(0,0,0,.32);
  --nav: rgba(9,10,13,.78);
  --success: #54d6a7;
  --warning: #ffbd66;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 7%, rgba(255,122,0,.11), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(255,155,61,.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, select, a { -webkit-tap-highlight-color: transparent; }
button, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--text); color: var(--bg); padding: 10px 14px; border-radius: 12px; }
.skip-link:focus { top: 14px; }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: var(--nav); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 74px; display:flex; align-items:center; gap: 22px; }
.brand { display:flex; align-items:center; gap: 10px; text-decoration:none; min-width: 132px; }
.brand img { height: 38px; width: auto; max-width: 126px; object-fit:contain; border-radius: 8px; }
.brand-fallback { display:none; font-size: 28px; font-weight: 850; letter-spacing:-.04em; color: var(--brand); }
.nav-links { display:flex; gap: 20px; align-items:center; margin-left:auto; }
.nav-links a { text-decoration:none; font-size: 14px; font-weight: 700; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-tools { display:flex; align-items:center; gap:8px; }
.control { border:1px solid var(--line); background:var(--surface); color:var(--text); min-height:40px; border-radius:13px; padding:0 12px; }
select.control { max-width: 150px; }
.icon-btn { width:40px; padding:0; display:grid; place-items:center; cursor:pointer; }
.menu-btn { display:none; }
.hero { padding: 90px 0 52px; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns: 1.14fr .86fr; align-items:center; gap:64px; }
.eyebrow { display:inline-flex; align-items:center; gap:9px; border:1px solid rgba(255,122,0,.24); color:var(--brand-deep); background:rgba(255,122,0,.08); border-radius:999px; padding:8px 12px; font-weight:800; font-size:13px; }
html[data-theme="dark"] .eyebrow { color:var(--brand-2); }
.dot { width:8px; height:8px; background:var(--brand); border-radius:99px; box-shadow:0 0 0 5px rgba(255,122,0,.12); }
h1,h2,h3 { line-height:1.08; margin:0; letter-spacing:-.035em; }
h1 { font-size: clamp(48px, 7vw, 82px); margin-top:22px; }
.hero p.lead { font-size: clamp(18px, 2vw, 22px); color:var(--muted); max-width:760px; margin:26px 0 0; }
.highlight { color:var(--brand); }
.cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:32px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:50px; padding:0 20px; border-radius:15px; text-decoration:none; font-weight:850; border:1px solid var(--line); }
.btn-primary { color:#fff; background:linear-gradient(135deg,var(--brand),#ff5c00); border-color:transparent; box-shadow:0 12px 28px rgba(255,122,0,.22); }
.btn-secondary { background:var(--surface); }
.hero-note { margin-top:16px; color:var(--muted); font-size:13px; }
.hero-panel { position:relative; min-height:510px; border-radius:36px; border:1px solid var(--line); background:linear-gradient(145deg, rgba(255,122,0,.14), var(--surface-solid) 42%, rgba(255,155,61,.05)); box-shadow:var(--shadow); padding:26px; overflow:hidden; }
.hero-panel:before { content:""; position:absolute; width:270px; height:270px; border-radius:50%; background:rgba(255,122,0,.20); filter:blur(70px); right:-80px; top:-70px; }
.phone { width:240px; height:440px; position:absolute; left:50%; top:50%; transform:translate(-50%,-48%) rotate(-3deg); border:9px solid #1a1d24; border-radius:42px; background:linear-gradient(160deg,#161922,#08090c); box-shadow:0 30px 65px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08); }
.phone:before { content:""; position:absolute; left:50%; top:12px; transform:translateX(-50%); width:82px; height:22px; border-radius:99px; background:#020305; }
.phone-logo { position:absolute; inset:0; display:grid; place-items:center; color:var(--brand); font-weight:900; font-size:38px; letter-spacing:-.05em; }
.float-card { position:absolute; z-index:3; width:190px; border:1px solid var(--line); background:var(--surface); backdrop-filter:blur(16px); border-radius:18px; padding:15px; box-shadow:var(--shadow); }
.float-card strong { display:block; font-size:14px; }
.float-card span { display:block; color:var(--muted); font-size:12px; margin-top:4px; }
.float-a { top:42px; left:26px; }
.float-b { right:24px; top:145px; }
.float-c { bottom:35px; left:32px; }
.mini-icon { width:36px; height:36px; border-radius:12px; display:grid; place-items:center; background:rgba(255,122,0,.12); color:var(--brand); margin-bottom:10px; font-weight:900; }
.section { padding:84px 0; }
.section.compact { padding:58px 0; }
.section-head { max-width:790px; margin-bottom:36px; }
.kicker { font-size:13px; text-transform:uppercase; letter-spacing:.16em; color:var(--brand); font-weight:900; margin-bottom:12px; }
h2 { font-size:clamp(34px,5vw,54px); }
.section-head p { margin:17px 0 0; color:var(--muted); font-size:18px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.card { border:1px solid var(--line); background:var(--surface); border-radius:var(--radius); padding:26px; box-shadow:0 10px 28px rgba(20,24,32,.04); }
.card h3 { font-size:23px; margin-top:14px; }
.card p { color:var(--muted); margin:12px 0 0; }
.card .icon { width:46px; height:46px; border-radius:15px; display:grid; place-items:center; background:rgba(255,122,0,.11); color:var(--brand); font-weight:900; font-size:20px; }
.card.featured { background:linear-gradient(145deg, rgba(255,122,0,.12), var(--surface)); border-color:rgba(255,122,0,.30); }
.checks { list-style:none; padding:0; margin:18px 0 0; display:grid; gap:10px; }
.checks li { display:flex; gap:10px; color:var(--muted); }
.checks li:before { content:"✓"; color:var(--success); font-weight:900; }
.band { border:1px solid rgba(255,122,0,.23); background:linear-gradient(115deg,rgba(255,122,0,.13),rgba(255,122,0,.04)); border-radius:30px; padding:34px; display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; }
.band h2 { font-size:clamp(30px,4vw,44px); }
.band p { margin:12px 0 0; color:var(--muted); max-width:760px; }
.steps { counter-reset:step; display:grid; gap:13px; }
.step { counter-increment:step; display:grid; grid-template-columns:58px 1fr; gap:18px; align-items:start; padding:22px; border:1px solid var(--line); border-radius:20px; background:var(--surface); }
.step:before { content:counter(step); width:48px; height:48px; display:grid; place-items:center; background:var(--brand); color:white; font-weight:900; border-radius:15px; }
.step strong { font-size:18px; }
.step p { margin:7px 0 0; color:var(--muted); }
.tiktok-box { border-radius:30px; border:1px solid var(--line); background:linear-gradient(145deg,var(--surface-solid),rgba(255,122,0,.06)); padding:34px; }
.tiktok-head { display:flex; gap:16px; align-items:flex-start; }
.tiktok-mark { width:54px; height:54px; border-radius:18px; background:#111; color:#fff; display:grid; place-items:center; font-weight:900; letter-spacing:-.06em; flex:0 0 auto; }
.scope-list { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; }
.scope { border:1px solid var(--line); background:var(--surface-2); color:var(--muted); font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:12px; border-radius:999px; padding:7px 10px; }
.table-wrap { overflow:auto; border:1px solid var(--line); border-radius:20px; margin-top:22px; }
table { width:100%; border-collapse:collapse; min-width:720px; background:var(--surface); }
th,td { text-align:left; padding:15px 17px; border-bottom:1px solid var(--line); vertical-align:top; }
th { font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
td { font-size:14px; }
tr:last-child td { border-bottom:0; }
.faq { display:grid; gap:12px; }
details { border:1px solid var(--line); border-radius:18px; background:var(--surface); padding:0 20px; }
summary { cursor:pointer; list-style:none; font-weight:850; padding:19px 0; }
summary::-webkit-details-marker { display:none; }
details p { color:var(--muted); margin:0 0 20px; }
.site-footer { padding:44px 0 30px; border-top:1px solid var(--line); margin-top:40px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:28px; }
.footer-brand { max-width:430px; }
.footer-brand p { color:var(--muted); }
.footer-links { display:grid; align-content:start; gap:9px; }
.footer-links strong { margin-bottom:4px; }
.footer-links a { color:var(--muted); text-decoration:none; }
.footer-links a:hover { color:var(--text); }
.legal-visible { margin-top:30px; padding:18px 0; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.legal-visible .links { display:flex; gap:16px; flex-wrap:wrap; }
.legal-visible a { font-weight:800; color:var(--brand); }
.small { font-size:13px; color:var(--muted); }
.legal-hero { padding:72px 0 28px; }
.legal-content { max-width:900px; }
.legal-content h1 { font-size:clamp(40px,6vw,64px); }
.legal-content h2 { font-size:28px; margin-top:42px; }
.legal-content h3 { font-size:20px; margin-top:26px; }
.legal-content p,.legal-content li { color:var(--muted); }
.legal-content ul { padding-left:22px; }
.legal-box { border:1px solid var(--line); background:var(--surface); border-radius:22px; padding:22px; margin:24px 0; }
.notice { padding:14px 16px; border-left:4px solid var(--brand); background:rgba(255,122,0,.07); border-radius:0 12px 12px 0; color:var(--muted); }
@media (max-width: 920px) {
  .nav-links { display:none; position:absolute; left:20px; right:20px; top:70px; background:var(--surface-solid); border:1px solid var(--line); border-radius:18px; padding:14px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .nav-links.open { display:flex; }
  .menu-btn { display:grid; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-panel { min-height:480px; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 680px) {
  .container { width:min(100% - 26px,1180px); }
  .nav-wrap { gap:10px; min-height:66px; }
  .brand { min-width:0; margin-right:auto; }
  .brand img { height:33px; max-width:105px; }
  .nav-tools select { width:92px; padding:0 7px; }
  .hero { padding-top:58px; }
  .hero-panel { min-height:420px; border-radius:26px; }
  .phone { width:192px; height:355px; }
  .float-card { width:155px; padding:12px; }
  .float-a { left:10px; top:30px; }
  .float-b { right:8px; top:130px; }
  .float-c { left:14px; bottom:24px; }
  .section { padding:62px 0; }
  .grid-2,.grid-4 { grid-template-columns:1fr; }
  .band { grid-template-columns:1fr; padding:25px; }
  .footer-grid { grid-template-columns:1fr; }
  .tiktok-box { padding:24px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } *,*:before,*:after { animation:none!important; transition:none!important; } }
