:root{
  --container: 1840px;
  --radius: 8px;
  --radius2: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;

  --bg: #06101f;
  --bg2: #08172b;
  --text: #eef6ff;
  --muted: #9fb0ca;
  --muted2: #6f829e;
  --border: rgba(255,255,255,.11);
  --surface: rgba(255,255,255,.055);
  --surface2: rgba(255,255,255,.085);
  --surface3: rgba(255,255,255,.12);
  --menu-bg: #07111f;
  --shadow: 0 24px 80px rgba(0,0,0,.45);

  --brand: #5eead4;
  --brand2: #60a5fa;
  --brand3: #a78bfa;
  --danger: #fb7185;
  --ok: #22c55e;

  --input-bg: rgba(3,10,22,.6);
  --input-border: rgba(255,255,255,.16);
  --focus: rgba(94,234,212,.35);
}

body.light{
  --bg: #f6f9ff;
  --bg2: #ffffff;
  --text: #08111f;
  --muted: #526174;
  --muted2: #768397;
  --border: rgba(8,17,31,.12);
  --surface: rgba(255,255,255,.76);
  --surface2: rgba(255,255,255,.94);
  --surface3: #ffffff;
  --menu-bg: #ffffff;
  --shadow: 0 24px 70px rgba(8,17,31,.12);

  --input-bg: #ffffff;
  --input-border: rgba(8,17,31,.18);
  --focus: rgba(14,165,233,.28);
}

*{
  box-sizing: border-box;
}

[hidden]{
  display: none !important;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(94,234,212,.11), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.56;
  overflow-x: hidden;
}

a{
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea{
  font: inherit;
}

button{
  color: inherit;
}

.container{
  width: min(var(--container), calc(100% - clamp(32px, 5vw, 96px)));
  margin-inline: auto;
}

.muted{
  color: var(--muted);
}

.small{
  font-size: .9rem;
}

.w100{
  width: 100%;
}

section[id]{
  scroll-margin-top: 110px;
}

.skip{
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

.skip:focus{
  left: 8px;
}

.i{
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -4px;
}

.i--sm{
  width: 16px;
  height: 16px;
}

.announcement{
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(14px);
}

body.light .announcement{
  background: rgba(255,255,255,.8);
}

.announcement__inner{
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .94rem;
  text-align: center;
}

.announcement__inner > span:not(.badge){
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.announcement__inner a{
  color: var(--brand);
  font-weight: 900;
}

body.light .announcement__inner a{
  color: #0284c7;
}

.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(94,234,212,.35);
  background: rgba(94,234,212,.11);
  color: var(--text);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: 0;
}

.nav{
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--border);
  background: rgba(6,16,31,.65);
  backdrop-filter: blur(18px);
}

body.light .nav{
  background: rgba(255,255,255,.76);
}

.nav__inner{
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.brand__mark{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  color: #ffffff;
  background: #050505;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  font-size: 0;
  font-weight: 1000;
}

.brand__mark img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand__text{
  display: grid;
  min-width: 0;
  line-height: 1.08;
}

.brand__text b{
  color: var(--brand);
}

body.light .brand__text b{
  color: #0284c7;
}

.brand__text small{
  color: var(--muted);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav__links{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
}

.nav__links a{
  color: var(--muted);
  font-size: .94rem;
  font-weight: 850;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav__links a:hover{
  color: var(--text);
  background: var(--surface2);
}

.nav__links a.active{
  color: var(--text);
  background: var(--surface2);
}

.nav__actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__menu{
  display: none !important;
}

.iconbtn{
  width: 43px;
  height: 43px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.iconbtn:hover{
  background: var(--surface2);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 10px 15px;
  background: var(--surface);
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(94,234,212,.32);
}

.btn--primary{
  border-color: rgba(94,234,212,.32);
  color: #06101f;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 48px rgba(94,234,212,.18);
}

.btn--ghost{
  background: transparent;
  box-shadow: none;
}

.btn--glass{
  background: var(--surface2);
}

.btn--lg{
  padding: 13px 18px;
  border-radius: 17px;
}

.mobile{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 120;
  border-bottom: 1px solid var(--border);
  background: var(--menu-bg);
  box-shadow: var(--shadow);
}

.mobile__inner{
  padding: 14px 0 18px;
  background: var(--menu-bg);
}

.mobile__link{
  display: block;
  padding: 13px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 900;
}

.mobile__link:hover{
  color: var(--text);
  background: var(--surface2);
}

.mobile__actions{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.hero{
  position: relative;
  padding: 82px 0 52px;
  overflow: hidden;
}

.hero__grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 46px;
}

.eyebrow,
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.light .eyebrow,
body.light .kicker{
  color: #0284c7;
}

.pulse{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(94,234,212,.12);
}

.hero h1{
  margin: 16px 0 16px;
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span{
  display: block;
}

.lead{
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero__badges span{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 900;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.premiumHero{
  position: relative;
  overflow: hidden;
  padding: 86px 0 68px;
  background:
    linear-gradient(135deg, rgba(94,234,212,.22), rgba(96,165,250,.1) 42%, transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
  border-bottom: 1px solid var(--border);
}

.premiumHero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,17,31,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,17,31,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
  pointer-events: none;
}

.premiumHero__grid{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(36px, 4vw, 82px);
}

.premiumHero h1{
  margin: 16px 0 16px;
  max-width: 940px;
  font-size: clamp(3.35rem, 5.2vw, 5.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.premiumHero__visual{
  position: relative;
  perspective: 1300px;
}

.proofBand{
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.72);
}

.proofBand__grid{
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  align-items: stretch;
  padding-block: 18px;
}

.proofBand__grid div{
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface2);
  padding: 18px;
  display: grid;
  align-content: center;
}

.proofBand__grid b{
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.proofBand__grid span{
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

/* ===== Hero proof / stats cards ===== */

.hero__proof{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.hero__proof div{
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__proof b{
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
  font-size: 1.34rem;
  line-height: 1;
  font-weight: 1000;
  color: var(--text);
}

/* Important fix: number span should stay inline with %, /7, etc. */
.hero__proof b span{
  display: inline !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.hero__proof div > span{
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.25;
}

/* Mobile responsive */
@media (max-width: 760px){
  .hero__proof{
    grid-template-columns: 1fr;
  }

  .hero__proof div{
    min-height: auto;
  }
}
.hero__visual{
  position: relative;
}

.hero__visual--image{
  perspective: 1200px;
}

.heroImage{
  margin: 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface3);
  box-shadow: var(--shadow);
  transform: rotateY(-4deg) rotateX(2deg);
  animation: heroFloat 6s ease-in-out infinite;
}

.heroImage img{
  width: 100%;
  height: auto;
  display: block;
}

.heroImage figcaption{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(8,17,31,.78);
  color: #ffffff;
  backdrop-filter: blur(12px);
  font-size: .9rem;
  font-weight: 900;
}

.heroImage figcaption span{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(34,197,94,.16);
}

@keyframes heroFloat{
  0%, 100%{
    transform: rotateY(-4deg) rotateX(2deg) translateY(0);
  }
  50%{
    transform: rotateY(-2deg) rotateX(1deg) translateY(-10px);
  }
}

.screenMock{
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035)),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}

.screenMock__bar{
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dots{
  display: flex;
  gap: 7px;
}

.dots span{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.3);
}

.live{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 900;
}

.live span{
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.screenMock__body{
  min-height: 390px;
  display: grid;
  grid-template-columns: 130px 1fr;
}

.sideMock{
  padding: 18px;
  border-right: 1px solid var(--border);
  background: rgba(0,0,0,.08);
}

.sideMock__logo{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  overflow: hidden;
  color: #ffffff;
  background: #050505;
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 1000;
}

.sideMock__logo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sideMock b{
  display: block;
  margin-bottom: 14px;
}

.sideMock p{
  margin: 10px 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}

.dashMock{
  padding: 18px;
}

.dashMock__top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.dashMock__brand{
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.dashMock__brand img{
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  object-fit: cover;
}

.dashMock__top b{
  display: block;
  margin-top: 4px;
}

.chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface2);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 950;
}

.chip--green{
  color: var(--text);
  border-color: rgba(34,197,94,.3);
  background: rgba(34,197,94,.12);
}

.deviceCard{
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  gap: 14px;
}

.deviceCard__screen{
  width: 74px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94,234,212,.25);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(94,234,212,.3), transparent 42%),
    linear-gradient(135deg, rgba(96,165,250,.3), rgba(167,139,250,.18));
}

.deviceCard p{
  margin: 5px 0 0;
  font-size: .86rem;
}

.miniGrid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.metric{
  min-height: 100px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.metric span{
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.metric b{
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}

.timeline{
  margin-top: 18px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}

.timeline span{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand2), var(--brand3));
}

.floatingCard{
  position: absolute;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--surface3);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 3px;
  min-width: 170px;
}

.floatingCard svg{
  color: var(--brand);
}

.floatingCard b{
  font-size: .92rem;
}

.floatingCard span{
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.floatingCard--one{
  top: 38px;
  right: -24px;
}

.floatingCard--two{
  left: -26px;
  bottom: 34px;
}

.logoStrip{
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.035);
}

.logoStrip__inner{
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.logoStrip span{
  color: var(--muted);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .84rem;
}

.seoSec{
  background: rgba(255,255,255,.035);
  border-bottom: 1px solid var(--border);
}

body.light .seoSec{
  background: rgba(255,255,255,.64);
}

.solutionGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.solutionGrid article,
.premiumCta__inner,
.socialGrid{
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}

.solutionGrid article{
  min-height: 168px;
  padding: 20px;
  border-radius: var(--radius2);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.solutionGrid article:hover{
  transform: translateY(-4px);
  border-color: rgba(94,234,212,.3);
  background: var(--surface2);
}

.solutionGrid b{
  display: block;
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.solutionGrid span{
  color: var(--muted);
  font-size: .95rem;
}

.suiteGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.productSuite{
  padding-bottom: 58px;
}

.suiteCard{
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
  display: grid;
  align-content: start;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.suiteCard:hover{
  transform: translateY(-5px);
  border-color: rgba(94,234,212,.35);
  background: var(--surface2);
}

.suiteCard svg{
  width: 28px;
  height: 28px;
  color: var(--brand);
  margin-bottom: 18px;
}

.suiteCard h3{
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.suiteCard p{
  margin: 0 0 18px;
  color: var(--muted);
}

.suiteCard a{
  margin-top: auto;
  color: #0284c7;
  font-weight: 950;
}

.enterpriseFlow{
  border-block: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(94,234,212,.12), transparent 42%),
    rgba(255,255,255,.52);
}

.enterpriseFlow__grid{
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
  align-items: start;
}

.flowIntro{
  position: sticky;
  top: 112px;
}

.flowIntro h2{
  margin: 9px 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.04;
}

.flowIntro p{
  margin: 0 0 22px;
}

.flowCards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.flowCards div{
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface3);
  box-shadow: 0 16px 50px rgba(0,0,0,.1);
}

.flowCards b{
  display: block;
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.flowCards span{
  color: var(--muted);
}

.premiumCta{
  padding: 74px 0;
  background:
    linear-gradient(135deg, rgba(94,234,212,.13), transparent 42%),
    rgba(255,255,255,.025);
  border-bottom: 1px solid var(--border);
}

.premiumCta__inner{
  padding: 28px;
  border-radius: var(--radius2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.premiumCta h2,
.socialGrid h2{
  margin: 9px 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.04;
}

.premiumCta p,
.socialGrid p{
  margin: 0;
}

.premiumCta__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.socialSec{
  border-bottom: 1px solid var(--border);
}

.socialGrid{
  padding: 26px;
  border-radius: var(--radius2);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 24px;
}

.socialLinks{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.socialLinks a{
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface2);
  color: var(--text);
  font-weight: 950;
  transition: transform .2s ease, border-color .2s ease;
}

.socialLinks a:hover{
  transform: translateY(-3px);
  border-color: rgba(94,234,212,.35);
}

.installHero{
  padding: 78px 0 54px;
  border-bottom: 1px solid var(--border);
}

.installHero__grid{
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  align-items: center;
  gap: 34px;
}

.installHero h1{
  margin: 16px 0;
  max-width: 850px;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.installHero__panel,
.installNote,
.installHelp{
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}

.installHero__panel{
  padding: 24px;
  border-radius: var(--radius2);
  display: grid;
  gap: 18px;
}

.installHero__panel img{
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  object-fit: cover;
}

.installHero__panel span{
  display: block;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}

.installHero__panel b{
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.installSteps,
.tizenGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.installStep{
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}

.installStep span{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(94,234,212,.11);
  border: 1px solid rgba(94,234,212,.25);
  color: var(--brand);
  font-weight: 1000;
}

.installStep h3{
  margin: 18px 0 8px;
}

.installStep p{
  margin: 0;
  color: var(--muted);
}

.installNote{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.installNote svg{
  color: var(--brand);
  flex: 0 0 auto;
  margin-top: 3px;
}

.installNote b{
  display: block;
}

.installNote p{
  margin: 4px 0 0;
  color: var(--muted);
}

.installHelp{
  padding: 26px;
  border-radius: var(--radius2);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.installHelp h2{
  margin: 9px 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.04;
}

.installHelp p{
  margin: 0;
}

.checkList{
  display: grid;
  gap: 12px;
}

.checkList div{
  min-height: 56px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface2);
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.checkList svg{
  color: var(--brand);
  flex: 0 0 auto;
}

.section{
  padding: 86px 0;
}

.sectionHead{
  max-width: 760px;
  margin-bottom: 26px;
}

.sectionHead--wide{
  max-width: 1050px;
}

.sectionHead h2,
.splitText h2,
.faqIntro h2,
.contactSec h2{
  margin: 9px 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.sectionHead p,
.splitText p,
.faqIntro p,
.contactSec p{
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.featureGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.usecaseSec{
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.12)),
    radial-gradient(820px 360px at 12% 24%, rgba(94,234,212,.12), transparent 70%);
  border-bottom: 1px solid var(--border);
}

.usecaseGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.usecaseCard{
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    var(--surface);
  box-shadow: 0 18px 60px rgba(8,17,31,.09);
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

body:not(.light) .usecaseCard{
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.045)),
    var(--surface);
}

.usecaseCard::after{
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -72px;
  bottom: -80px;
  border-radius: 999px;
  background: rgba(94,234,212,.14);
}

.usecaseCard--large{
  grid-column: span 2;
  grid-row: span 2;
  min-height: 456px;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(8,17,31,.92), rgba(20,184,166,.58)),
    radial-gradient(440px 260px at 78% 20%, rgba(96,165,250,.38), transparent 70%);
  color: #fff;
}

.usecaseCard--large::after{
  width: 330px;
  height: 330px;
  right: -110px;
  top: -120px;
  bottom: auto;
  background: rgba(255,255,255,.13);
}

.usecaseCard__tag{
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(94,234,212,.28);
  border-radius: 999px;
  background: rgba(94,234,212,.12);
  color: #047d78;
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body:not(.light) .usecaseCard__tag,
.usecaseCard--large .usecaseCard__tag{
  color: var(--brand);
}

.usecaseCard h3{
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1.05;
}

.usecaseCard--large h3{
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  max-width: 620px;
}

.usecaseCard p{
  margin: 0;
  color: var(--muted);
}

.usecaseCard--large p{
  max-width: 620px;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
}

.usecaseMini{
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.usecaseMini span{
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  font-weight: 900;
  font-size: .88rem;
}

.capabilitySec{
  padding-top: 58px;
  padding-bottom: 74px;
  background:
    linear-gradient(135deg, rgba(94,234,212,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.06));
  border-block: 1px solid var(--border);
}

.capabilityIntro{
  max-width: 1120px;
  margin-bottom: 28px;
}

.capabilityIntro h2{
  margin: 9px 0 0;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.04;
}

.capabilityIntro p{
  margin: 12px 0 0;
  max-width: 930px;
}

.capabilityGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.capabilityCard{
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface2);
  box-shadow: 0 16px 48px rgba(8,17,31,.08);
  display: grid;
  align-content: start;
  gap: 10px;
}

.capabilityCard svg{
  width: 25px;
  height: 25px;
  color: #0284c7;
}

body:not(.light) .capabilityCard svg{
  color: var(--brand);
}

.capabilityCard b{
  font-size: 1.04rem;
  line-height: 1.2;
}

.capabilityCard span{
  color: var(--muted);
  font-size: .94rem;
}

.featureCard,
.step,
.plan,
.form,
.faq,
.platformPanel,
.contactCards a,
.contactCards div,
.industryGrid div{
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}

.featureCard{
  padding: 23px;
  border-radius: var(--radius2);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.featureCard:hover{
  transform: translateY(-4px);
  border-color: rgba(94,234,212,.28);
  background: var(--surface2);
}

.iconWrap{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  border: 1px solid rgba(94,234,212,.24);
  background: rgba(94,234,212,.1);
  color: var(--brand);
  margin-bottom: 14px;
}

.featureCard h3{
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.featureCard p{
  margin: 0;
  color: var(--muted);
}

.featureCard ul,
.plan ul{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 9px;
  color: var(--muted);
}

.featureCard li,
.plan li{
  position: relative;
  padding-left: 25px;
  font-weight: 750;
}

.featureCard li::before,
.plan li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background:
    linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(94,234,212,.08);
}

.section--split{
  border-block: 1px solid var(--border);
  background:
    radial-gradient(700px 320px at 20% 40%, rgba(94,234,212,.07), transparent 70%),
    rgba(255,255,255,.025);
}

.splitGrid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 34px;
}

.platformList{
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.platformList div{
  padding: 15px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.platformList b{
  display: block;
}

.platformList span{
  color: var(--muted);
  font-size: .94rem;
}

.platformPanel{
  position: relative;
  min-height: 440px;
  border-radius: 34px;
  padding: 24px;
  overflow: hidden;
}

.platformPanel::before{
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(360px 220px at 66% 24%, rgba(96,165,250,.15), transparent 70%),
    radial-gradient(360px 220px at 30% 70%, rgba(94,234,212,.12), transparent 70%);
  pointer-events: none;
}

.platformPanel__screen{
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 28% 28%, rgba(94,234,212,.25), transparent 38%),
    linear-gradient(135deg, rgba(96,165,250,.28), rgba(167,139,250,.18));
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
  color: var(--text);
  font-weight: 950;
}

.platformPanel__screen.landscape{
  width: 320px;
  height: 190px;
  border-radius: 24px;
  right: 54px;
  top: 54px;
}

.platformPanel__screen.portrait{
  width: 150px;
  height: 250px;
  border-radius: 28px;
  left: 58px;
  top: 118px;
}

.platformPanel__note{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 17px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface3);
  backdrop-filter: blur(14px);
}

.platformPanel__note b{
  display: block;
  margin-top: 6px;
}

.platformPanel__note p{
  margin: 4px 0 0;
}

.steps{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.step{
  position: relative;
  padding: 22px;
  min-height: 210px;
  border-radius: var(--radius2);
  overflow: hidden;
}

.step::after{
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  border-radius: 999px;
  background: rgba(94,234,212,.08);
}

.step span{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(94,234,212,.11);
  border: 1px solid rgba(94,234,212,.25);
  color: var(--brand);
  font-weight: 1000;
}

.step h3{
  margin: 22px 0 8px;
}

.step p{
  margin: 0;
  color: var(--muted);
}

.industries{
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.025);
}

.industryGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.industryGrid div{
  min-height: 160px;
  padding: 21px;
  border-radius: var(--radius2);
  display: grid;
  align-content: start;
  gap: 9px;
}

.industryGrid svg{
  color: var(--brand);
}

.industryGrid b{
  font-size: 1.03rem;
}

.industryGrid span{
  color: var(--muted);
  font-size: .94rem;
}

.billing{
  margin: 6px 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--muted);
  font-weight: 850;
}

.billing b{
  color: var(--brand);
}

.switch{
  width: 58px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  position: relative;
  cursor: pointer;
}

.switch span{
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 3px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  transition: transform .22s ease;
}

.switch.is-on span{
  transform: translateX(26px);
}

.pricingGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  align-items: stretch;
}

.plan{
  position: relative;
  padding: 25px;
  border-radius: var(--radius2);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan--featured{
  border-color: rgba(94,234,212,.35);
  background:
    linear-gradient(180deg, rgba(94,234,212,.11), rgba(255,255,255,.045)),
    var(--surface);
}

.plan__tag{
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(94,234,212,.35);
  background: rgba(94,234,212,.12);
  font-size: .76rem;
  font-weight: 950;
}

.plan h3{
  margin: 0 0 5px;
  font-size: 1.28rem;
}

.plan p{
  margin: 0;
}

.price{
  margin: 18px 0 12px;
  font-size: 2.15rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.price small{
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.price--custom{
  font-size: 2rem;
}

.plan ul{
  flex: 1;
  margin-bottom: 20px;
}

.faqSec{
  border-block: 1px solid var(--border);
  background:
    radial-gradient(760px 380px at 80% 20%, rgba(96,165,250,.08), transparent 70%),
    rgba(255,255,255,.02);
}

.faqGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.faqIntro{
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: none;
}

.faqIntro .btn{
  margin-top: 0;
}

.faq{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  border-radius: var(--radius2);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.faqItem{
  display: grid;
  align-content: start;
}

.faq__q{
  width: 100%;
  min-height: 64px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-weight: 950;
}

.faq__q[aria-expanded="true"]{
  border-radius: var(--radius2) var(--radius2) 0 0;
}

.faq__q:hover{
  background: var(--surface2);
  border-color: rgba(14,165,233,.28);
}

.faq__q span{
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--brand);
}

.faq__a{
  padding: 0 18px 18px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius2) var(--radius2);
  background: var(--surface2);
}

.contactGrid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contactCards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 24px;
}

.contactCards a,
.contactCards div{
  padding: 17px;
  border-radius: 22px;
  display: grid;
  gap: 7px;
}

.contactCards svg{
  color: var(--brand);
}

.contactCards b{
  display: block;
}

.contactCards span{
  color: var(--muted);
  word-break: break-word;
  font-size: .94rem;
}

.form{
  padding: 23px;
  border-radius: var(--radius2);
  display: grid;
  gap: 14px;
}

.form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label{
  display: grid;
  gap: 8px;
  font-weight: 950;
}

input,
textarea{
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 15px;
  background: var(--input-bg);
  color: var(--text);
  outline: none;
  padding: 12px 13px;
}

input{
  height: 46px;
}

textarea{
  min-height: 136px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder{
  color: rgba(159,176,202,.68);
}

body.light input::placeholder,
body.light textarea::placeholder{
  color: rgba(82,97,116,.65);
}

input:focus,
textarea:focus{
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(94,234,212,.11);
}

.form .small{
  margin: 0;
}

.footer{
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.12);
}

body.light .footer{
  background: rgba(255,255,255,.78);
}

.footer__grid{
  padding: 36px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
}

.footer p{
  max-width: 420px;
}

.footer__cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.footer__cols div{
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer__cols b{
  font-weight: 950;
}

.footer__cols a{
  color: var(--muted);
  font-weight: 800;
}

.footer__cols a:hover{
  color: var(--text);
}

.footer__bottom{
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topbtn{
  width: 45px;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 120;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,.3);
  background: var(--surface3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.toast span{
  color: var(--muted);
}

.reveal{
  opacity: 1;
  transform: none;
  transition: opacity .62s ease, transform .62s ease;
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1060px){
  .nav__links{
    display: none;
  }

  .nav__menu{
    display: grid !important;
  }

  .nav__login,
  .nav__signup{
    display: none;
  }

  .hero__grid,
  .premiumHero__grid,
  .enterpriseFlow__grid,
  .installHero__grid,
  .installHelp,
  .splitGrid,
  .contactGrid,
  .faqGrid,
  .footer__grid{
    grid-template-columns: 1fr;
  }

  .faqIntro{
    position: static;
  }

  .hero__visual{
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }

  .featureGrid,
  .suiteGrid,
  .capabilityGrid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .steps,
  .industryGrid,
  .usecaseGrid,
  .solutionGrid,
  .flowCards,
  .proofBand__grid,
  .installSteps,
  .tizenGrid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .premiumCta__inner,
  .socialGrid{
    grid-template-columns: 1fr;
  }

  .faqIntro{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .flowIntro{
    position: static;
  }

  .premiumCta__actions{
    justify-content: flex-start;
  }

  .pricingGrid{
    grid-template-columns: 1fr;
  }

  .plan--featured{
    order: -1;
  }
}

@media (max-width: 760px){
  .container{
    width: calc(100% - 28px);
  }

  .announcement__inner{
    display: grid;
    justify-content: stretch;
    text-align: left;
    padding: 10px 0;
  }

  .nav__inner{
    min-height: 68px;
    gap: 10px;
  }

  .nav__actions{
    gap: 8px;
  }

  .iconbtn{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand__mark{
    width: 40px;
    height: 40px;
    border-radius: 999px;
  }

  .brand__text{
    font-size: .93rem;
  }

  .hero{
    padding: 54px 0 38px;
  }

  .premiumHero{
    padding: 58px 0 42px;
  }

  .premiumHero h1{
    max-width: 100%;
    font-size: clamp(2.05rem, 8vw, 2.75rem);
    line-height: 1.03;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .installHero{
    padding: 52px 0 38px;
  }

  .installHero h1{
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .hero h1{
    max-width: 100%;
    font-size: clamp(2.25rem, 9.5vw, 3.2rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .hero__badges span{
    white-space: normal;
  }

  .hero__proof{
    grid-template-columns: 1fr;
  }

  .screenMock__body{
    grid-template-columns: 1fr;
  }

  .sideMock{
    display: none;
  }

  .miniGrid{
    grid-template-columns: 1fr;
  }

  .floatingCard{
    position: static;
    margin-top: 12px;
  }

  .logoStrip__inner{
    justify-content: flex-start;
  }

  .section{
    padding: 62px 0;
  }

  .featureGrid,
  .suiteGrid,
  .capabilityGrid,
  .faq,
  .steps,
  .industryGrid,
  .usecaseGrid,
  .solutionGrid,
  .flowCards,
  .proofBand__grid,
  .installSteps,
  .tizenGrid,
  .footer__cols,
  .contactCards,
  .form__row{
    grid-template-columns: 1fr;
  }

  .usecaseCard,
  .usecaseCard--large{
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .usecaseCard--large h3{
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .heroImage{
    transform: none;
    animation: none;
  }

  .heroImage figcaption{
    position: static;
    border-radius: 0;
  }

  .premiumCta{
    padding: 54px 0;
  }

  .socialLinks{
    grid-template-columns: 1fr 1fr;
  }

  .platformPanel{
    min-height: 390px;
  }

  .platformPanel__screen.landscape{
    width: 250px;
    height: 150px;
    right: 24px;
    top: 42px;
  }

  .platformPanel__screen.portrait{
    width: 122px;
    height: 205px;
    left: 24px;
    top: 112px;
  }

  .footer__bottom{
    align-items: flex-start;
  }

  .toast{
    width: calc(100% - 28px);
    justify-content: center;
  }
}

@media (max-width: 520px){
  .nav__inner{
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-right: 54px;
  }

  #themeBtn{
    display: none;
  }

  .nav__actions{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    justify-content: end;
  }

  .nav__menu{
    display: grid !important;
    background: #ffffff;
  }

  .brand{
    gap: 9px;
    overflow: hidden;
  }

  .brand__text{
    font-size: .86rem;
    max-width: 145px;
  }

  .brand__text small{
    display: block;
    font-size: .64rem;
  }

}

@media (max-width: 420px){
  .premiumHero h1{
    font-size: clamp(2rem, 7.8vw, 2.45rem);
  }

  .screenMock{
    border-radius: 24px;
  }

  .deviceCard{
    align-items: flex-start;
    flex-direction: column;
  }

  .platformPanel__screen.landscape{
    width: 215px;
    height: 130px;
  }

  .platformPanel__screen.portrait{
    width: 105px;
    height: 180px;
  }

  .billing{
    flex-wrap: wrap;
  }
}
/* ===== WhatsApp Support Widget ===== */

.wa-widget{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.wa-float{
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(18,140,126,.35);
}

.wa-float:hover{
  transform: translateY(-2px);
}

.wa-float__icon{
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.wa-float__pulse{
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 1.7s infinite;
}

@keyframes waPulse{
  0%{
    transform: scale(.88);
    opacity: .85;
  }
  100%{
    transform: scale(1.25);
    opacity: 0;
  }
}

.wa-box{
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(340px, calc(100vw - 32px));
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.wa-box__head{
  padding: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.wa-box__head b{
  display: block;
  font-size: 1.05rem;
}

.wa-box__head span{
  display: block;
  margin-top: 3px;
  font-size: .86rem;
  opacity: .92;
}

.wa-close{
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.wa-form{
  padding: 16px;
  display: grid;
  gap: 12px;
}

.wa-form label{
  display: grid;
  gap: 7px;
  font-weight: 900;
  color: var(--text);
}

.wa-form input{
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  outline: none;
}

.wa-form input:focus{
  border-color: rgba(37,211,102,.55);
  box-shadow: 0 0 0 4px rgba(37,211,102,.12);
}

.wa-submit{
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-weight: 950;
  cursor: pointer;
  margin-top: 2px;
}

.wa-submit:hover{
  transform: translateY(-1px);
}

.wa-note{
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

@media (max-width: 520px){
  .wa-widget{
    right: 14px;
    bottom: 14px;
  }

  .wa-float{
    width: 58px;
    height: 58px;
  }

  .wa-box{
    right: -2px;
    bottom: 74px;
  }
}
