:root{
  --bg:#0b0b0c;
  --text:#f2f2f4;
  --muted:#b7b7be;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:15px;
  --max: 1080px;
  --pad: 24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,11,12,.58);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}
.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 18px;
}
.nav{ display:flex; gap: 18px; }
.nav__link{
  font-size: 13px;
  color: var(--muted);
}
.nav__link:hover{ color: var(--text); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: #ffffff;
  color: #0b0b0c;
}
.btn--primary:hover{ background: rgba(255,255,255,.92); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
.btn--full{ width:100%; border-radius: 16px; padding: 12px 14px; }

/* Language switch (dropdown) */
.langSwitch{
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}

.langSwitch__current{
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: inherit;
  border-radius: 999px;
  padding: 13px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  user-select: none;
}

.langSwitch__current:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.langSwitch__current:active{ transform: translateY(1px); }

.langSwitch__current:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
}

.langSwitch__flag{
  font-size: 13px;
  line-height: 1;
}

.langSwitch__caret{
  font-size: 12px;
  line-height: 1;
  opacity: .75;
}

.langSwitch__menu{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 170px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(16,16,18,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  display: none;
  z-index: 60;
}

.langSwitch.is-open .langSwitch__menu{ display: block; }

.langSwitch__option{
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.86);
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
}

.langSwitch__option:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.10);
}

.langSwitch__option:active{ transform: translateY(1px); }

.langSwitch__option.is-active{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #ffffff;
}

/* Hero */
.hero{
  position: relative;
  padding: 30px 0 54px;
  overflow:hidden;
}
.hero__inner{
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__inner--center{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero__stage{
  width: 100%;
  display:flex;
  justify-content:center;
}

.heroShots--center{
  width: min(1080px, 100%);
  perspective: 1100px;
  transform-style: preserve-3d;
  position: relative;
}

.heroShot{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.heroShot--backCenter{
  position: relative;
  z-index: 2;
  width: min(725px, 100%);
  opacity: .95;
  filter: saturate(.98) contrast(1.02);
}

.heroShot--mainCenter{
  position: absolute;
  z-index: 3;
  width: min(550px, 92%);
  right: 0px;
  top: 180px;
  opacity: .98;
  box-shadow:
    0 40px 90px rgba(0,0,0,.55),
    0 14px 30px rgba(0,0,0,.35);
}

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

.hero__bottom{
  width: 100%;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 24px;
  margin-top: 60px;
}

.hero__brand{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 32px;
  margin-bottom: 5px;
}

.hero__title{
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}

.hero__title--bottom{
  font-size: clamp(44px, 5.2vw, 72px);
  letter-spacing: -0.9px;
  margin: 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e8ebff 35%,
    #b6c7ff 65%,
    #9fb4ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__titleLine{
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e8ebff 35%,
    #b6c7ff 65%,
    #9fb4ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__ctaBtn{
  padding: 14px 22px;
  font-size: 15px;
  background: #ffffff;
  color: #0b0b0b;
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0,0,0,.25),
    0 2px 6px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero__ctaBtn:hover{
  background: #ffffff;
  box-shadow:
    0 14px 32px rgba(0,0,0,.32),
    0 4px 10px rgba(0,0,0,.22);
  transform: translateY(-1px);
}

.hero__note{
  color: var(--muted);
  font-size: 12px;
}

.hero__note--bottom{
  width: 100%;
  margin-top: 10px;
  text-align:left;
  color: rgba(255,255,255,.55);
}

.hero__bg{
  position:absolute;
  inset: -280px -320px auto -320px;
  height: 740px;
  background: radial-gradient(
    closest-side,
    rgba(120,180,255,.38),
    rgba(120,120,255,.22),
    rgba(0,0,0,0)
  );
  transform: translateY(60px);
  opacity: .95;
  z-index:1;
}

/* Responsive */
@media (max-width: 920px){
  .hero{ padding: 78px 0 48px; }
  .hero__bottom{ flex-direction:column; align-items:flex-start; }
  .heroShot--mainCenter{ right: -10px; top: 90px; width: min(640px, 94%); }
  .hero__note--bottom{ text-align:left; }
}

@media (max-width: 520px){
  .hero{ padding: 64px 0 40px; }

  .heroShots--center{
    width: 100%;
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }

  .heroShot--backCenter{
    width: 86%;
    margin-right: auto;
  }

  .heroShot--mainCenter{
    position: relative;
    top: auto;
    right: auto;
    width: 74%;
    margin-left: auto;
    margin-top: -24px;
  }

  .hero__bottom{ margin-top: 26px; }

  .hero__brand{ font-size: 26px; }

  .hero__ctaBtn{
    width: 100%;
    justify-content: center;
  }
}

/* Ask examples (marquee) */
.ask{
  padding: 8px 0 34px;
}

.ask__hd{
  margin-top: 12px;
  margin-bottom: 16px;
}

.ask__title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.ask__lead{
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 13px;
}

.ask__lanes{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.askLane{
  position: relative;
  overflow:hidden;
  width: 100%;
  padding: 2px 0;
}

.askLane::before,
.askLane::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: 110px;
  z-index: 2;
  pointer-events:none;
}

.askLane::before{
  left:0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(11,11,12,0) 100%);
}

.askLane::after{
  right:0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(11,11,12,0) 100%);
}

.askTrack{
  display:flex;
  gap: 12px;
  width: max-content;
  animation: askScroll var(--askDur, 42s) linear infinite;
  will-change: transform;
}

.askLane--a{ --askDur: 250s; }
.askLane--b{ --askDur: 250s; }
.askLane--b .askTrack{ animation-direction: reverse; opacity: .92; }

.askLane:hover .askTrack{
  animation-play-state: paused;
}

.ask.is-paused .askTrack{
  animation-play-state: paused;
}

.askCard{
  flex: 0 0 auto;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

.askCard:hover{
  background: rgba(255,255,255,.085);
  border-color: rgba(255,255,255,.14);
}

@keyframes askScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .askTrack{ animation: none; }
}

/* Sections */
.section{ padding: 64px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__hd{ margin-bottom: 28px; }

.billingToggle{
  margin: 22px auto 0;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
}

.billingToggle__yearlyWrap{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.section__hd--center{
  text-align: center;
}

.pricing__note{
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.billingToggle__btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 7px 35px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  background: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.billingToggle__btn:hover{
  color: rgba(255,255,255,.88);
}

.billingToggle__btn.is-active{
  background: rgba(255,255,255,.14);
  color: #ffffff;
}

.billingToggle__badge{
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b0b0c;
  white-space: nowrap;
  box-shadow:
    0 8px 20px rgba(0,0,0,.35),
    0 1px 0 rgba(255,255,255,.9) inset;
  pointer-events: none;
}

.section__title{
  font-size: 28px;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}
.section__lead{ margin: 0; color: var(--muted); }

/* Showcase (LANDR-style full panels) */
.showcase{
  padding: 0px 0 0;
}

.showcase__hd{
  text-align: center;
  margin-bottom: 26px;
}

.showcase__title{
  font-size: 25px;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}

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

.mode{
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.mode__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.mode--reverse .mode__inner{
  flex-direction: row-reverse;
}

.mode__text{
  flex: 0 0 44%;
  min-width: 320px;
}

.mode__kicker{
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 10px;
}

.mode__headline{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.7px;
  padding-bottom: 0.08em;
}

.mode__desc{
  margin: 0;
  max-width: 46ch;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.55;
}

.mode__visual{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.mode__frame{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 26px 90px rgba(0,0,0,.55);
}

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

.mode__glow{
  position: absolute;
  inset: -100px -110px;
  background: radial-gradient(closest-side, var(--modeGlow, rgba(140,170,255,.34)), rgba(0,0,0,0));
  filter: blur(10px);
  opacity: var(--modeGlowOpacity, .9);
  pointer-events: none;
}

.mode--sample{
  --modeGlow: rgba(120,175,255,.52);
  --modeGlowOpacity: .82;
  --headlineA: #ffffff;
  --headlineB: rgba(120,175,255,.85);
}

.mode--analyze{
  --modeGlow: rgba(90,240,200,.44);
  --modeGlowOpacity: .82;
  --headlineA: #ffffff;
  --headlineB: rgba(90,240,200,.78);
}

.mode--chord{
  --modeGlow: rgba(255,120,210,.40);
  --modeGlowOpacity: .82;
  --headlineA: #ffffff;
  --headlineB: rgba(255,120,210,.78);
}

.mode--qa{
  --modeGlow: rgba(255,215,95,.36);
  --modeGlowOpacity: .82;
  --headlineA: #ffffff;
  --headlineB: rgba(255,215,95,.80);
}

.mode--auto{
  --modeGlow: rgba(255,255,255,.26);
  --modeGlowOpacity: .9;
  --headlineA: #ffffff;
  --headlineB: rgba(210,220,235,.88);
}

/* Samples page (proof) */
.samplesProof{
  padding: 50px 0 100px;
  overflow: hidden;
  --headlineA: #ffffff;
  --headlineB: rgba(255,255,255,.78);  
}

.samplesProof__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 38px;
}

.samplesProof__text{
  flex: 0 0 44%;
  min-width: 320px;
}

.samplesProof--center .samplesProof__hd{
  text-align: center;
  margin: 0 auto 18px;
  max-width: 760px;
}

.samplesProof--center .samplesProof__lead{
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.samplesProof__title{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.7px;
  padding-bottom: 0.08em;
}

.mode__headline,
.samplesProof__title{
  background: linear-gradient(180deg, var(--headlineA, #ffffff) 0%, var(--headlineB, #ffffff) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.samplesProof__lead{
  margin: 26px auto 26px;
  max-width: 62ch;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.55;
}

.samplesProof__visual{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.samplesProof__frame{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 26px 90px rgba(0,0,0,.55);
}

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

.samplesProof__glow{
  position: absolute;
  inset: -110px -130px;
  background: radial-gradient(closest-side, rgba(255,255,255,.35), rgba(0,0,0,0));
  filter: blur(14px);
  opacity: .95;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 920px){
  .mode{ padding: 64px 0; }
  .mode__inner{ flex-direction: column; align-items: flex-start; }
  .mode--reverse .mode__inner{ flex-direction: column; }
  .mode__text{ flex: 0 0 auto; min-width: 0; }
  .samplesProof{ padding: 64px 0; }

  .samplesProof__glow{
    inset: -50px -60px;
    filter: blur(10px);
  }
  .mode__glow{
    inset: -50px -60px;
    filter: blur(10px);    
  }  
}

/* Feature blocks */
.feature{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type{ border-top: 0; padding-top: 0; }
.kicker{
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.feature__title{
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.feature__desc{ margin: 0; color: var(--muted); }

/* Screenshot card */
.shot{
  margin: 0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.shot__img{ width: 100%; height: auto; }

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan{
  position: relative;
  border-radius: var(--radius);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.plan--featured{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border-color: rgba(255,255,255,.16);
}
.plan__badge{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
}
.plan__name{ font-weight:700; font-size: 16px; }
.plan__price{
  margin-top: 8px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.plan__per{ font-size: 12px; font-weight: 700; color: var(--muted); margin-left: 6px; }
.plan__amount{ font-weight: 800; }

.plan__original{
  display: none;
  margin-right: 6px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.38);
  text-decoration: line-through;
}

[data-billing="yearly"] .plan__original{
  display: inline-block;
}

.plan__list{
  margin: 12px 0 16px;
  padding-left: 18px;
  color: var(--muted);
}
.plan__list li{ margin: 6px 0; }
.btn--full{
  width:100%;
}

.plan .btn--full{
  margin-top: 14px;
}

.plan__usage{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.plan__usageTitle{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}

.plan__usageLine{
  font-size: 13px;
  color: rgba(255,255,255,.60);
  line-height: 1.5;
  margin: 2px 0;
}

.usage-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  margin-left: 6px;
}

.plan__list--checks{
  list-style: none;
  padding-left: 0;
  margin: 12px 0 16px;
}

.plan__list--checks li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
}

.plan__list--checks i{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

/* Waitlist CTA */
.ctaCard{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
  align-items: center;
}

.ctaCard__title{
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.3px;
}
.ctaCard__lead{ margin: 0 0 12px; color: var(--muted); }
.ctaCard__perks{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.ctaCard__perks li{ margin: 6px 0; }

/* Form */
.form__label{ font-size: 12px; color: var(--muted); }
.form__row{ display:flex; gap: 10px; margin-top: 8px; }
.form__input{
  flex:1;
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  outline: none;
}
.form__input::placeholder{ color: rgba(255,255,255,.35); }
.form__input:focus{
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}
.form__note{ margin-top: 10px; font-size: 12px; color: var(--muted); }

.form.is-submitted .form__label{
  display: none;
}

.form.is-submitted .form__row{
  display: none;
}

.form.is-submitted .form__note{
  margin-top: 0;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

/* Footer */
.footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
}
.footer__inner{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer__brand{ font-weight: 700; }
.footer__meta{ color: var(--muted); font-size: 12px; text-align: right; }

.footer__links{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}

.footer__link{
  margin-left: 0;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  padding: 2px 2px;
}

.footer__link:hover{
  color: rgba(255,255,255,.88);
}

.footer__link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
  border-radius: 8px;
}

.footer__link::before{
  content: "";
  margin-right: 0;
}

@media (max-width: 920px){
  .footer__inner{
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer__links{
    position: static;
    transform: none;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .footer__meta{
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ justify-content:flex-start; }
  .feature{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .ctaCard{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hero__title{ font-size: 40px; }
}

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

/* Image Zoom */
.heroShot__img,
.mode__img,
.samplesProof__img{
  cursor: zoom-in;
}

body.is-imgModalOpen{
  overflow: hidden;
}

.imgModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.imgModal.is-open{
  display: flex;
}

.imgModal__img{
  max-width: min(1100px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
}

.imgModal__close{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.imgModal__close:hover{
  background: rgba(0,0,0,.55);
}

/* Definition (minimal text section) */
.definition{
  padding: 100px 0 90px;
}

.definition__inner{
  text-align: center;
  max-width: 820px;
}

.definition__problem{
  margin: 0 0 18px;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255,255,255,.85) 55%,
    rgba(255,255,255,.65) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.definition__solution{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}

.usage-title {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* FAQ */
.faq{
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqItem{
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
  overflow: hidden;
}

.faqItem__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faqItem__q::-webkit-details-marker{
  display: none;
}

.faqItem__q::after{
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  transition: transform .18s ease;
}

.faqItem[open] .faqItem__q::after{
  transform: rotate(45deg);
}

.faqItem__a{
  padding: 0 16px 16px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.6;
}

.faqItem__a strong{
  color: rgba(255,255,255,.86);
}

.faq--static .faqItem__q{
  cursor: default;
}

.faq--static .faqItem__q::after{
  display: none;
  content: "";
}