:root {
  color-scheme: dark;
  --black: #0d1014;
  --black2: #15171d;
  --ink: #f7f4ef;
  --muted: #a9adba;
  --orange: #f47a35;
  --orange2: #ffae58;
  --gold: #e8bd78;
  --panel: #191c22;
  --panel2: #f7f1e8;
  --darkText: #17191d;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 64px);
  background: rgba(13, 16, 20, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav nav a {
  color: rgba(247, 244, 239, 0.72);
}

.navButton {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: var(--orange);
  box-shadow: 0 12px 34px rgba(244, 122, 53, 0.32);
  color: #fff;
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 70px 20px 92px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(244, 122, 53, 0.2), transparent 22%),
    radial-gradient(circle at 28% 60%, rgba(255, 174, 88, 0.1), transparent 28%),
    linear-gradient(180deg, #15171d 0%, #0d1014 54%, #191612 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -12% -10%;
  height: 38%;
  background: linear-gradient(90deg, rgba(111, 64, 31, 0.92), rgba(244, 122, 53, 0.64), rgba(232, 189, 120, 0.46));
  clip-path: polygon(0 58%, 15% 48%, 35% 43%, 55% 47%, 72% 38%, 100% 12%, 100% 100%, 0 100%);
  filter: blur(1px);
  opacity: 0.82;
}

.wave {
  position: absolute;
  inset: auto -8% -8% -8%;
  height: 34%;
  pointer-events: none;
}

.waveWide {
  position: absolute;
  inset: 22% 0 0;
  background: rgba(244, 122, 53, 0.2);
  clip-path: polygon(0 58%, 20% 44%, 42% 40%, 62% 47%, 78% 42%, 100% 19%, 100% 100%, 0 100%);
}

.waveLine {
  position: absolute;
  left: -4%;
  right: -4%;
  top: 44%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange2), var(--gold));
  transform: rotate(-5deg);
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(244, 122, 53, 0.55);
}

.sparks span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px var(--orange2);
  opacity: 0.8;
}

.sparks span:nth-child(1) { left: 8%; top: 32%; }
.sparks span:nth-child(2) { left: 24%; top: 74%; }
.sparks span:nth-child(3) { right: 18%; top: 40%; }
.sparks span:nth-child(4) { right: 30%; bottom: 16%; }
.sparks span:nth-child(5) { left: 45%; top: 30%; }

.heroIcon {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  filter: drop-shadow(0 0 34px rgba(244, 122, 53, 0.46));
}

.audience {
  position: relative;
  z-index: 2;
  margin: 0 0 26px;
  color: var(--gold);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 950;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0;
  font-size: clamp(62px, 9.8vw, 150px);
  line-height: 0.86;
  font-weight: 950;
}

h1 span {
  color: var(--orange2);
}

.subhead {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(247, 244, 239, 0.82);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.heroActions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  padding: 0 28px;
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 18px 44px rgba(244, 122, 53, 0.35);
}

.button.secondary {
  border: 1px solid rgba(247, 244, 239, 0.18);
  background: rgba(247, 244, 239, 0.06);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.microTrust {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.microTrust span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  vertical-align: -2px;
}

.demo,
.modes,
.pricing,
.install,
.privacy {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.demoHead,
.sectionIntro {
  max-width: 780px;
  margin-bottom: 28px;
}

.sectionIntro.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
}

.browser {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f6efe4;
  color: var(--darkText);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.browserBar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(23, 25, 29, 0.14);
  background: #fff8ed;
  padding: 0 16px;
}

.browserBar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbc0af;
}

.browserBar p {
  margin-left: 10px;
  color: #777061;
  font-size: 12px;
  font-weight: 800;
}

.query {
  width: min(680px, calc(100% - 44px));
  min-height: 50px;
  display: flex;
  align-items: center;
  margin: 22px;
  border: 1px solid rgba(23, 25, 29, 0.14);
  border-radius: 999px;
  background: #fffaf3;
  color: #555046;
  font-weight: 850;
  padding: 0 18px;
}

.columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 0 22px 22px;
}

.before,
.after {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 370px;
  border-radius: 8px;
  padding: 16px;
}

.before {
  background: rgba(244, 122, 53, 0.12);
}

.after {
  background: rgba(26, 120, 77, 0.12);
}

.blocked,
.after article {
  border: 1px solid rgba(23, 25, 29, 0.12);
  border-radius: 8px;
  background: #fffaf3;
  padding: 14px;
}

.blocked {
  color: rgba(23, 25, 29, 0.46);
  font-weight: 950;
  text-decoration: line-through;
}

.after small {
  color: #1b7a4f;
  font-weight: 950;
}

.after h3 {
  margin: 4px 0 0;
  color: var(--darkText);
}

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

.modeGrid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 239, 0.06);
  padding: 24px;
}

.modeGrid span {
  color: var(--orange2);
  font-weight: 950;
}

.modeGrid p,
.sectionIntro p:not(.eyebrow),
.trustList p {
  color: rgba(247, 244, 239, 0.72);
  line-height: 1.55;
}

.plans {
  grid-template-columns: 1.08fr 0.92fr;
  max-width: 980px;
  margin: 0 auto;
}

.plan {
  border-radius: 12px;
  padding: 28px;
}

.plan.main {
  background: var(--panel2);
  color: var(--darkText);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.plan.deal {
  border: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.07);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(244, 122, 53, 0.14);
  color: #a2461d;
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
}

.tag.soft {
  color: var(--gold);
  background: rgba(232, 189, 120, 0.14);
}

.price {
  margin: 14px 0 0;
  font-size: 48px;
  font-weight: 950;
}

.price span {
  color: #777061;
  font-size: 15px;
}

.plan.deal .price span,
.plan.deal .trial,
.plan.deal li {
  color: rgba(247, 244, 239, 0.72);
}

.trial {
  margin: 4px 0 18px;
  color: #1b7a4f;
  font-weight: 950;
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
  line-height: 1.5;
}

.privacy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  border-top: 1px solid var(--line);
}

.install {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

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

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 30px 18px;
}

footer strong {
  color: var(--ink);
}

.legalPage {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.legalPage h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.legalPage p {
  color: rgba(247, 244, 239, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.checkoutPage {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 122, 53, 0.18), transparent 28%),
    linear-gradient(180deg, #15171d 0%, #0d1014 68%);
}

.checkoutBox {
  width: min(860px, 100%);
  text-align: center;
}

.checkoutBox h1 {
  font-size: clamp(54px, 9vw, 116px);
}

.checkoutBox p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(247, 244, 239, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

@media (max-width: 840px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 14px;
  }

  .nav nav {
    gap: 16px;
  }

  .hero {
    min-height: 820px;
  }

  .columns,
  .modeGrid,
  .plans,
  .privacy {
    grid-template-columns: 1fr;
  }
}
