:root{
  --bg:#05080d;
  --bg2:#08111b;
  --card:#0b1520;
  --card2:#0d1a27;
  --line:rgba(255,255,255,.08);
  --text:#f7f9fc;
  --muted:#94a2b0;
  --blue:#5b8cff;
  --blue2:#3267ef;
  --green:#7cff72;
  --green2:#3ee982;
  --max:1180px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 80% 0%,rgba(54,98,190,.18),transparent 34rem),
    radial-gradient(circle at 15% 22%,rgba(78,238,126,.07),transparent 30rem),
    linear-gradient(180deg,#05080d 0%,#071019 50%,#05080d 100%);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

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

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(calc(100% - 40px),var(--max));
  margin:auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,8,13,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav{
  height:76px;
  display:flex;
  align-items:center;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  width:190px;
  height:48px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  gap:27px;
  margin-left:auto;
  color:#b7c1ca;
  font-size:14px;
}

.nav-links a:hover{
  color:white;
}

.header-actions{
  display:flex;
  gap:10px;
}

/* BUTTONS */

.button{
  min-height:46px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:750;
  transition:.2s ease;
}

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

.button-primary{
  color:#071009;
  background:linear-gradient(135deg,var(--green),var(--green2));
  box-shadow:0 12px 34px rgba(62,233,130,.17);
}

.button-secondary{
  border-color:var(--line);
  background:rgba(255,255,255,.035);
  color:#eaf0f5;
}

/* HERO */

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

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:58px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:21px;
  color:var(--green);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.eyebrow:before{
  content:"";
  width:27px;
  height:1px;
  background:var(--green);
  box-shadow:0 0 10px var(--green);
}

h1,h2,h3,p{
  margin-top:0;
}

h1{
  margin-bottom:23px;
  font-size:clamp(50px,6vw,80px);
  line-height:.95;
  letter-spacing:-.055em;
}

.gradient-word{
  background:linear-gradient(90deg,#fff 0%,#b8d0ff 25%,var(--blue) 65%,#7894ff 100%);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-copy{
  max-width:600px;
  margin-bottom:28px;
  color:#b7c2ca;
  font-size:18px;
  line-height:1.68;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:17px;
}

.trial-note{
  color:#8897a4;
  font-size:13px;
}

.trial-note span:not(:last-child):after{
  content:" • ";
  margin:0 5px;
  color:#4f5e6a;
}

/* CAT */

.hero-visual{
  position:relative;
}

.hero-visual:before{
  content:"";
  position:absolute;
  inset:10%;
  border-radius:50%;
  background:radial-gradient(circle,rgba(77,120,255,.22),rgba(61,232,130,.07) 48%,transparent 70%);
  filter:blur(45px);
}

.mascot-card{
  position:relative;
  overflow:hidden;
  padding:10px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.015));
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.mascot-card img{
  width:100%;
  border-radius:22px;
}

.status-chip{
  position:absolute;
  right:27px;
  bottom:27px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  border:1px solid rgba(124,255,114,.22);
  background:rgba(3,12,9,.83);
  color:#e4ffe8;
  backdrop-filter:blur(10px);
  font-size:12px;
  font-weight:700;
}

.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 12px var(--green);
}

/* FEATURES */

.quick-features{
  padding:18px 0 80px;
}

.feature-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:21px;
  background:rgba(10,22,31,.8);
}

.feature-item{
  padding:23px;
  display:flex;
  gap:13px;
}

.feature-item + .feature-item{
  border-left:1px solid var(--line);
}

.feature-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(124,255,114,.16);
  background:rgba(124,255,114,.045);
  font-size:19px;
}

.feature-item strong{
  display:block;
  margin-bottom:4px;
  font-size:14px;
}

.feature-item span{
  color:var(--muted);
  font-size:12px;
}

/* SECTIONS */

.section{
  padding:85px 0;
}

.section-head{
  max-width:720px;
  margin:0 auto 43px;
  text-align:center;
}

.section-head .eyebrow{
  justify-content:center;
}

.section-head h2{
  margin-bottom:12px;
  font-size:clamp(34px,4vw,49px);
  line-height:1.07;
  letter-spacing:-.04em;
}

.section-head p{
  color:var(--muted);
  font-size:16px;
}

/* PRICING */

.pricing{
  background:linear-gradient(180deg,transparent,rgba(44,113,133,.045),transparent);
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

.price-card{
  position:relative;
  min-height:375px;
  padding:27px 24px 23px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(14,29,40,.95),rgba(7,16,23,.96));
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.price-card:hover{
  border-color:rgba(91,140,255,.35);
}

.price-card.highlight{
  border-color:rgba(124,255,114,.48);
  box-shadow:
    0 0 0 1px rgba(124,255,114,.06),
    0 25px 70px rgba(0,0,0,.30);
}

.badge{
  position:absolute;
  top:-12px;
  right:17px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--green);
  color:#07110a;
  font-size:10px;
  font-weight:850;
}

.period{
  color:#c9d2d9;
  font-size:17px;
  font-weight:750;
}

.price{
  margin:8px 0 2px;
  font-size:40px;
  font-weight:850;
  letter-spacing:-.04em;
}

.per-month{
  min-height:21px;
  margin-bottom:20px;
  color:#84939f;
  font-size:12px;
}

.price-features{
  padding:0;
  margin:0 0 24px;
  list-style:none;
}

.price-features li{
  position:relative;
  margin:10px 0;
  padding-left:22px;
  color:#c3cdd4;
  font-size:13px;
}

.price-features li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900;
}

.price-card .button{
  margin-top:auto;
}

.saving{
  margin-top:10px;
  color:var(--green);
  font-size:11px;
  text-align:center;
}

/* STEPS */

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

.step{
  padding:26px;
  border:1px solid var(--line);
  border-radius:19px;
  background:rgba(11,24,34,.62);
}

.step-number{
  width:40px;
  height:40px;
  margin-bottom:19px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),#74a2ff);
  box-shadow:0 8px 24px rgba(78,123,255,.18);
  color:white;
  font-weight:900;
}

.step h3{
  margin-bottom:7px;
  font-size:16px;
}

.step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

/* DEVICES */

.devices{
  padding-top:35px;
}

.device-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:11px;
}

.device{
  min-height:105px;
  display:grid;
  place-items:center;
  padding:14px 8px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.022);
}

.device-icon{
  display:block;
  margin-bottom:5px;
  color:var(--blue);
  font-size:27px;
}

.device span:last-child{
  font-size:11px;
  color:#c8d1d7;
}

/* FAQ */

.faq-grid{
  max-width:820px;
  margin:auto;
  display:grid;
  gap:10px;
}

details{
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(10,21,29,.7);
}

summary{
  cursor:pointer;
  font-weight:750;
}

details p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

/* CTA */

.cta{
  padding:25px 0 90px;
}

.cta-box{
  padding:44px 46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  border:1px solid rgba(91,140,255,.24);
  border-radius:27px;
  background:
    radial-gradient(circle at 85% 20%,rgba(91,140,255,.15),transparent 22rem),
    linear-gradient(135deg,rgba(14,31,44,.96),rgba(7,17,24,.97));
}

.cta-box h2{
  margin-bottom:7px;
  font-size:clamp(29px,4vw,42px);
  letter-spacing:-.04em;
}

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

/* FOOTER */

.site-footer{
  padding:30px 0 35px;
  border-top:1px solid var(--line);
}

.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

.footer-brand img{
  width:165px;
}

.footer-meta{
  margin-top:5px;
  color:#657480;
  font-size:11px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:#8e9ba5;
  font-size:12px;
}

/* TABLET */

@media(max-width:960px){

  .nav-links{
    display:none;
  }

  .header-actions{
    margin-left:auto;
  }

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

  .hero-visual{
    width:min(650px,100%);
    margin:auto;
  }

  .feature-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .feature-item:nth-child(3){
    border-left:0;
    border-top:1px solid var(--line);
  }

  .feature-item:nth-child(4){
    border-top:1px solid var(--line);
  }

  .price-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .steps{
    grid-template-columns:repeat(2,1fr);
  }

  .device-grid{
    grid-template-columns:repeat(4,1fr);
  }
}

/* MOBILE */

@media(max-width:620px){

  .container{
    width:min(calc(100% - 28px),var(--max));
  }

  .nav{
    height:66px;
  }

  .brand img{
    width:150px;
    height:40px;
  }

  .header-actions .button-secondary{
    display:none;
  }

  .header-actions .button-primary{
    min-height:39px;
    padding:0 12px;
    font-size:11px;
  }

  .hero{
    padding-top:44px;
  }

  h1{
    font-size:48px;
  }

  .hero-copy{
    font-size:16px;
  }

  .hero-actions{
    display:grid;
  }

  .hero-actions .button{
    width:100%;
  }

  .feature-strip,
  .price-grid,
  .steps{
    grid-template-columns:1fr;
  }

  .feature-item + .feature-item{
    border-left:0;
    border-top:1px solid var(--line);
  }

  .section{
    padding:62px 0;
  }

  .price-card{
    min-height:0;
  }

  .device-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-box{
    display:block;
    padding:31px 25px;
  }

  .cta-box .button{
    width:100%;
    margin-top:20px;
  }

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

/* ===== PRICING BUTTON ALIGNMENT ===== */

.price-card{
    padding-bottom:78px;
}

.price-card .button{
    position:absolute;
    left:24px;
    right:24px;
    bottom:42px;
    width:auto;
    margin:0;
}

.price-card .saving{
    position:absolute;
    left:20px;
    right:20px;
    bottom:15px;
    height:18px;
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.price-card .price{
    font-variant-numeric:tabular-nums;
}


/* ===== PAYMENT ===== */

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

.payment-card{
    min-height:180px;
    padding:26px 23px;
    border:1px solid var(--line);
    border-radius:20px;
    background:
        linear-gradient(180deg,rgba(14,29,40,.92),rgba(8,17,24,.92));
    transition:.2s ease;
}

.payment-card:hover{
    transform:translateY(-4px);
    border-color:rgba(91,140,255,.32);
}

.payment-icon{
    width:48px;
    height:48px;
    margin-bottom:18px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:rgba(91,140,255,.10);
    border:1px solid rgba(91,140,255,.22);
    font-size:24px;
}

.payment-card h3{
    margin-bottom:7px;
    font-size:17px;
}

.payment-card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
}

.payment-note{
    max-width:760px;
    margin:28px auto 0;
    padding:17px 20px;
    border:1px solid rgba(124,255,114,.16);
    border-radius:15px;
    background:rgba(124,255,114,.035);
    color:#aab7c0;
    text-align:center;
    font-size:13px;
}

.payment-note strong{
    color:#e8fff0;
}


/* ===== ABOUT ===== */

.about-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
}

.about-copy{
    padding-right:20px;
}

.about-copy h2{
    margin-bottom:20px;
    font-size:clamp(36px,4vw,52px);
    line-height:1.05;
    letter-spacing:-.045em;
}

.about-copy p{
    color:#aab6bf;
    font-size:16px;
    line-height:1.75;
}

.about-points{
    display:grid;
    gap:12px;
    margin-top:27px;
}

.about-point{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px 18px;
    border:1px solid var(--line);
    border-radius:15px;
    background:rgba(255,255,255,.025);
}

.about-check{
    width:26px;
    height:26px;
    flex:0 0 26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(124,255,114,.10);
    color:var(--green);
    font-weight:900;
}

.about-point strong{
    display:block;
    margin-bottom:3px;
    font-size:14px;
}

.about-point span{
    color:var(--muted);
    font-size:12px;
}

.about-card{
    padding:30px;
    border:1px solid rgba(91,140,255,.20);
    border-radius:25px;
    background:
        radial-gradient(circle at 70% 10%,rgba(91,140,255,.16),transparent 17rem),
        linear-gradient(145deg,rgba(13,29,42,.95),rgba(7,16,23,.95));
}

.about-card-title{
    margin-bottom:22px;
    font-size:19px;
    font-weight:800;
}

.about-stat{
    padding:17px 0;
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-top:1px solid var(--line);
}

.about-stat:first-of-type{
    border-top:0;
}

.about-stat span{
    color:var(--muted);
    font-size:13px;
}

.about-stat strong{
    font-size:14px;
    text-align:right;
}

.about-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-top:22px;
}

.about-actions .button{
    width:100%;
}


/* ===== SUPPORT ===== */

.support-link{
    color:#b7c6d1;
}

.support-link:hover{
    color:var(--green);
}


/* ===== RESPONSIVE ===== */

@media(max-width:960px){
    .payment-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

    .about-copy{
        padding-right:0;
    }
}

@media(max-width:620px){
    .payment-grid{
        grid-template-columns:1fr;
    }

    .about-actions{
        grid-template-columns:1fr;
    }

    .price-card{
        padding-bottom:78px;
    }

    .price-card .button{
        left:24px;
        right:24px;
    }
}

/* ===== HEADER V2 ===== */

.site-header{
    height:72px;
    background:rgba(5,9,14,.94);
    border-top:3px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.065);
    backdrop-filter:blur(20px);
}

.nav{
    height:69px;
    width:min(calc(100% - 44px),1240px);
    margin:0 auto;
    padding:0;
    display:grid;
    grid-template-columns:190px 1fr auto;
    align-items:center;
    gap:34px;
}

.brand{
    display:flex;
    align-items:center;
    min-width:0;
}

.brand img{
    width:168px;
    height:44px;
    object-fit:contain;
    object-position:left center;
}

.nav-links{
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    white-space:nowrap;
    color:#aeb9c4;
    font-size:13px;
    font-weight:520;
}

.nav-links a{
    position:relative;
    padding:26px 0 24px;
    transition:color .18s ease;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:50%;
    right:50%;
    bottom:17px;
    height:2px;
    border-radius:4px;
    background:linear-gradient(90deg,#5b8cff,#7cff72);
    transition:.18s ease;
}

.nav-links a:hover{
    color:#fff;
}

.nav-links a:hover::after{
    left:0;
    right:0;
}

.header-actions{
    margin:0;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.header-actions .button{
    min-height:42px;
    height:42px;
    border-radius:11px;
    padding:0 18px;
    font-size:13px;
    font-weight:720;
    white-space:nowrap;
}

.header-actions .button-secondary{
    min-width:90px;
    background:rgba(255,255,255,.035);
    border-color:rgba(255,255,255,.10);
    color:#e3e8ed;
}

.header-actions .button-secondary:hover{
    background:rgba(255,255,255,.07);
    border-color:rgba(255,255,255,.16);
}

.header-actions .button-primary{
    min-width:178px;
    color:#061009;
    background:linear-gradient(135deg,#82ff79,#43e983);
    box-shadow:0 8px 24px rgba(67,233,131,.14);
}

.header-actions .button-primary:hover{
    box-shadow:0 10px 30px rgba(67,233,131,.22);
}

/* tablet */

@media(max-width:1100px){

    .nav{
        grid-template-columns:170px 1fr auto;
        gap:20px;
    }

    .brand img{
        width:155px;
    }

    .nav-links{
        gap:20px;
        font-size:12px;
    }

    .header-actions .button-primary{
        min-width:155px;
    }
}

/* mobile */

@media(max-width:960px){

    .nav{
        display:flex;
        width:min(calc(100% - 28px),1240px);
    }

    .brand{
        flex:1;
    }

    .nav-links{
        display:none;
    }

    .header-actions .button-secondary{
        display:none;
    }
}

@media(max-width:620px){

    .site-header{
        height:64px;
    }

    .nav{
        height:61px;
    }

    .brand img{
        width:145px;
        height:38px;
    }

    .header-actions .button-primary{
        min-width:auto;
        height:38px;
        min-height:38px;
        padding:0 13px;
        font-size:11px;
    }
}

/* ===== HEADER V3 — BIGGER NAVIGATION ===== */

.site-header{
    height:82px;
}

.nav{
    height:79px;
    width:min(calc(100% - 44px),1320px);
    grid-template-columns:190px 1fr auto;
    gap:38px;
}

.brand img{
    width:180px;
    height:48px;
}

.nav-links{
    gap:34px;
    font-size:15px;
    font-weight:650;
    letter-spacing:-.01em;
}

.nav-links a{
    padding:29px 0 27px;
}

.nav-links a::after{
    bottom:18px;
}

.header-actions .button{
    height:46px;
    min-height:46px;
    padding:0 20px;
    font-size:14px;
}

.header-actions .button-secondary{
    min-width:96px;
}

.header-actions .button-primary{
    min-width:190px;
}

@media(max-width:1180px){
    .nav{
        gap:24px;
    }

    .nav-links{
        gap:22px;
        font-size:14px;
    }
}

@media(max-width:960px){
    .site-header{
        height:68px;
    }

    .nav{
        height:65px;
    }

    .nav-links{
        display:none;
    }
}
