:root{
  --page: #090b10;
  --surface: rgba(10,14,20,.88);
  --card: rgba(255,255,255,.045);
  --card-strong: rgba(255,255,255,.075);
  --text: rgba(255,255,255,.95);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);
  --line: rgba(255,255,255,.09);
  --line2: rgba(255,255,255,.17);
  --accent: #e24b31;
  --accent2: #f07a58;
  --accent-soft: rgba(226,75,49,.14);
  --gold: #ffd49b;
  --glow: rgba(226,75,49,.18);
  --shadow: 0 30px 70px rgba(0,0,0,.42);
  --radius: 16px;
  --radius2: 24px;
  --max: 1180px;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 520ms;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{min-height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(226,75,49,.20), transparent 56%),
    radial-gradient(900px 560px at 90% 10%, rgba(240,122,88,.12), transparent 58%),
    radial-gradient(860px 480px at 50% 100%, rgba(80,124,255,.08), transparent 62%),
    linear-gradient(180deg, #0a0c12 0%, #090b10 100%);
  line-height:1.65;
  position:relative;
  overflow-x:hidden;
}
body::before,
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}
body::before{
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(circle at center, rgba(0,0,0,.85), transparent 88%);
}
body::after{
  background:
    radial-gradient(500px 260px at 50% -10%, rgba(255,255,255,.08), transparent 70%);
  opacity:.8;
}

a{color:inherit; text-decoration:none}
button,input,textarea{font:inherit}
main{position:relative}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(16px);
  background:linear-gradient(180deg, rgba(7,9,13,.88), rgba(7,9,13,.76));
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 10px 28px rgba(0,0,0,.16);
}
.topbarInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--display);
  font-size:15px;
  font-weight:700;
  letter-spacing:.01em;
}
.brandMark{
  width:38px;
  height:38px;
  border-radius:13px;
  display:grid;
  place-items:center;
  font-weight:700;
  background:
    linear-gradient(135deg, rgba(226,75,49,1), rgba(240,122,88,.76)),
    rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 14px 28px rgba(226,75,49,.26);
}
nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
nav a{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
  transition:background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), border-color 160ms var(--ease);
  border:1px solid transparent;
}
nav a:hover,
nav a.is-current{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.08);
  color:var(--text);
  transform:translateY(-1px);
}
.navRight{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.langSwitch{
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:42px;
  padding:10px 15px;
  border-radius:13px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.035);
  color:var(--text);
  cursor:pointer;
  font-size:14px;
  font-weight:800;
  transition:transform 140ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}
.btn:hover{
  background:rgba(255,255,255,.075);
  border-color:rgba(255,255,255,.24);
  transform:translateY(-1px);
}
.btn:active{transform:translateY(0) scale(.99)}
.btn.primary{
  color:#fff;
  border-color:rgba(226,75,49,.44);
  background:linear-gradient(135deg, rgba(226,75,49,.96), rgba(240,122,88,.78));
  box-shadow:0 18px 32px rgba(226,75,49,.20);
}
.btn.primary:hover{
  border-color:rgba(226,75,49,.60);
  background:linear-gradient(135deg, rgba(240,122,88,.98), rgba(226,75,49,.82));
  box-shadow:0 22px 40px rgba(226,75,49,.24);
}
.btn.ghost{
  background:transparent;
  border-color:transparent;
  color:var(--muted);
}
.btn.ghost:hover{
  background:rgba(255,255,255,.05);
  color:var(--text);
}
.btn.small{
  min-height:0;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}
.btn.small.active{
  border-color:rgba(226,75,49,.36);
  background:rgba(226,75,49,.12);
  color:var(--text);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  color:var(--accent2);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
  opacity:.8;
}

.hero{padding:48px 0 20px}
.heroGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.pageHero{
  padding:36px 0 10px;
}
.pageHeroGrid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:18px;
  align-items:start;
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted2);
  font-size:13px;
  margin-bottom:14px;
}
.breadcrumb a:hover{color:var(--text)}

@media (max-width: 980px){
  .heroGrid,
  .pageHeroGrid,
  .splitGrid,
  .contactGrid{
    grid-template-columns:1fr;
  }
}

.card{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028)),
    linear-gradient(180deg, rgba(16,20,28,.92), rgba(10,12,18,.88));
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
}
.card::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(600px 240px at 10% 0%, rgba(226,75,49,.08), transparent 58%);
  pointer-events:none;
}
.cardInner{
  position:relative;
  z-index:1;
  padding:24px;
}
.card.sheen::before{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background:linear-gradient(120deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform:translateX(-25%) rotate(10deg);
  animation:sheen 8s var(--ease) infinite;
  pointer-events:none;
}
@keyframes sheen{
  0%{transform:translateX(-35%) rotate(10deg)}
  40%{transform:translateX(35%) rotate(10deg)}
  100%{transform:translateX(35%) rotate(10deg)}
}

h1,h2,h3{
  font-family:var(--display);
  font-weight:700;
}
h1{
  margin:14px 0 12px;
  font-size:clamp(34px, 4.1vw, 58px);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:11ch;
}
h2{
  margin:0 0 10px;
  font-size:clamp(26px, 2.4vw, 34px);
  line-height:1.08;
  letter-spacing:-.03em;
}
h3{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.2;
  letter-spacing:-.02em;
}
p{margin:0 0 12px; color:var(--muted)}
.lead{
  max-width:64ch;
  font-size:17px;
  color:rgba(255,255,255,.82);
}
.fine{font-size:13px; color:var(--muted2)}
.mono{font-family:var(--mono)}
.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.heroList{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.heroListItem{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.86);
  font-size:13px;
  font-weight:700;
}
.heroListItem::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 5px rgba(226,75,49,.12);
}
.hr{
  height:1px;
  margin:16px 0;
  background:linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.section{
  padding:26px 0 0;
}
.sectionBottom{padding-bottom:18px}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.heroAside,
.stack{
  display:grid;
  gap:12px;
}
.stat{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    rgba(11,14,20,.9);
  transition:transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.stat::before{
  content:"";
  position:absolute;
  inset:auto -10% -40% auto;
  width:150px;
  height:150px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(226,75,49,.16), transparent 65%);
  pointer-events:none;
}
.stat:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 18px 30px rgba(0,0,0,.18);
}
.statTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.statVal{
  margin-top:6px;
  font-family:var(--display);
  font-size:24px;
  font-weight:700;
  color:var(--text);
  letter-spacing:-.04em;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  white-space:nowrap;
}
.tag.hot{
  border-color:rgba(226,75,49,.28);
  background:rgba(226,75,49,.12);
  color:rgba(255,255,255,.95);
}

.grid4,
.grid3,
.grid2{
  display:grid;
  gap:14px;
}
.grid4{grid-template-columns:repeat(4, minmax(0, 1fr))}
.grid3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.grid2{grid-template-columns:repeat(2, minmax(0, 1fr))}
@media (max-width: 1080px){
  .grid4,
  .grid3{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 620px){
  .grid4,
  .grid3,
  .grid2{grid-template-columns:1fr}
}

.product,
.specCard,
.timelineCard,
.ctaPanel{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.024)),
    rgba(11,14,20,.92);
  transition:transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.product::before,
.specCard::before,
.timelineCard::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, rgba(226,75,49,.65), rgba(255,255,255,0));
  opacity:.8;
}
.product,
.specCard,
.timelineCard{padding:18px}
.product:hover,
.specCard:hover,
.timelineCard:hover,
.ctaPanel:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 18px 34px rgba(0,0,0,.22);
}
.productIcon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:12px;
  font-family:var(--display);
  font-size:15px;
  font-weight:700;
  color:var(--accent2);
  background:linear-gradient(135deg, rgba(226,75,49,.14), rgba(240,122,88,.07));
  border:1px solid rgba(226,75,49,.24);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.productActions,
.planActions,
.contactActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:6px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:999px;
}
.tab{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.tab:hover{
  background:rgba(255,255,255,.05);
  color:var(--text);
  transform:translateY(-1px);
}
.tab.active{
  background:rgba(226,75,49,.12);
  border-color:rgba(226,75,49,.25);
  color:var(--text);
  box-shadow:0 12px 24px rgba(0,0,0,.22);
}

.pricing{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:12px;
}
@media (max-width: 980px){
  .pricing{grid-template-columns:1fr}
}

.plan{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:295px;
  padding:18px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03)),
    rgba(11,14,20,.92);
  transition:transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.plan::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(226,75,49,.7), rgba(255,255,255,0));
}
.plan:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 20px 40px rgba(0,0,0,.24);
}
.planTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.planMeta{
  margin-top:8px;
  color:var(--muted2);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.10em;
}
.kv{
  display:grid;
  gap:8px;
  margin-top:4px;
}
.kvRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:8px;
  border-top:1px dashed rgba(255,255,255,.10);
  color:var(--muted);
  font-size:14px;
}
.kvRow:first-child{
  padding-top:0;
  border-top:none;
}
.kvRow strong{
  color:var(--text);
  font-weight:800;
  text-align:right;
}

.specGrid,
.splitGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:12px;
}
.serviceRail{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.serviceRail a{
  padding:10px 12px;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  transition:background 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}
.serviceRail a:hover,
.serviceRail a.is-current{
  background:rgba(226,75,49,.12);
  border-color:rgba(226,75,49,.25);
  color:var(--text);
  transform:translateY(-1px);
}

.sectionAnchor{
  scroll-margin-top:120px;
}

.legalPage{
  padding-top:12px;
}
.legalContainer{
  max-width:860px;
}
.legalHeader{
  margin-bottom:18px;
}
.legalPage h1{
  max-width:none;
}
.legalMeta{
  margin-top:12px;
  color:var(--muted2);
  font-size:13px;
}
.legalIntro{
  margin-bottom:14px;
}
.legalBlocks{
  display:grid;
  gap:14px;
}
.legalBlock p:last-child{
  margin-bottom:0;
}

.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}
.list li{margin:7px 0}
.callout{
  padding:15px;
  border:1px solid rgba(226,75,49,.28);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(226,75,49,.12), rgba(226,75,49,.07));
  color:rgba(255,255,255,.9);
}

.staffPeopleGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 760px){
  .staffPeopleGrid{grid-template-columns:1fr}
}
.staffPerson{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.024)),
    rgba(11,14,20,.92);
  transition:transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.staffPerson:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 18px 34px rgba(0,0,0,.22);
}
.staffPhoto{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(460px 220px at 20% 10%, rgba(226,75,49,.24), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    rgba(8,11,16,.96);
}
.staffPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.staffPhoto.is-placeholder{
  display:grid;
  place-items:center;
}
.staffPhoto.is-placeholder span{
  position:absolute;
  top:14px;
  left:14px;
  color:var(--muted2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.staffPhoto.is-placeholder strong{
  width:74px;
  height:74px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-family:var(--display);
  font-size:24px;
  color:var(--gold);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg, rgba(226,75,49,.18), rgba(240,122,88,.10));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.staffBody{
  padding:18px;
}
.staffRole{
  margin:-2px 0 10px;
  color:var(--accent2);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.staffTags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.staffMeta{
  display:grid;
  gap:8px;
  font-size:13px;
  color:var(--muted);
}
.staffMeta strong{
  color:var(--text);
}

.timeline{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:12px;
}
@media (max-width: 1080px){
  .timeline{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 620px){
  .timeline{grid-template-columns:1fr}
}
.timelineNumber{
  display:inline-grid;
  place-items:center;
  width:32px;
  height:32px;
  margin-bottom:12px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(226,75,49,.24), rgba(240,122,88,.16));
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  box-shadow:0 0 0 1px rgba(255,255,255,.06) inset;
}

.contactGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:12px;
}
label{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}
input,textarea{
  width:100%;
  padding:12px 13px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  transition:border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
input:focus,
textarea:focus{
  border-color:rgba(226,75,49,.50);
  box-shadow:0 0 0 4px rgba(226,75,49,.14);
  background:rgba(255,255,255,.045);
}
textarea{
  min-height:140px;
  resize:vertical;
}
.row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width: 620px){
  .row2{grid-template-columns:1fr}
}
.supportCard{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.028)),
    rgba(10,13,18,.82);
}
.supportHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.supportBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(240,122,88,.28);
  background:rgba(240,122,88,.10);
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.supportList{
  display:grid;
  gap:10px;
  margin:14px 0 0;
}
.supportRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-top:10px;
  border-top:1px dashed rgba(255,255,255,.10);
  font-size:14px;
  color:var(--muted);
}
.supportRow:first-child{
  padding-top:0;
  border-top:none;
}
.supportRow strong{
  color:var(--text);
  font-weight:800;
}

footer{
  margin-top:34px;
  padding:26px 0 42px;
  color:var(--muted2);
  font-size:13px;
}
.footerInner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footerLinks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footerLinks a{
  color:var(--muted2);
  transition:color 160ms var(--ease);
}
.footerLinks a:hover{color:var(--text)}

.reveal{
  opacity:0;
  transform:translateY(14px);
  filter:blur(2px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    filter var(--dur) var(--ease);
  will-change:opacity, transform, filter;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}
.stagger > *{transition-delay:0ms}
.stagger.in > *:nth-child(1){transition-delay:40ms}
.stagger.in > *:nth-child(2){transition-delay:90ms}
.stagger.in > *:nth-child(3){transition-delay:140ms}
.stagger.in > *:nth-child(4){transition-delay:190ms}
.stagger.in > *:nth-child(5){transition-delay:240ms}
.stagger.in > *:nth-child(6){transition-delay:290ms}

@media (max-width: 1100px){
  .topbarInner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 720px){
  h1{max-width:none}
  .cardInner{padding:20px}
  .product,
  .specCard,
  .timelineCard,
  .plan{padding:16px}
}
