/* ---------- base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue",Helvetica,Arial,sans-serif;
  color:#1d1d1f;background:#fff;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  font-size:17px;line-height:1.47;letter-spacing:-.022em;
}
img{max-width:100%;display:block}
a{color:#ff7c09;text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:2px solid #ff7c09;outline-offset:3px;border-radius:4px}
.wrap{max-width:1040px;margin:0 auto;padding:0 22px}
.wrap-wide{max-width:1440px;margin:0 auto;padding:0 22px}

/* ---------- type ---------- */
h1,h2,h3,h4{margin:0;font-weight:600;letter-spacing:-.015em}
.hero-title{font-size:clamp(34px,6.2vw,74px);line-height:1.06;letter-spacing:-.03em;font-weight:600}
.h-xl{font-size:clamp(34px,5.2vw,60px);line-height:1.06;letter-spacing:-.028em;font-weight:600}
.h-lg{font-size:clamp(28px,3.6vw,44px);line-height:1.1;letter-spacing:-.022em;font-weight:600}
.h-md{font-size:clamp(22px,2.4vw,28px);line-height:1.15;letter-spacing:-.02em;font-weight:600}
.lead{font-size:clamp(19px,2.1vw,25px);line-height:1.35;letter-spacing:-.014em;font-weight:400;color:#1d1d1f}
.sub{color:#6e6e73}
.eyebrow{font-size:19px;font-weight:600;letter-spacing:-.01em;color:#6e6e73}
.tiny{font-size:12px;line-height:1.35;color:#6e6e73;letter-spacing:-.01em}
.center{text-align:center}

/* ---------- product name: logo + model ---------- */
.pname{display:inline-flex;align-items:baseline;gap:.3em;white-space:nowrap}
.pmark{height:.91em;width:auto;flex:0 0 auto;transform:translateY(.16em)}
.pmodel{font-weight:400;letter-spacing:.005em;color:#6e6e73}
.tile.dark .pmodel,.cc-card.hi .pmodel,.bg-black .pmodel{color:#a1a1a6}

/* ---------- buttons / links ---------- */
.btn{
  display:inline-block;background:#ff7c09;color:#fff;border:0;cursor:pointer;
  font:inherit;font-size:17px;font-weight:400;letter-spacing:-.01em;
  padding:12px 22px;border-radius:980px;text-decoration:none;
  transition:background .2s ease,transform .2s ease;
}
.btn:hover{background:#ff8c26;text-decoration:none}
.btn:active{transform:scale(.97)}
.btn.ghost{background:transparent;color:#ff7c09;border:1px solid #ff7c09}
.btn.ghost:hover{background:#ff7c09;color:#fff}
.btn.on-dark{background:#ff7c09}
.btn.ghost.on-dark{color:#ff7c09;border-color:#ff7c09;background:transparent}
.btn.ghost.on-dark:hover{background:#ff7c09;color:#000}
.btn.sm{font-size:14px;padding:7px 15px}
.arrow{white-space:nowrap;font-size:clamp(17px,1.6vw,21px)}
.arrow::after{content:" \203A";display:inline-block;transition:transform .2s ease}
.arrow:hover{text-decoration:none}
.arrow:hover::after{transform:translateX(3px)}
.links-row{display:flex;flex-wrap:wrap;gap:14px 30px;justify-content:center;margin-top:20px}

/* ---------- nav ---------- */
.nav{
  position:sticky;top:0;z-index:9000;height:48px;
  background:rgba(251,251,253,.72);
  -webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(0,0,0,.12);
}
.nav-in{max-width:1040px;margin:0 auto;height:48px;padding:0 22px;display:flex;align-items:center;gap:14px}
.brand{display:flex;align-items:baseline;gap:7px;flex:0 0 auto}
.brand img{height:25px;width:auto;opacity:.9}
.brand span{font-size:13px;color:#6e6e73;letter-spacing:-.01em;font-weight:400}
.nav ul{list-style:none;display:flex;gap:0;margin:0 auto;padding:0}
.nav ul a{color:#1d1d1f;font-size:12px;letter-spacing:-.01em;opacity:.88;padding:0 11px;line-height:48px;display:block}
.nav ul a:hover{opacity:1;text-decoration:none}
.nav-cta{flex:0 0 auto}
.burger{display:none;background:none;border:0;padding:6px;cursor:pointer;margin-left:auto}
.burger span{display:block;width:17px;height:1px;background:#1d1d1f;margin:4px 0;transition:transform .3s,opacity .3s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(5px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}
@media(max-width:833px){
  .nav ul{display:none;position:fixed;top:48px;left:0;right:0;background:rgba(251,251,253,.96);
    -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
    flex-direction:column;padding:8px 22px 26px;border-bottom:1px solid rgba(0,0,0,.1);margin:0}
  .nav ul.open{display:flex}
  .nav ul a{font-size:17px;line-height:1;padding:14px 0;border-bottom:1px solid rgba(0,0,0,.07)}
  .burger{display:block}
  .nav-cta{display:none}
}

/* ---------- sections ---------- */
section{position:relative}
.pad{padding:96px 0}
.pad-sm{padding:64px 0}
.bg-grey{background:#f5f5f7}
.bg-offwhite{background:#fbfbfd}
.bg-black{background:#000;color:#f5f5f7}
.bg-black .sub,.bg-black .tiny{color:#86868b}
.bg-black .lead{color:#f5f5f7}
.bg-black a{color:#ff7c09}

/* ---------- hero ---------- */
.hero{background:#fbfbfd;padding:70px 0 0;overflow:hidden;text-align:center}
.hero .lead{max-width:640px;margin:18px auto 0}
.hero-stage{position:relative;margin:44px auto 0;max-width:900px}
.hero-glow{
  position:absolute;left:50%;top:44%;transform:translate(-50%,-50%);
  width:min(120%,1000px);aspect-ratio:1.6/1;pointer-events:none;
  background:radial-gradient(ellipse at center,rgba(255,124,9,.20),rgba(255,124,9,0) 62%);
  filter:blur(12px);
}
.hero-device{position:relative;width:min(100%,760px);margin:0 auto}
.hero-scroll{margin:38px 0 0;padding-bottom:60px}

/* device */
.device{width:100%;height:auto;display:block}

/* ---------- tiles ---------- */
.tiles{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:833px){.tiles{grid-template-columns:1fr}}
.tile{
  border-radius:20px;padding:52px 32px 0;text-align:center;overflow:hidden;
  display:flex;flex-direction:column;min-height:520px;
}
.tile.light{background:#f5f5f7}
.tile.dark{background:#000;color:#f5f5f7}
.tile.dark .sub{color:#86868b}
.tile h3{font-size:clamp(30px,3.4vw,40px);letter-spacing:-.02em;line-height:1.08}
.tile p{margin:10px auto 0;max-width:340px;font-size:19px;letter-spacing:-.012em}
.tile .links-row{margin-top:18px}
.tile-art{margin-top:auto;padding-top:34px}
.tile-art svg{width:100%;height:auto;display:block}
.price-note{font-size:14px;color:#6e6e73;margin-top:12px}
.tile.dark .price-note{color:#86868b}

/* ---------- feature grid ---------- */
.fgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(0,0,0,.09);border:1px solid rgba(0,0,0,.09);border-radius:18px;overflow:hidden}
@media(max-width:1100px){.fgrid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.fgrid{grid-template-columns:1fr}}
.fgrid .cell{background:#fff;padding:34px 28px 38px}
.fgrid .cell h4{font-size:19px;letter-spacing:-.014em;margin-bottom:7px}
.fgrid .cell p{margin:0;font-size:15px;line-height:1.45;color:#6e6e73;letter-spacing:-.008em}
.ico{width:30px;height:30px;margin-bottom:16px;stroke:#1d1d1f;stroke-width:1.4;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* ---------- ui mock ---------- */
.mock{
  border-radius:14px;overflow:hidden;background:#fff;
  box-shadow:0 30px 70px rgba(0,0,0,.20),0 2px 8px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.08);max-width:940px;margin:0 auto;
}
.mock-bar{height:34px;background:#f5f5f7;border-bottom:1px solid rgba(0,0,0,.08);display:flex;align-items:center;padding:0 13px;gap:7px}
.dot{width:10px;height:10px;border-radius:50%}
.mock-url{margin-left:12px;font-size:11px;color:#86868b;background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:5px;padding:3px 12px;letter-spacing:0}
.mock-body{display:grid;grid-template-columns:180px 1fr;min-height:330px}
@media(max-width:640px){.mock-body{grid-template-columns:1fr}.mock-side{display:none}}
.mock-side{background:#fafafa;border-right:1px solid rgba(0,0,0,.07);padding:16px 12px}
.mock-side b{display:block;font-size:11px;color:#86868b;letter-spacing:.04em;text-transform:uppercase;margin:12px 8px 8px;font-weight:600}
.mi{display:flex;align-items:center;gap:9px;padding:7px 9px;border-radius:7px;font-size:13px;color:#1d1d1f;letter-spacing:-.005em}
.mi.on{background:#ff7c09;color:#fff}
.mi i{width:6px;height:6px;border-radius:2px;background:currentColor;opacity:.55;flex:0 0 auto}
.mock-main{padding:20px 22px}
.mock-h{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.mock-h strong{font-size:16px;letter-spacing:-.015em}
.pill{font-size:11px;background:#fff0e2;color:#ff7c09;border-radius:99px;padding:4px 11px;font-weight:500}
.kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px}
.kpi{border:1px solid rgba(0,0,0,.08);border-radius:10px;padding:11px 13px}
.kpi small{display:block;font-size:10px;color:#86868b;letter-spacing:.02em;text-transform:uppercase}
.kpi b{font-size:19px;letter-spacing:-.02em;display:block;margin-top:3px}
.bars{display:flex;align-items:flex-end;gap:7px;height:96px;padding:0 2px;border-bottom:1px solid rgba(0,0,0,.08);margin-bottom:14px}
.bars i{flex:1;background:linear-gradient(180deg,#ff7c09,#ffa552);border-radius:4px 4px 0 0;display:block}
.rows{display:flex;flex-direction:column;gap:7px}
.row{display:flex;align-items:center;gap:10px;font-size:12.5px;color:#424245;letter-spacing:-.005em}
.row u{flex:1;height:6px;background:#ececf0;border-radius:99px;text-decoration:none;overflow:hidden;display:block}
.row u b{display:block;height:100%;background:#1d1d1f;border-radius:99px}
.row span{width:44px;text-align:right;color:#86868b;font-variant-numeric:tabular-nums}

/* ---------- stats ---------- */
.stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:44px 24px;margin-top:56px}
.stat b{display:block;font-size:clamp(44px,5vw,68px);line-height:1;letter-spacing:-.03em;font-weight:600}
.stat p{margin:12px 0 0;font-size:16px;color:#86868b;letter-spacing:-.01em;max-width:230px}

/* ---------- cost compare ---------- */
.cc{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:44px}
@media(max-width:700px){.cc{grid-template-columns:1fr}}
.cc-card{background:#fff;border-radius:18px;padding:28px 26px 26px;border:1px solid rgba(0,0,0,.08)}
.cc-card.hi{background:#000;color:#f5f5f7;border-color:#000}
.cc-card h4{font-size:17px;letter-spacing:-.01em}
.cc-card .amount{font-size:clamp(34px,4vw,46px);letter-spacing:-.028em;font-weight:600;margin:14px 0 2px;line-height:1}
.cc-bar{height:9px;border-radius:99px;background:#e8e8ed;overflow:hidden;margin:18px 0 10px}
.cc-card.hi .cc-bar{background:#2a2a2c}
.cc-bar i{display:block;height:100%;border-radius:99px;background:#86868b}
.cc-card.hi .cc-bar i{background:#ff7c09}
.cc-list{list-style:none;margin:14px 0 0;padding:0;font-size:14px;color:#6e6e73;letter-spacing:-.006em}
.cc-card.hi .cc-list{color:#86868b}
.cc-list li{padding:5px 0 5px 20px;position:relative}
.cc-list li::before{content:"";position:absolute;left:2px;top:12px;width:6px;height:6px;border-radius:50%;background:currentColor;opacity:.5}

/* ---------- spec table ---------- */
.spec-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;margin-top:44px}
table.spec{width:100%;border-collapse:collapse;min-width:660px;font-size:15px;letter-spacing:-.008em}
table.spec th,table.spec td{padding:16px 14px;text-align:left;vertical-align:top;border-bottom:1px solid rgba(0,0,0,.09)}
table.spec thead th{font-size:19px;letter-spacing:-.016em;padding-bottom:8px;border-bottom:1px solid rgba(0,0,0,.16)}
table.spec thead th small{display:block;font-size:13px;font-weight:400;color:#6e6e73;margin-top:4px}
table.spec tbody th{font-weight:400;color:#6e6e73;width:180px}
table.spec td b{font-weight:600}

/* ---------- pricing ---------- */
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:44px}
@media(max-width:900px){.plans{grid-template-columns:1fr}}
.plan{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:20px;padding:32px 28px;display:flex;flex-direction:column}
.plan.featured{border-color:#ff7c09;box-shadow:0 0 0 1px #ff7c09}
.plan .tag{font-size:12px;font-weight:600;color:#ff7c09;letter-spacing:.01em;text-transform:uppercase;margin-bottom:10px;min-height:16px}
.plan h3{font-size:26px;letter-spacing:-.02em}
.plan .p{font-size:36px;letter-spacing:-.028em;font-weight:600;margin:16px 0 2px;line-height:1}
.plan ul{list-style:none;margin:22px 0 26px;padding:0;font-size:15px;color:#424245;letter-spacing:-.008em}
.plan ul li{padding:7px 0 7px 24px;position:relative}
.plan ul li::before{content:"";position:absolute;left:1px;top:13px;width:11px;height:6px;border-left:1.6px solid #ff7c09;border-bottom:1.6px solid #ff7c09;transform:rotate(-45deg)}
.plan .btn{margin-top:auto;text-align:center}

/* ---------- faq ---------- */
.faq{max-width:820px;margin:40px auto 0;border-top:1px solid rgba(0,0,0,.14)}
.faq details{border-bottom:1px solid rgba(0,0,0,.14)}
.faq summary{
  list-style:none;cursor:pointer;padding:22px 40px 22px 0;position:relative;
  font-size:19px;letter-spacing:-.014em;font-weight:400;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"";position:absolute;right:8px;top:31px;width:10px;height:10px;
  border-right:1.6px solid #6e6e73;border-bottom:1.6px solid #6e6e73;
  transform:rotate(45deg) translateY(-3px);transition:transform .25s ease;
}
.faq details[open] summary::after{transform:rotate(-135deg) translateY(-3px)}
.faq .a{padding:0 34px 26px 0;color:#6e6e73;font-size:16px;letter-spacing:-.008em;max-width:700px}
.faq .a p{margin:0 0 12px}
.faq .a p:last-child{margin:0}

/* ---------- cta ---------- */
.cta{padding:110px 0;text-align:center;background:#fbfbfd}

/* ---------- footer ---------- */
footer{background:#f5f5f7;color:#6e6e73;font-size:12px;line-height:1.6;padding:40px 0 26px}
.fnote{border-bottom:1px solid rgba(0,0,0,.12);padding-bottom:18px;margin-bottom:20px;max-width:920px}
.fnote p{margin:0 0 8px}
.fcols{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:26px;padding-bottom:22px;border-bottom:1px solid rgba(0,0,0,.12)}
.fcols h5{margin:0 0 9px;font-size:12px;color:#1d1d1f;font-weight:600}
.fcols ul{list-style:none;margin:0;padding:0}
.fcols li{margin-bottom:7px}
.fcols a{color:#424245;text-decoration:none}
.fcols a:hover{text-decoration:underline;color:#1d1d1f}
.fbot{display:flex;flex-wrap:wrap;gap:8px 22px;align-items:center;padding-top:18px}
.fbot .brand img{height:12px;opacity:.55}

/* ---------- reveal ---------- */
.rv{opacity:0;transform:translateY(26px);transition:opacity .8s cubic-bezier(.22,.61,.36,1),transform .8s cubic-bezier(.22,.61,.36,1)}
.rv.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  .rv{opacity:1;transform:none;transition:none}
  *{animation:none!important}
}
.led{animation:pulse 3.4s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.45}}
