:root {
  --g1: #0a1512;
  --g2: #0d1d1a;
  --g3: #102320;
  --surface-1: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-3: rgba(255, 255, 255, 0.11);
  --border-1: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --teal: #2baa8c;
  --teal-bright: #46dfbf;
  --teal-soft: rgba(43, 170, 140, 0.16);
  --teal-soft-strong: rgba(43, 170, 140, 0.24);
  --gold: #f0b543;
  --text: #e8f0ee;
  --text-muted: rgba(232, 240, 238, 0.68);
  --text-dim: rgba(232, 240, 238, 0.4);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.28);
  --r-sm: 16px;
  --r: 24px;
  --r-lg: 32px;
  --r-xl: 42px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--g1);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(43, 170, 140, 0.1), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(70, 223, 191, 0.08), transparent 20%),
    linear-gradient(180deg, var(--g2) 0%, var(--g1) 32%, #07110f 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(70, 223, 191, 0.28);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  top: -180px;
  right: -180px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(70, 223, 191, 0.12), transparent 72%);
}

.bg-orb-2 {
  bottom: 8%;
  left: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(43, 170, 140, 0.1), transparent 72%);
}

.bg-orb-3 {
  top: 42%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(240, 181, 67, 0.08), transparent 74%);
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0 0;
}

.nav-shell {
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px 12px 16px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(10, 21, 18, 0.76);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav.scrolled .nav-inner {
  background: rgba(10, 21, 18, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.nav-logo-img,
.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  padding: 2px;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(43, 170, 140, 0.28);
}

.nav-logo-img img,
.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.nav-logo-img img {
  transform: scale(1.5);
}

.footer-logo-wrap img {
  transform: scale(1.5);
}

.nav-brand-text strong,
.footer-brand-name {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
}

.nav-brand-text strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.08;
}

.nav-brand-text span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-muted);
}

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

.nav-link,
.mobile-nav a {
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-link {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover {
  color: #fff;
  background: var(--surface-2);
}

.nav-cta,
.btn-primary,
.contact-btn,
.store-btn--accent {
  background: var(--teal);
  color: var(--g1);
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(70, 223, 191, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.contact-btn:hover,
.store-btn--accent:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-1);
  background: var(--surface-2);
}

.nav-hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.22s ease;
}

.nav-hamburger.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-hamburger.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid var(--border-2);
  background: rgba(10, 21, 18, 0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
}

.mobile-nav a:hover {
  color: #fff;
  background: var(--surface-2);
}

.mobile-nav .mob-cta {
  margin-top: 4px;
  border-radius: 999px;
  text-align: center;
  background: var(--teal);
  color: var(--g1);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  padding: 140px 0 84px;
}

.hero-inner,
.role-content.active,
.bento-wide-inner,
.footer-inner,
.content-layout {
  display: grid;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(70, 223, 191, 0.24);
  background: rgba(43, 170, 140, 0.12);
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "✦";
  font-size: 9px;
}

.hero h1,
.page-hero h1,
h2,
.policy-section h2,
.contact-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
}

.hero h1 {
  margin: 26px 0;
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-bright);
}

.hero-sub,
.lead,
.page-hero-copy {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-actions,
.badge-group,
.hero-trust,
.chip-group,
.bento-tags,
.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 16px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn-primary {
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 40px rgba(70, 223, 191, 0.22), 0 12px 26px rgba(0, 0, 0, 0.28);
}

.btn-ghost {
  padding: 14px 24px;
  border: 1px solid var(--border-2);
  background: var(--surface-1);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(70, 223, 191, 0.24);
  background: var(--surface-2);
}

.hero-trust {
  gap: 10px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 13px;
}

.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-phones {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phones::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 460px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(70, 223, 191, 0.18), transparent 70%);
}

.hero-device {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.hero-device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

.hero-device-main {
  z-index: 3;
  width: 290px;
  transform: translate(-50%, -50%);
}

.hero-device-left {
  z-index: 1;
  width: 238px;
  transform: translate(calc(-50% - 196px), calc(-50% + 30px)) rotate(-10deg);
  opacity: 0.82;
}

.hero-device-right {
  z-index: 2;
  width: 244px;
  transform: translate(calc(-50% + 192px), calc(-50% + 18px)) rotate(9deg);
  opacity: 0.9;
}

.hero-float {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  display: flex;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(8, 18, 16, 0.74);
  backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  animation: heroFloat 6.8s ease-in-out infinite;
}

.hero-float strong {
  display: block;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-float span {
  display: block;
}

.hero-float-top {
  top: 108px;
  left: 10px;
  max-width: 210px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  animation-delay: -0.8s;
}

.hero-float-kicker {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(70, 223, 191, 0.14);
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float-right {
  top: 210px;
  right: -6px;
  align-items: center;
  gap: 12px;
  animation-delay: -2.7s;
}

.hero-float-copy {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-float-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: heroPulse 2.4s ease-out infinite;
}

.hero-float-bottom {
  bottom: 88px;
  left: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  animation-delay: -4.4s;
}

.hero-float-bottom span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 223, 191, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(70, 223, 191, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(70, 223, 191, 0);
  }
}

.stats-bar {
  padding: 0 0 100px;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  background: var(--surface-1);
  backdrop-filter: blur(18px);
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border-1);
  text-align: center;
}

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

.stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-n span {
  color: var(--teal-bright);
}

.stat-l {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.kicker {
  padding: 0;
  border: 0;
  background: none;
}

.kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-bright);
  opacity: 0.65;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 620px;
  margin-top: 18px;
}

.section-head-center {
  text-align: center;
}

.section-head-center .kicker,
.kicker-center {
  justify-content: center;
}

.section-head-center .lead,
.lead-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.roles-section,
.features-section,
.pricing-section,
.testimonials-section,
.cta-section {
  border-top: 1px solid var(--border-1);
}

.roles-section {
  border-bottom: 1px solid var(--border-1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.roles-tabs {
  display: inline-flex;
  gap: 6px;
  margin: 44px 0 50px;
  padding: 6px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--surface-1);
}

.role-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.22s ease, color 0.22s ease;
}

.role-tab.active {
  background: var(--teal);
  color: var(--g1);
}

.role-tab:hover:not(.active) {
  color: #fff;
  background: var(--surface-2);
}

.role-content {
  display: none;
}

.role-content.active {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.role-steps,
.role-card-panel,
.bento-card,
.price-card,
.test-card,
.policy-section,
.toc {
  border: 1px solid var(--border-1);
  background: var(--surface-1);
  backdrop-filter: blur(16px);
}

.role-steps,
.role-card-panel,
.policy-section {
  border-radius: var(--r-xl);
}

.role-steps,
.role-card-panel {
  padding: 30px;
}

.role-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-1);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.role-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.role-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-num {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(70, 223, 191, 0.2);
  background: rgba(43, 170, 140, 0.14);
  color: var(--teal-bright);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.step-body strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #fff;
}

.step-body p,
.role-card-panel .sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.68;
}

.role-tip {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(70, 223, 191, 0.2);
  background: rgba(43, 170, 140, 0.12);
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.role-card-panel h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  text-align: center;
}

.metric strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.metric span,
.chip,
.bento-tag,
.price-note,
.price-feature,
.author-role,
.footer-brand-desc,
.footer-col a,
.footer-bottom,
.store-btn-text span,
.cta-guarantee {
  color: var(--text-muted);
}

.metric span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.chip-group {
  gap: 7px;
}

.chip {
  padding: 7px 13px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 13px;
  font-weight: 600;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--r-lg);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease, background 0.3s ease;
}

.bento-card.bento-wide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 223, 191, 0.2);
  background: var(--surface-2);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 15px;
  border: 1px solid rgba(70, 223, 191, 0.2);
  background: rgba(43, 170, 140, 0.12);
  font-size: 22px;
}

.bento-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.bento-card p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.72;
}

.bento-tags {
  gap: 6px;
}

.bento-tag {
  padding: 4px 10px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bento-wide-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(210px, 250px);
  gap: 26px;
  align-items: stretch;
}

.bento-wide-inner > :first-child {
  min-width: 0;
}

.bento-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.bento-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.bento-list-item::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
}

.feature-shot {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 250px;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(70, 223, 191, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-shot::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 18px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.32), transparent 72%);
  filter: blur(14px);
  opacity: 0.8;
}

.feature-shot img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 390px;
  margin: 0;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.36));
}

.pricing-grid,
.test-grid {
  display: grid;
  gap: 20px;
}

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

.price-card {
  padding: 34px;
  border-radius: var(--r-xl);
}

.price-card.featured,
.contact-card {
  border-color: rgba(70, 223, 191, 0.22);
  background: linear-gradient(145deg, rgba(43, 170, 140, 0.16), rgba(43, 170, 140, 0.06));
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  padding: 7px 16px;
  border-radius: 0 0 14px 14px;
  background: var(--teal);
  color: var(--g1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-big {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-big .sym {
  margin-top: 8px;
  font-size: 26px;
}

.price-big .period {
  align-self: flex-end;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.price-divider {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid var(--border-1);
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1.52;
}

.price-check {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(70, 223, 191, 0.2);
  border-radius: 999px;
  background: rgba(43, 170, 140, 0.12);
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 800;
}

.price-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  border: 1.5px solid rgba(70, 223, 191, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--teal-bright);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.price-btn:hover {
  background: rgba(43, 170, 140, 0.12);
  border-color: var(--teal);
}

.price-card.featured .price-btn {
  background: var(--teal);
  color: var(--g1);
  border-color: var(--teal);
}

.price-note-bottom {
  max-width: 820px;
  margin: 22px auto 0;
  padding: 14px 24px;
  border: 1px solid rgba(70, 223, 191, 0.22);
  border-radius: var(--r-sm);
  background: rgba(43, 170, 140, 0.12);
  color: var(--teal-bright);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.test-grid {
  margin-top: 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.test-card {
  position: relative;
  padding: 26px;
  border-radius: var(--r-lg);
}

.test-card::before {
  content: "\"";
  position: absolute;
  top: 10px;
  right: 18px;
  color: rgba(70, 223, 191, 0.08);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
}

.test-body {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(232, 240, 238, 0.84);
  font-size: 15px;
  line-height: 1.75;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), #1a6b55);
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.author-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.author-role {
  margin-top: 2px;
  font-size: 13px;
}

.cta-section {
  padding: 120px 0;
}

.cta-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-section::before {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(43, 170, 140, 0.14), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(43, 170, 140, 0.08), transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 18px;
}

.cta-inner .lead {
  margin: 0 auto 44px;
  text-align: center;
}

.badge-group {
  justify-content: center;
  gap: 14px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 224px;
  padding: 16px 24px;
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  background: var(--surface-2);
  color: #fff;
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.store-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(70, 223, 191, 0.24);
  background: var(--surface-3);
}

.store-btn:focus-visible {
  outline: 2px solid rgba(70, 223, 191, 0.8);
  outline-offset: 3px;
}

.store-btn-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
}

.store-btn-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-btn-text strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.coming-soon-toast {
  min-height: 28px;
  margin-top: 18px;
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.coming-soon-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-guarantee {
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
}

.cta-guarantee::before {
  content: "🛡️";
  font-size: 14px;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-1);
}

.site-footer {
  padding: 60px 0 36px;
}

.footer-inner {
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo-wrap {
  width: 58px;
  height: 58px;
  padding: 3px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(43, 170, 140, 0.28);
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
}

.footer-brand-desc {
  display: block;
  max-width: 280px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-links a:hover,
.policy-section a:hover {
  color: #fff;
}

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

.page-legal .bg-orb-3 {
  display: none;
}

.page-hero {
  padding: 150px 0 80px;
  border-bottom: 1px solid var(--border-1);
}

.page-hero::before {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(43, 170, 140, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(43, 170, 140, 0.08), transparent 45%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.not-found-section {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 152px 0 88px;
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.error-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(240, 181, 67, 0.22);
  border-radius: 999px;
  background: rgba(240, 181, 67, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 8px rgba(240, 181, 67, 0.12);
}

.not-found-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.not-found-copy p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.72;
}

.not-found-actions,
.not-found-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.not-found-actions {
  margin-top: 28px;
}

.not-found-pills {
  margin-top: 22px;
}

.not-found-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--surface-1);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.not-found-pill:hover {
  color: #fff;
  border-color: rgba(70, 223, 191, 0.18);
  background: var(--surface-2);
}

.not-found-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(70, 223, 191, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.not-found-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 170, 140, 0.22), transparent 70%);
  filter: blur(10px);
}

.not-found-code {
  position: relative;
  z-index: 1;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(110px, 15vw, 180px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.95);
}

.not-found-code span {
  color: var(--teal-bright);
}

.not-found-card h2 {
  position: relative;
  z-index: 1;
  margin: 16px 0 10px;
  font-size: 28px;
}

.not-found-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.not-found-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.not-found-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.not-found-item:hover {
  transform: translateY(-2px);
  border-color: rgba(70, 223, 191, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.not-found-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.not-found-item span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
}

.not-found-arrow {
  color: var(--teal-bright);
  font-size: 20px;
  font-weight: 700;
}

.page-hero h1 {
  margin: 20px 0;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.page-hero-copy {
  max-width: 640px;
}

.effective {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(70, 223, 191, 0.22);
  border-radius: 999px;
  background: rgba(43, 170, 140, 0.12);
  color: var(--teal-bright);
  font-size: 13px;
  font-weight: 600;
}

.effective::before {
  content: "📅";
  font-size: 13px;
}

.content-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 64px 0 100px;
}

.toc {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: var(--r-lg);
}

.toc h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  margin-bottom: 2px;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.toc a:hover {
  color: #fff;
  background: var(--surface-2);
  border-left-color: var(--teal);
}

.toc a.active {
  color: var(--teal-bright);
  background: rgba(43, 170, 140, 0.12);
  border-left-color: var(--teal-bright);
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-section {
  padding: 32px;
  scroll-margin-top: 100px;
}

.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
}

.section-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(70, 223, 191, 0.2);
  border-radius: 12px;
  background: rgba(43, 170, 140, 0.12);
  font-size: 18px;
}

.policy-section p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 0;
}

.policy-section li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.policy-section li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.policy-section a {
  color: var(--teal-bright);
  text-decoration: underline;
  text-decoration-color: rgba(70, 223, 191, 0.3);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  padding: 32px;
  border-radius: var(--r-lg);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.legal-footer {
  padding: 40px 0 30px;
}

.legal-footer .footer-bottom {
  padding-top: 0;
  border-top: 0;
}

.footer-links {
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  transition: color 0.2s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1080px) {
  .hero-phones {
    min-height: 560px;
  }

  .hero-device-left,
  .hero-device-right {
    width: 214px;
  }

  .hero-device-left {
    transform: translate(calc(-50% - 160px), calc(-50% + 28px)) rotate(-10deg);
  }

  .hero-device-right {
    transform: translate(calc(-50% + 160px), calc(-50% + 16px)) rotate(9deg);
  }

  .hero-float-top {
    left: -4px;
  }

  .hero-float-right {
    right: -14px;
  }

  .hero-float-bottom {
    left: 12px;
  }

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

  .bento-wide {
    grid-column: span 2;
  }

  .bento-wide-inner {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 220px);
    gap: 22px;
  }

  .feature-shot {
    max-width: 220px;
  }

  .feature-shot img {
    max-height: 340px;
  }
}

@media (max-width: 940px) {
  .nav-brand {
    gap: 12px;
  }

  .nav-logo-img {
    width: 48px;
    height: 48px;
    padding: 2px;
    border-radius: 13px;
  }

  .nav-brand-text strong {
    font-size: 15px;
  }

  .nav-brand-text span {
    font-size: 11px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger,
  .mobile-nav {
    display: flex;
  }

  .hero-inner,
  .not-found-grid,
  .content-layout,
  .role-content.active,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .not-found-section {
    padding-top: 132px;
  }

  .not-found-card {
    padding: 28px;
  }

  .hero-phones {
    order: -1;
    min-height: 470px;
  }

  .hero-device-main {
    width: 250px;
  }

  .hero-device-left {
    width: 184px;
    transform: translate(calc(-50% - 130px), calc(-50% + 22px)) rotate(-9deg);
  }

  .hero-device-right {
    width: 188px;
    transform: translate(calc(-50% + 128px), calc(-50% + 16px)) rotate(8deg);
  }

  .hero-float {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .hero-float-top {
    top: 40px;
    left: 6px;
    max-width: 170px;
  }

  .hero-float-right {
    top: 126px;
    right: 0;
  }

  .hero-float-bottom {
    bottom: 18px;
    left: 12px;
  }

  .hero-float-copy,
  .hero-float strong {
    font-size: 12px;
  }

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

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

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-1);
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .bento,
  .pricing-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: span 1;
  }

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

  .feature-shot {
    max-width: 260px;
    margin: 10px auto 0;
  }

  .feature-shot img {
    max-height: none;
    width: min(230px, 100%);
    margin: 0 auto;
  }

  .toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .toc h3 {
    width: 100%;
    margin-bottom: 8px;
  }

  .toc a {
    flex: 1 1 180px;
  }
}

@media (max-width: 640px) {
  .nav-logo-img {
    width: 46px;
    height: 46px;
    padding: 2px;
    border-radius: 12px;
  }

  .footer-logo-wrap {
    width: 54px;
    height: 54px;
    padding: 3px;
    border-radius: 15px;
  }

  .wrap {
    padding: 0 20px;
  }

  .not-found-section {
    min-height: auto;
    padding: 118px 0 70px;
  }

  .not-found-copy p {
    font-size: 16px;
  }

  .not-found-actions,
  .not-found-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .not-found-pill,
  .not-found-item {
    width: 100%;
  }

  .not-found-card {
    padding: 24px;
    border-radius: 28px;
  }

  .not-found-card h2 {
    font-size: 24px;
  }

  section,
  .cta-section {
    padding: 80px 0;
  }

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

  .hero h1 {
    font-size: clamp(34px, 9vw, 50px);
  }

  .hero-actions,
  .badge-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost,
  .store-btn {
    justify-content: center;
  }

  .hero-phones {
    min-height: 390px;
  }

  .hero-device-main {
    width: 210px;
  }

  .hero-device-left,
  .hero-device-right {
    width: 150px;
  }

  .hero-device-left {
    transform: translate(calc(-50% - 88px), calc(-50% + 18px)) rotate(-8deg);
  }

  .hero-device-right {
    transform: translate(calc(-50% + 86px), calc(-50% + 12px)) rotate(7deg);
  }

  .hero-float {
    padding: 10px 12px;
  }

  .hero-float-top {
    display: none;
  }

  .hero-float-right {
    top: 102px;
    right: 4px;
  }

  .hero-float-bottom {
    left: 10px;
    bottom: 8px;
  }

  .hero-float-copy,
  .hero-float strong,
  .hero-float-bottom span {
    font-size: 11px;
  }

  .metrics-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .store-btn {
    width: 100%;
    min-width: 0;
  }
}
