:root {
  --bg: #f7f8fc;
  --bg-soft: #f0f2f8;
  --surface: #ffffff;
  --surface-soft: #f7f7fb;
  --surface-accent: #f1efff;
  --text: #111322;
  --text-soft: #5f6678;
  --text-muted: #7b8293;
  --border: #e4e7ef;
  --border-strong: #d5d9e5;
  --accent: #5b4cf5;
  --accent-dark: #4436d8;
  --accent-light: #8d83ff;
  --accent-pale: #eeecff;
  --dark: #0b0d18;
  --dark-soft: #141725;
  --dark-border: rgba(255, 255, 255, 0.12);
  --success: #22a06b;
  --shadow-sm: 0 10px 30px rgba(29, 33, 55, 0.08);
  --shadow-md: 0 24px 70px rgba(29, 33, 55, 0.12);
  --shadow-lg: 0 36px 100px rgba(39, 31, 101, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --page: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

::selection {
  background: rgba(91, 76, 245, 0.2);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--dark);
  color: #ffffff;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(91, 76, 245, 0.38);
  outline-offset: 4px;
}

.page-shell {
  width: min(calc(100% - 48px), var(--page));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 231, 239, 0.85);
  background: rgba(247, 248, 252, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand-icon {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(91, 76, 245, 0.2);
}

.brand-name {
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.025em;
}

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

.main-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  border-radius: 12px;
  padding: 0 17px;
  font-size: 13px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #6f61ff);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(91, 76, 245, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 18px 38px rgba(91, 76, 245, 0.3);
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(29, 33, 55, 0.06);
}

.button-secondary:hover {
  border-color: rgba(91, 76, 245, 0.34);
  background: #ffffff;
}

.button-light {
  background: #ffffff;
  color: var(--dark);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(91, 76, 245, 0.16);
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-dark {
  border-color: rgba(141, 131, 255, 0.24);
  background: rgba(141, 131, 255, 0.1);
  color: #b9b3ff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 54px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(141, 131, 255, 0.14),
      transparent 33%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 84%);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: 100px;
  left: -180px;
  width: 360px;
  height: 360px;
  background: rgba(91, 76, 245, 0.12);
}

.hero-glow-two {
  top: 280px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: rgba(134, 216, 255, 0.14);
}

.hero-copy {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

.hero h1 {
  margin: 24px 0 24px;
  font-size: clamp(58px, 8.8vw, 104px);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  display: inline-block;
  padding-right: 0.06em;
  background: linear-gradient(110deg, #4f40ea 0%, #8d83ff 52%, #5a79ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.product-stage {
  position: relative;
  min-height: 600px;
  max-width: 1080px;
  margin: 70px auto 0;
}

.stage-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(91, 76, 245, 0.12);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-one {
  width: 760px;
  height: 760px;
}

.orbit-two {
  width: 980px;
  height: 980px;
}

.desktop-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid rgba(209, 214, 229, 0.94);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.desktop-window::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
  content: "";
  pointer-events: none;
}

.desktop-window img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-window {
  position: absolute;
  right: 20px;
  bottom: -20px;
  z-index: 4;
  width: 220px;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 74px rgba(29, 33, 55, 0.24);
}

.phone-window img {
  display: block;
  width: 100%;
  height: auto;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.badge-local {
  bottom: 64px;
  left: 12px;
}

.badge-relay {
  top: 86px;
  right: 4px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(34, 160, 107, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--border);
  color: var(--text-soft);
  padding: 18px;
  font-size: 13px;
  font-weight: 620;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34, 160, 107, 0.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.security-copy h2,
.share-copy h2,
.final-cta h2 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 810;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-heading p,
.security-copy > p,
.share-copy > p,
.final-cta p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

.section-product {
  background: #ffffff;
}

.product-overview {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(141, 131, 255, 0.12),
      transparent 38%
    ),
    var(--surface-soft);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.product-overview-copy {
  padding: 18px 10px 18px 20px;
}

.feature-kicker,
.feature-label,
.price-plan {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-overview-copy h3 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.product-overview-copy > p {
  color: var(--text-soft);
  font-size: 17px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.category-grid span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 650;
}

.overview-visual {
  position: relative;
}

.overview-card {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.overview-card img {
  display: block;
  width: 100%;
  height: auto;
}

.overview-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
  padding: 9px 13px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.security-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(91, 76, 245, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(53, 126, 255, 0.14),
      transparent 34%
    ),
    var(--dark);
  color: #ffffff;
}

.security-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 84px;
}

.security-copy h2 {
  color: #ffffff;
}

.security-copy > p {
  max-width: 640px;
  color: #b8becb;
}

.security-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.security-specs span {
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9dce6;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 650;
}

.security-flow {
  display: grid;
  gap: 12px;
}

.flow-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.flow-card-accent {
  border-color: rgba(141, 131, 255, 0.44);
  background: linear-gradient(
    135deg,
    rgba(91, 76, 245, 0.26),
    rgba(91, 76, 245, 0.12)
  );
}

.flow-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #b9b3ff;
}

.flow-icon svg {
  width: 23px;
  height: 23px;
}

.flow-card div:last-child {
  display: grid;
}

.flow-card strong {
  font-size: 14px;
}

.flow-card span {
  color: #9da4b3;
  font-size: 12px;
}

.flow-arrow {
  color: #666c7a;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.share-section {
  background: #ffffff;
}

.share-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 100px;
}

.share-visual {
  position: relative;
  min-height: 660px;
}

.share-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(91, 76, 245, 0.18),
    rgba(91, 76, 245, 0)
  );
  content: "";
  transform: translate(-50%, -50%);
}

.share-phone-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(340px, 80%);
  margin: 0 auto;
  border: 10px solid #ffffff;
  border-radius: 42px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.share-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.share-stat {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 154px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.share-stat strong {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.share-stat span {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
}

.share-stat-top {
  top: 110px;
  right: 0;
}

.share-stat-bottom {
  bottom: 110px;
  left: 0;
}

.share-copy h2 {
  color: var(--text);
}

.share-copy > p {
  max-width: 690px;
}

.share-steps {
  display: grid;
  gap: 18px;
  margin: 34px 0 26px;
}

.share-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.share-step > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.share-step strong {
  font-size: 15px;
}

.share-step p {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.feature-section {
  background: var(--bg);
}

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

.showcase-card {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(141, 131, 255, 0.11),
      transparent 36%
    ),
    #ffffff;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.showcase-large,
.showcase-wide {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 22px;
}

.showcase-wide {
  min-height: 230px;
  grid-column: 1 / -1;
}

.showcase-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--accent-pale);
  color: var(--accent);
}

.showcase-icon svg {
  width: 24px;
  height: 24px;
}

.showcase-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 790;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.showcase-card p {
  color: var(--text-soft);
  font-size: 15px;
}

.pricing-section {
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.price-card-featured {
  border-color: rgba(91, 76, 245, 0.36);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(141, 131, 255, 0.18),
      transparent 35%
    ),
    #ffffff;
  box-shadow: 0 30px 80px rgba(91, 76, 245, 0.14);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 12px;
}

.price strong {
  font-size: clamp(50px, 6vw, 72px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
}

.price-card-top p {
  color: var(--text-soft);
  font-size: 15px;
}

.price-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 30px;
  list-style: none;
}

.price-list li {
  position: relative;
  color: var(--text-soft);
  padding-left: 28px;
  font-size: 14px;
}

.price-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34, 160, 107, 0.1);
  color: var(--success);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

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

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

.faq-section {
  background: var(--bg);
}

.faq-shell {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(29, 33, 55, 0.045);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 24px;
  font-size: 15px;
  font-weight: 720;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  content: "+";
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -2px 58px 22px 24px;
  color: var(--text-soft);
  font-size: 14px;
}

.faq-more {
  margin-top: 28px;
  text-align: center;
}

.final-cta-section {
  padding-top: 48px;
  background: #ffffff;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(141, 131, 255, 0.4),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(77, 122, 255, 0.24),
      transparent 34%
    ),
    var(--dark);
  color: #ffffff;
  padding: 84px 30px;
  text-align: center;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.final-cta-glow::before,
.final-cta-glow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta-glow::before {
  width: 460px;
  height: 460px;
}

.final-cta-glow::after {
  width: 280px;
  height: 280px;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content > img {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(91, 76, 245, 0.34);
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #b9becb;
}

.site-footer {
  background: #ffffff;
  padding: 78px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 50px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-column a {
  color: var(--text-soft);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Legal and support pages */

.doc-wrap {
  width: min(calc(100% - 48px), 880px);
  margin: 0 auto;
}

.doc-wrap header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 18px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #8d83ff, #4436d8);
  box-shadow: 0 8px 20px rgba(91, 76, 245, 0.2);
}

.logo svg {
  width: 28px;
  height: 28px;
}

.brand-container {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand {
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 620;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--accent);
}

.nav-links .active {
  cursor: default;
}

.doc-hero {
  padding: 70px 0 8px;
  text-align: center;
}

.doc-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 810;
  letter-spacing: -0.05em;
  line-height: 1;
}

.doc-hero .lead {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 18px;
}

.doc-meta {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.content {
  margin: 34px 0 58px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #ffffff;
  color: var(--text-soft);
  padding: 42px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.78;
}

.content .intro {
  color: var(--text);
  font-size: 16px;
}

.content h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 36px;
  letter-spacing: -0.04em;
}

.content h2 {
  margin: 38px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 20px;
  line-height: 1.3;
}

.content p,
.content ul,
.content ol {
  margin-bottom: 16px;
}

.content ul,
.content ol {
  padding-left: 22px;
}

.content li {
  margin-bottom: 9px;
}

.content strong {
  color: var(--text);
}

.content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(91, 76, 245, 0.24);
}

.content a:hover {
  border-bottom-color: var(--accent);
}

.faq-q {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 740;
}

.faq-a {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}

.doc-wrap footer {
  padding: 38px 0 58px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.doc-wrap footer p {
  margin-bottom: 8px;
}

.doc-wrap footer a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .product-stage {
    min-height: 520px;
  }

  .security-layout,
  .share-layout {
    gap: 56px;
  }

  .share-visual {
    min-height: 600px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 86px 0;
  }

  .product-overview,
  .security-layout,
  .share-layout {
    grid-template-columns: 1fr;
  }

  .product-overview {
    gap: 38px;
  }

  .product-overview-copy {
    padding: 8px;
  }

  .security-copy,
  .share-copy {
    text-align: center;
  }

  .security-copy > p,
  .share-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .security-specs {
    justify-content: center;
  }

  .security-flow {
    max-width: 560px;
    margin: 0 auto;
  }

  .share-layout {
    gap: 40px;
  }

  .share-visual {
    order: 2;
    min-height: 570px;
  }

  .share-copy {
    order: 1;
  }

  .share-steps {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .feature-showcase,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .showcase-wide {
    grid-column: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .doc-wrap {
    width: min(calc(100% - 34px), var(--page));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .brand-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 17px;
  }

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

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-note {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .product-stage {
    min-height: 600px;
    margin-top: 48px;
  }

  .desktop-window {
    position: absolute;
    top: 340px;
    left: 50%;
    width: 118%;
    transform: translateX(-50%);
  }

  .phone-window {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(270px, 82vw);
    transform: translateX(-50%);
  }

  .floating-badge {
    font-size: 10px;
  }

  .badge-local {
    top: 246px;
    bottom: auto;
    left: 0;
  }

  .badge-relay {
    top: 320px;
    right: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .section-heading p,
  .security-copy > p,
  .share-copy > p,
  .final-cta p {
    font-size: 16px;
  }

  .product-overview {
    border-radius: 26px;
    padding: 22px;
  }

  .overview-caption {
    position: static;
    margin-top: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    text-align: center;
  }

  .share-visual {
    min-height: 530px;
  }

  .share-phone-frame {
    width: min(290px, 84vw);
  }

  .share-stat {
    min-width: 128px;
    padding: 12px;
  }

  .share-stat-top {
    top: 70px;
    right: -6px;
  }

  .share-stat-bottom {
    bottom: 70px;
    left: -6px;
  }

  .showcase-card,
  .showcase-large,
  .showcase-wide {
    display: block;
    min-height: 0;
    padding: 24px;
  }

  .showcase-card h3 {
    font-size: 28px;
  }

  .price-card {
    border-radius: 26px;
    padding: 26px;
  }

  .popular-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 20px;
  }

  .faq-list summary {
    padding: 20px 52px 20px 20px;
  }

  .faq-list details p {
    margin: -2px 44px 20px 20px;
  }

  .final-cta {
    border-radius: 28px;
    padding: 68px 20px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .doc-wrap header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .doc-hero {
    padding-top: 52px;
  }

  .content {
    border-radius: 22px;
    padding: 28px 22px;
  }
}

@media (max-width: 420px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 545px;
  }

  .desktop-window {
    top: 320px;
  }

  .badge-local {
    top: 230px;
  }

  .badge-relay {
    top: 292px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
