:root {
  --bg: #030512;
  --bg-soft: #070923;
  --surface: rgba(10, 15, 43, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(12, 18, 50, 0.9);
  --text: rgba(255, 255, 255, 0.95);
  --soft: rgba(227, 236, 255, 0.76);
  --muted: rgba(209, 221, 255, 0.58);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(143, 232, 255, 0.32);
  --cyan: #8fe8ff;
  --blue: #7f9cff;
  --violet: #c9a7ff;
  --pink: #ff8fe8;
  --green: #9fffe0;
  --gold: #ffdca8;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #030512;
  background: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

.cosmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(106, 134, 255, 0.2), transparent 33%),
    radial-gradient(circle at 5% 52%, rgba(255, 117, 231, 0.11), transparent 25%),
    radial-gradient(circle at 98% 42%, rgba(90, 244, 255, 0.1), transparent 27%),
    linear-gradient(180deg, #030512 0%, #070923 36%, #080b25 66%, #030512 100%);
}

.cosmos::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.cosmos__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(143, 232, 255, 0.7) 0 1px, transparent 1.4px);
  background-position: 0 0, 40px 65px;
}

.cosmos__stars--one {
  opacity: 0.25;
  background-size: 114px 114px, 173px 173px;
}

.cosmos__stars--two {
  opacity: 0.13;
  background-size: 243px 243px, 311px 311px;
  transform: rotate(8deg) scale(1.1);
}

.cosmos__glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
}

.cosmos__glow--cyan {
  top: 20%;
  right: -26%;
  background: var(--cyan);
}

.cosmos__glow--violet {
  top: 48%;
  left: -30%;
  background: var(--violet);
}

.cosmos__glow--pink {
  bottom: -30%;
  left: 40%;
  background: var(--pink);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-color: var(--line);
  background: rgba(3, 5, 18, 0.76);
  backdrop-filter: blur(22px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(143, 232, 255, 0.25);
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.25), transparent 33%),
    linear-gradient(135deg, rgba(201, 167, 255, 0.36), rgba(143, 232, 255, 0.18));
  box-shadow: 0 0 28px rgba(143, 232, 255, 0.13);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 750;
}

.site-nav > a:not(.button) {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: white;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.button--small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 12px;
}

.button--primary {
  color: #071027;
  background: linear-gradient(135deg, #ffffff, #bff3ff 52%, #d8c4ff);
  box-shadow: 0 18px 54px rgba(111, 204, 255, 0.2), 0 0 34px rgba(143, 232, 255, 0.13);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 24px 70px rgba(111, 204, 255, 0.3), 0 0 44px rgba(143, 232, 255, 0.2);
}

.button--secondary,
.button--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(143, 232, 255, 0.08);
}

.hero {
  display: flex;
  min-height: 820px;
  align-items: center;
  padding-top: 150px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(224, 235, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan), 0 0 30px var(--violet);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: clamp(46px, 4.9vw, 68px);
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.hero h1 > span {
  display: block;
}

.hero h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #fff 0%, #d6c7ff 35%, #8fe8ff 68%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--soft);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-list {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  gap: 11px 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(159, 255, 224, 0.24);
  border-radius: 50%;
  color: var(--green);
  background: rgba(159, 255, 224, 0.08);
  font-size: 10px;
}

.hero__visual {
  position: relative;
  min-height: 500px;
}


.glass-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)),
    rgba(7, 10, 34, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.launch-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(490px, 100%);
  padding: 18px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.launch-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(143, 232, 255, 0.22), transparent 35%, transparent 65%, rgba(201, 167, 255, 0.2));
  filter: blur(14px);
}

.launch-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.launch-card__badge {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.browser-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #f6f8fd;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.browser-preview__bar {
  display: flex;
  height: 34px;
  align-items: center;
  padding: 0 12px;
  gap: 5px;
  background: #e9edf7;
}

.browser-preview__bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbc4d8;
}

.browser-preview__bar i:first-child {
  background: #ff8f9c;
}

.browser-preview__bar i:nth-child(2) {
  background: #ffd27e;
}

.browser-preview__bar i:nth-child(3) {
  background: #7ee0b5;
}

.browser-preview__bar span {
  min-width: 130px;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 99px;
  color: #7b8498;
  background: white;
  font-size: 7px;
}

.browser-preview__body {
  min-height: 285px;
  padding: 18px;
  color: #15203a;
  background:
    radial-gradient(circle at 80% 20%, rgba(119, 177, 255, 0.18), transparent 25%),
    linear-gradient(150deg, #ffffff, #f2f7ff);
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-logo {
  width: 44px;
  height: 9px;
  border-radius: 99px;
  background: #14203d;
}

.preview-lines {
  display: flex;
  gap: 8px;
}

.preview-lines i {
  width: 25px;
  height: 4px;
  border-radius: 99px;
  background: #bdc7d9;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 18px;
  padding: 34px 0 27px;
}

.preview-hero > div:first-child > * {
  display: block;
}

.preview-hero span {
  width: 54px;
  height: 5px;
  margin-bottom: 11px;
  border-radius: 99px;
  background: #56b0a0;
}

.preview-hero strong {
  width: 100%;
  height: 12px;
  margin-bottom: 7px;
  border-radius: 3px;
  background: #14203d;
}

.preview-hero strong.short {
  width: 74%;
}

.preview-hero small {
  width: 88%;
  height: 5px;
  margin: 13px 0 14px;
  border-radius: 99px;
  background: #c2cad8;
}

.preview-hero button {
  width: 62px;
  height: 20px;
  border: 0;
  border-radius: 99px;
  background: #2353d9;
}

.preview-image {
  position: relative;
  height: 135px;
  overflow: hidden;
  border-radius: 16px 16px 40px 16px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.9), transparent 12%),
    linear-gradient(145deg, #acd5ff, #6454c9 55%, #17244e);
}

.preview-image::after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: -33px;
  width: 130px;
  height: 110px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-16deg);
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-stats i {
  height: 32px;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.launch-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px 3px;
}

.launch-card__price > div {
  display: flex;
  flex-direction: column;
}

.launch-card__price span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-card__price strong {
  margin-top: 3px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.launch-card__price .launch-card__arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 18px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 29, 0.64);
  backdrop-filter: blur(16px);
}

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

.proof-strip__inner > div {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}

.proof-strip__inner > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.proof-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 630px;
}

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

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 17px;
}

.plans {
  background: linear-gradient(180deg, rgba(127, 156, 255, 0.04), transparent 18%, transparent 82%, rgba(201, 167, 255, 0.04));
}

.billing-switch-wrap {
  display: flex;
  margin: 42px 0 30px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.billing-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.billing-switch button {
  min-width: 128px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.billing-switch button.is-active {
  color: #071027;
  background: linear-gradient(135deg, #ffffff, #c4f3ff);
  box-shadow: 0 12px 30px rgba(111, 204, 255, 0.16);
}

.billing-switch-wrap > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 685px;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  border-color: rgba(143, 232, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 44px rgba(143, 232, 255, 0.07);
}

.price-card--featured {
  border-color: rgba(143, 232, 255, 0.34);
  background:
    radial-gradient(circle at 75% 7%, rgba(143, 232, 255, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 43, 0.78);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38), 0 0 70px rgba(143, 232, 255, 0.09);
}

.popular-pill {
  position: absolute;
  top: -13px;
  left: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(143, 232, 255, 0.36);
  border-radius: 999px;
  color: #071027;
  background: linear-gradient(135deg, #ffffff, #bff3ff);
  box-shadow: 0 10px 25px rgba(111, 204, 255, 0.18);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.plan-label {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plan-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 10px;
  font-weight: 900;
}

.price-card__intro {
  min-height: 77px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.price-block {
  min-height: 112px;
  margin: 22px 0;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-view {
  min-height: 68px;
}

.price-view[hidden] {
  display: none;
}

.price-view.is-entering {
  animation: priceIn 0.3s ease both;
}

.price-block__amount {
  display: inline-block;
  font-size: 45px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-block__amount sup {
  position: relative;
  top: -0.7em;
  margin-right: 2px;
  font-size: 17px;
  font-weight: 800;
}

.price-block__amount--words {
  font-size: 35px;
}

.price-block__term,
.price-block__from {
  margin-left: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-block__from {
  margin: 0 6px 0 0;
}

.price-view small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 12px;
  color: var(--soft);
  font-size: 12px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 8px;
}

.feature-list li span {
  display: grid;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid rgba(159, 255, 224, 0.24);
  border-radius: 50%;
  color: var(--green);
  background: rgba(159, 255, 224, 0.07);
  font-size: 9px;
}

.button--card {
  width: 100%;
  margin-top: auto;
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button--card:hover,
.button--card:focus-visible {
  border-color: var(--line-strong);
  background: rgba(143, 232, 255, 0.08);
}

.button--card-featured {
  border-color: transparent;
  color: #071027;
  background: linear-gradient(135deg, #ffffff, #bff3ff 55%, #d9c5ff);
  box-shadow: 0 16px 40px rgba(111, 204, 255, 0.18);
}

.price-card__fineprint {
  min-height: 33px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.pricing-disclaimer {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.included__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.included .section-heading,
.faq .section-heading {
  position: sticky;
  top: 128px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(143, 232, 255, 0.3);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 34, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 225px;
  padding: 34px;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 0.22s ease;
}

.benefit-card:nth-child(2n) {
  border-right: 0;
}

.benefit-card:nth-child(n + 3) {
  border-bottom: 0;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 66px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(201, 167, 255, 0));
}

.benefit-card:hover {
  background: rgba(143, 232, 255, 0.035);
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

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

.process {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 7, 24, 0.44);
}

.process-grid {
  display: grid;
  margin: 58px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  list-style: none;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-card:last-child {
  border-right: 0;
}

.process-card > span {
  display: inline-block;
  margin-bottom: 65px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.ownership-card {
  position: relative;
  display: grid;
  padding: clamp(34px, 6vw, 72px);
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 70px;
  overflow: hidden;
  border-color: rgba(143, 232, 255, 0.19);
  border-radius: 34px;
}

.ownership-card::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 20%;
  width: 500px;
  height: 320px;
  border-radius: 50%;
  background: rgba(143, 232, 255, 0.12);
  filter: blur(100px);
}

.ownership-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ownership-card__copy {
  position: relative;
  z-index: 1;
}

.ownership-card__copy p {
  margin-bottom: 25px;
  color: var(--soft);
  font-size: 15px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 50px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding-top: 50px;
}

.final-cta__card {
  position: relative;
  padding: clamp(46px, 8vw, 90px) 30px;
  overflow: hidden;
  border: 1px solid rgba(143, 232, 255, 0.21);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 232, 255, 0.16), transparent 39%),
    radial-gradient(circle at 17% 100%, rgba(255, 143, 232, 0.08), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 10, 34, 0.72);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.final-cta__glow {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 600px;
  height: 420px;
  border: 1px solid rgba(143, 232, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(143, 232, 255, 0.12), inset 0 0 80px rgba(201, 167, 255, 0.06);
  transform: translateX(-50%);
}

.final-cta__card h2 {
  position: relative;
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.final-cta__card p {
  position: relative;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: 16px;
}

.final-cta__actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 85% 18%, rgba(143, 232, 255, 0.08), transparent 28%),
    rgba(4, 7, 24, 0.38);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(54px, 8vw, 104px);
}

.contact__intro {
  position: sticky;
  top: 128px;
}

.contact__details {
  display: grid;
  margin-top: 34px;
  gap: 14px;
}

.contact__details > div {
  display: flex;
  padding: 14px 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact__details strong {
  font-size: 12px;
}

.contact__details span,
.contact__details a {
  color: var(--muted);
  font-size: 12px;
}

.contact__details a:hover,
.contact__details a:focus-visible {
  color: var(--cyan);
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span,
.form-extras legend {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.form-field > span small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 11px 14px;
}

.form-field textarea {
  min-height: 136px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(209, 221, 255, 0.38);
}

.form-field select {
  color-scheme: dark;
}

.form-field select option {
  color: #071027;
  background: #ffffff;
}

.form-field select option:disabled {
  color: #6f778b;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(143, 232, 255, 0.23);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(143, 232, 255, 0.55);
  background: rgba(143, 232, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(143, 232, 255, 0.08);
}

.form-extras {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-extras legend {
  margin-bottom: 12px;
}

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

.check-option,
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.check-option {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.check-option:hover {
  border-color: rgba(143, 232, 255, 0.23);
  background: rgba(143, 232, 255, 0.035);
}

.check-option input,
.form-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}

.form-consent {
  max-width: 520px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-actions p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-status {
  min-height: 20px;
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #ffb4c8;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

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

.site-footer {
  position: relative;
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(2, 4, 15, 0.72);
}

.site-footer__grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 44px;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__grid > div:first-child p {
  max-width: 310px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__grid > div > strong {
  margin-bottom: 8px;
  font-size: 12px;
}

.site-footer__grid > div > a:not(.brand) {
  color: var(--muted);
  font-size: 12px;
  transition: color 0.2s ease;
}

.site-footer__grid > div > a:not(.brand):hover,
.site-footer__grid > div > a:not(.brand):focus-visible {
  color: var(--cyan);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@keyframes priceIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.4vw, 58px);
  }

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

  .price-card[data-plan="custom"] {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .price-card[data-plan="custom"] .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .site-footer__grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 11px 0;
    background: rgba(3, 5, 18, 0.7);
    backdrop-filter: blur(18px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 20px;
    left: 20px;
    display: flex;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 8, 27, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 7px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

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

  .hero__copy {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions,
  .trust-list {
    justify-content: center;
  }

  .hero__visual {
    min-height: 500px;
  }

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

  .proof-strip__inner > div,
  .proof-strip__inner > div:first-child {
    border-left: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-strip__inner > div:nth-child(2n) {
    border-right: 0;
  }

  .proof-strip__inner > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .included__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .included .section-heading,
  .faq .section-heading,
  .contact__intro {
    position: static;
  }

  .ownership-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }
}

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

  .section {
    padding: 76px 0;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(40px, 10.8vw, 52px);
    letter-spacing: -0.052em;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .hero__visual {
    min-height: 385px;
  }

  .launch-card {
    width: 100%;
    padding: 12px;
    border-radius: 23px;
  }

  .launch-card__badge {
    display: none;
  }

  .browser-preview__body {
    min-height: 230px;
    padding: 14px;
  }

  .preview-hero {
    padding: 28px 0 20px;
  }

  .preview-image {
    height: 105px;
  }


  .proof-strip__inner > div {
    min-height: 100px;
    padding: 16px;
  }

  .proof-strip strong {
    font-size: 20px;
  }

  .proof-strip span {
    font-size: 9px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .billing-switch button {
    min-width: 118px;
    padding: 10px 14px;
  }

  .billing-switch-wrap > p {
    max-width: 300px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price-card,
  .price-card[data-plan="custom"] {
    min-height: auto;
    grid-column: auto;
    padding: 25px;
  }

  .price-card[data-plan="custom"] .feature-list {
    grid-template-columns: 1fr;
  }

  .price-card__intro {
    min-height: auto;
  }

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

  .benefit-card {
    min-height: 190px;
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-card:nth-child(n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .benefit-card::before {
    left: 28px;
  }

  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .contact-card {
    padding: 25px 20px;
    border-radius: 25px;
  }

  .contact__details > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .form-actions p {
    max-width: none;
    text-align: center;
  }

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

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .process-card > span {
    margin-bottom: 35px;
  }

  .ownership-card {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .ownership-card h2 {
    font-size: 42px;
  }

  .faq-list summary {
    padding: 22px 43px 22px 0;
    font-size: 15px;
  }

  .faq-list details p {
    margin-right: 20px;
    font-size: 13px;
  }

  .final-cta {
    padding-top: 30px;
  }

  .final-cta__card {
    padding: 55px 22px;
    border-radius: 27px;
  }

  .final-cta__card h2 {
    font-size: 43px;
  }

  .final-cta__actions {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid > div:last-child {
    grid-column: auto;
  }

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

  .mobile-contact {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #071027;
    background: linear-gradient(135deg, #ffffff, #bff3ff 55%, #d9c5ff);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), 0 0 28px rgba(143, 232, 255, 0.2);
    font-size: 13px;
    font-weight: 900;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Shy Shell Galaxy brand alignment */
body {
  background:
    radial-gradient(circle at 50% 34%, rgba(106, 134, 255, 0.24), transparent 34%),
    radial-gradient(circle at 16% 64%, rgba(255, 117, 231, 0.14), transparent 30%),
    radial-gradient(circle at 86% 52%, rgba(90, 244, 255, 0.13), transparent 31%),
    linear-gradient(180deg, #030512 0%, #070923 34%, #0a0f2c 66%, #040512 100%);
}

.cosmos {
  background:
    radial-gradient(circle at 50% 34%, rgba(106, 134, 255, 0.24), transparent 34%),
    radial-gradient(circle at 16% 64%, rgba(255, 117, 231, 0.14), transparent 30%),
    radial-gradient(circle at 86% 52%, rgba(90, 244, 255, 0.13), transparent 31%),
    linear-gradient(180deg, #030512 0%, #070923 34%, #0a0f2c 66%, #040512 100%);
}

.cosmos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 42%, rgba(1, 2, 8, 0.2) 70%, rgba(0, 0, 0, 0.68) 100%);
}

.cosmos::after {
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  padding: 12px 0;
}

.site-header.is-scrolled {
  padding: 8px 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(3, 5, 18, 0.72);
  backdrop-filter: blur(22px) saturate(1.15);
}

.site-header__inner {
  min-height: 58px;
}

.brand {
  gap: 12px;
}

.brand__mark {
  width: 64px;
  height: 48px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(143, 232, 255, 0.24)) drop-shadow(0 0 22px rgba(201, 167, 255, 0.18));
}

.brand__text strong {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #dbcaff 42%, #8fe8ff 78%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand__text small {
  margin-top: 6px;
  color: rgba(227, 236, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.brand__page {
  margin-left: 6px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(227, 236, 255, 0.62);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-nav {
  gap: 22px;
  color: rgba(227, 236, 255, 0.72);
}

.site-nav > a:not(.button) {
  padding: 7px 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 12px rgba(143, 232, 255, 0.28);
}

.button {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.button--primary,
.button--card-featured {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(12, 18, 50, 0.56);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.055),
    0 18px 64px rgba(58, 157, 255, 0.22),
    0 0 34px rgba(143, 232, 255, 0.24),
    0 0 78px rgba(201, 167, 255, 0.16);
}

.button--primary::before,
.button--card-featured::before {
  content: "";
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-72%) rotate(12deg);
  transition: transform 0.72s ease;
}

.button--primary:hover::before,
.button--primary:focus-visible::before,
.button--card-featured:hover::before,
.button--card-featured:focus-visible::before {
  transform: translateX(66%) rotate(12deg);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--card-featured:hover,
.button--card-featured:focus-visible {
  border-color: rgba(143, 232, 255, 0.46);
  box-shadow:
    0 22px 74px rgba(58, 157, 255, 0.26),
    0 0 40px rgba(143, 232, 255, 0.28),
    0 0 88px rgba(201, 167, 255, 0.2);
}

.button--secondary,
.button--ghost,
.button--card:not(.button--card-featured) {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible,
.button--card:not(.button--card-featured):hover,
.button--card:not(.button--card-featured):focus-visible {
  border-color: rgba(143, 232, 255, 0.4);
  color: #ffffff;
  background: rgba(143, 232, 255, 0.09);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), 0 0 28px rgba(143, 232, 255, 0.12);
}

.eyebrow {
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(230, 238, 255, 0.79);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 30px rgba(122, 203, 255, 0.1);
  backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.eyebrow span {
  box-shadow: 0 0 16px var(--cyan), 0 0 34px var(--violet);
}

.hero h1,
.section-heading h2,
.ownership-card h2,
.final-cta__card h2 {
  text-shadow: 0 0 26px rgba(143, 232, 255, 0.12), 0 24px 85px rgba(0, 0, 0, 0.32);
}

.hero h1 em {
  background-size: 190% 100%;
  animation: shyShellSheen 5.5s ease-in-out infinite alternate;
}

.glass-card,
.benefit-grid,
.process-grid {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(8, 11, 35, 0.55);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.launch-card {
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.42),
    0 0 68px rgba(143, 232, 255, 0.09),
    0 0 110px rgba(201, 167, 255, 0.07);
}

.price-card--featured {
  border-color: rgba(143, 232, 255, 0.34);
  background:
    radial-gradient(circle at 76% 6%, rgba(143, 232, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 43, 0.74);
}

.popular-pill {
  border-color: rgba(143, 232, 255, 0.35);
  color: rgba(233, 247, 255, 0.94);
  background: rgba(12, 18, 50, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 28px rgba(143, 232, 255, 0.14);
  backdrop-filter: blur(16px);
}

.billing-switch button.is-active {
  border: 1px solid rgba(143, 232, 255, 0.28);
  color: #ffffff;
  background: rgba(143, 232, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 24px rgba(143, 232, 255, 0.1);
}

.contact-card {
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38), 0 0 64px rgba(143, 232, 255, 0.05);
}

.form-field input,
.form-field select,
.form-field textarea,
.check-option {
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(106, 134, 255, 0.08), transparent 34%),
    rgba(2, 4, 15, 0.82);
}

.mobile-contact {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(12, 18, 50, 0.92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(143, 232, 255, 0.22);
  backdrop-filter: blur(18px);
}

@keyframes shyShellSheen {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(3, 5, 18, 0.72);
    backdrop-filter: blur(20px) saturate(1.15);
  }

  .site-nav {
    top: 76px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(6, 9, 29, 0.94);
  }

  .site-nav > a:not(.button) {
    padding: 13px 10px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
  }
}

@media (max-width: 680px) {
  .brand__mark {
    width: 54px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__page {
    display: none;
  }

  .site-header__inner {
    min-height: 52px;
  }
}
