:root {
  --bg: #f5f8f5;
  --bg-soft: #eef3ee;
  --surface: #ffffff;
  --surface-soft: #f4f8f5;
  --surface-accent: #e8f5ee;
  --text: #10201a;
  --text-soft: #566158;
  --text-muted: #78857c;
  --border: #e2e9e4;
  --border-strong: #d0dad3;
  --accent: #12946a;
  --accent-dark: #0c7654;
  --accent-light: #43c495;
  --accent-pale: #e3f4ec;
  --dark: #08150f;
  --dark-soft: #0f2118;
  --dark-border: rgba(255, 255, 255, 0.12);
  --success: #1f9d63;
  --shadow-sm: 0 10px 30px rgba(16, 40, 28, 0.08);
  --shadow-md: 0 24px 70px rgba(16, 40, 28, 0.12);
  --shadow-lg: 0 36px 100px rgba(13, 58, 40, 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(18, 148, 106, 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(18, 148, 106, 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(226, 233, 228, 0.85);
  background: rgba(245, 248, 245, 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(18, 148, 106, 0.24);
}

.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), #17ad7c);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(18, 148, 106, 0.26);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 18px 38px rgba(18, 148, 106, 0.32);
}

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

.button-secondary:hover {
  border-color: rgba(18, 148, 106, 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(18, 148, 106, 0.18);
  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(67, 196, 149, 0.28);
  background: rgba(67, 196, 149, 0.12);
  color: #8fe3c1;
}

.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(67, 196, 149, 0.16), 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(18, 148, 106, 0.12);
}

.hero-glow-two {
  top: 280px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: rgba(120, 216, 190, 0.16);
}

.hero-copy {
  max-width: 960px;
  margin: 0 auto;
  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, #0f8f63 0%, #43c495 52%, #16b9a6 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(18, 148, 106, 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(208, 218, 211, 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;
}

/* In-app dashboard mockup (self-contained illustration) */
.app-mock {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}

.app-mock-top {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 14px 18px;
}

.app-mock-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d7ddd8;
}

.app-mock-dot:nth-child(1) {
  background: #f2695f;
}

.app-mock-dot:nth-child(2) {
  background: #f6b53f;
}

.app-mock-dot:nth-child(3) {
  background: #3ec46f;
}

.app-mock-title {
  margin-left: 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.app-mock-side {
  display: grid;
  align-content: start;
  gap: 3px;
  border-right: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 16px 12px;
}

.app-mock-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  color: var(--text-soft);
  padding: 9px 11px;
  font-size: 12.5px;
  font-weight: 640;
}

.app-mock-tab i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 5px;
  background: #d3dcd6;
}

.app-mock-tab.is-active {
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-weight: 720;
}

.app-mock-tab.is-active i {
  background: var(--accent);
}

.app-mock-main {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 20px 22px;
}

.app-scan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.app-scan-total {
  display: grid;
  gap: 2px;
}

.app-scan-total span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-scan-total strong {
  color: var(--text);
  font-size: 32px;
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1;
}

.app-scan-cta {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #17ad7c);
  color: #ffffff;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 10px 20px rgba(18, 148, 106, 0.24);
}

.app-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-soft);
}

.app-bar > span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.app-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
}

.app-row-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: #ffffff;
}

.app-row.is-picked .app-row-check {
  border-color: var(--accent);
  background:
    linear-gradient(135deg, var(--accent), var(--accent-light));
}

.app-row-label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.app-row-label strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.app-row-label span {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-risk {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.app-risk.safe {
  background: rgba(31, 157, 99, 0.12);
  color: var(--accent-dark);
}

.app-risk.confirm {
  background: rgba(214, 158, 46, 0.16);
  color: #9a6b12;
}

.app-risk.protected {
  background: rgba(90, 104, 122, 0.14);
  color: #566158;
}

.app-row-size {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.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(16, 40, 28, 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.9);
  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: 44px;
  left: 12px;
}

.badge-recover {
  top: 78px;
  right: 4px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(31, 157, 99, 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(31, 157, 99, 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(67, 196, 149, 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;
}

/* Category breakdown mock inside the product overview */
.breakdown {
  display: grid;
  gap: 14px;
  padding: 26px 28px;
}

.breakdown-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.breakdown-head strong {
  font-size: 15px;
  font-weight: 760;
}

.breakdown-head span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 650;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 66px;
  align-items: center;
  gap: 14px;
}

.breakdown-row > span:first-child {
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 640;
}

.breakdown-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-soft);
}

.breakdown-track > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.breakdown-track > i.w-92 { width: 92%; }
.breakdown-track > i.w-44 { width: 44%; }
.breakdown-track > i.w-26 { width: 26%; }
.breakdown-track > i.w-18 { width: 18%; }
.breakdown-track > i.w-12 { width: 12%; }

.breakdown-row > span:last-child {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 740;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.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(18, 148, 106, 0.26), transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(28, 150, 168, 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: #b6c6bd;
}

.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: #d3e0da;
  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(67, 196, 149, 0.44);
  background: linear-gradient(135deg, rgba(18, 148, 106, 0.3), rgba(18, 148, 106, 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: #8fe3c1;
}

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

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

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

.flow-card span {
  color: #98a89f;
  font-size: 12px;
}

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

.share-section {
  background: #ffffff;
}

.share-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 88px;
}

.share-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 148, 106, 0.16), rgba(18, 148, 106, 0));
  content: "";
  transform: translate(-50%, -50%);
}

.share-window {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

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

/* Verified-offload illustration */
.offload-track {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(360px, 100%);
}

.offload-node {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.offload-node-accent {
  border-color: rgba(18, 148, 106, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 196, 149, 0.14), transparent 46%),
    #ffffff;
}

.offload-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--accent-pale);
  color: var(--accent);
}

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

.offload-node > div {
  display: grid;
}

.offload-node strong {
  font-size: 14px;
}

.offload-node span {
  color: var(--text-muted);
  font-size: 12px;
}

.offload-arrow {
  color: var(--border-strong);
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.share-stat {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 150px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  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: 22px;
  line-height: 1;
}

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

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

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

.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(67, 196, 149, 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: 520px;
  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(18, 148, 106, 0.36);
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 196, 149, 0.18), transparent 35%),
    #ffffff;
  box-shadow: 0 30px 80px rgba(18, 148, 106, 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(38px, 5vw, 54px);
  font-weight: 820;
  letter-spacing: -0.05em;
  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(31, 157, 99, 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(16, 40, 28, 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(67, 196, 149, 0.4), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(28, 150, 168, 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 > .brand-mark {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(18, 148, 106, 0.34);
}

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

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

.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, #43c495, #0c7654);
  box-shadow: 0 8px 20px rgba(18, 148, 106, 0.24);
}

.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;
}

.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 h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 36px;
  letter-spacing: -0.04em;
}

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

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

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

.content .button {
  border-bottom: 0;
}

@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: 480px;
  }
}

@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: 460px;
  }

  .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: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .product-stage {
    min-height: 0;
    margin-top: 44px;
  }

  .desktop-window {
    max-width: none;
  }

  .app-mock {
    grid-template-columns: 1fr;
  }

  .app-mock-side {
    display: none;
  }

  .floating-badge {
    display: none;
  }

  .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;
  }

  .breakdown {
    padding: 20px;
  }

  .breakdown-row {
    grid-template-columns: 96px minmax(0, 1fr) 58px;
    gap: 10px;
  }

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

  .share-visual {
    min-height: 0;
    padding: 24px 0;
  }

  .share-stat {
    display: none;
  }

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

  .showcase-large .showcase-icon,
  .showcase-wide .showcase-icon {
    margin-bottom: 14px;
  }

  .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;
  }

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

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

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

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

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

/* =========================================================
   Premium Privacy, Terms, and Support pages
   ========================================================= */

.legal-page {
  background: linear-gradient(180deg, #ffffff 0, #f5f8f5 520px, #f5f8f5 100%);
}

.legal-page .site-header {
  background: rgba(255, 255, 255, 0.86);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 46px;
  isolation: isolate;
}

.legal-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 68% 0%, rgba(67, 196, 149, 0.2), transparent 34%),
    radial-gradient(circle at 4% 72%, rgba(18, 148, 106, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f5 100%);
  content: "";
}

.legal-hero-orb {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(18, 148, 106, 0.1);
  border-radius: 999px;
  pointer-events: none;
}

.legal-orb-one {
  top: -280px;
  right: -160px;
  width: 620px;
  height: 620px;
}

.legal-orb-two {
  bottom: -310px;
  left: -180px;
  width: 520px;
  height: 520px;
}

.legal-hero-inner {
  position: relative;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 46px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 680;
}

.legal-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.legal-title-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 920px;
}

.legal-page-icon {
  position: relative;
  display: inline-flex;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 148, 106, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(145deg, #ecf8f1, #ddf1e6);
  color: var(--accent);
  box-shadow:
    0 24px 60px rgba(18, 148, 106, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.legal-page-icon::before,
.legal-page-icon::after {
  position: absolute;
  border: 1px solid rgba(18, 148, 106, 0.11);
  border-radius: 999px;
  content: "";
}

.legal-page-icon::before {
  width: 142px;
  height: 142px;
}

.legal-page-icon::after {
  width: 172px;
  height: 172px;
}

.legal-page-icon svg {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
}

.legal-title-copy h1 {
  max-width: 940px;
  margin: 16px 0 14px;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 830;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.legal-title-copy p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.62;
}

.legal-meta-bar {
  display: grid;
  grid-template-columns: 0.8fr 1fr 2.2fr;
  gap: 0;
  overflow: hidden;
  margin-top: 54px;
  border: 1px solid rgba(219, 227, 222, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-meta-bar > div {
  display: grid;
  min-height: 86px;
  align-content: center;
  border-right: 1px solid var(--border);
  padding: 18px 22px;
}

.legal-meta-bar > div:last-child {
  border-right: 0;
}

.meta-label {
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-meta-bar strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.4;
}

.legal-document-section {
  padding: 46px 0 116px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.toc-card,
.legal-contact-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.toc-card {
  overflow: hidden;
}

.toc-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 18px 18px 15px;
  color: var(--text);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.toc-count {
  display: inline-flex;
  min-width: 30px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 10px;
}

.toc-links {
  display: grid;
  max-height: calc(100vh - 270px);
  overflow-y: auto;
  padding: 9px;
  scrollbar-width: thin;
  scrollbar-color: #cfe0d6 transparent;
}

.toc-links a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  border-radius: 12px;
  color: var(--text-soft);
  padding: 9px 10px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.toc-links a:hover {
  background: var(--accent-pale);
  color: var(--accent);
  transform: translateX(2px);
}

.toc-links a span {
  color: #a4b3aa;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.05em;
}

.legal-contact-card {
  display: grid;
  padding: 22px;
}

.legal-contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 14px;
  background: var(--accent-pale);
  color: var(--accent);
}

.legal-contact-icon svg {
  width: 22px;
  height: 22px;
}

.legal-contact-card > span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-contact-card strong {
  margin: 5px 0 13px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.legal-contact-card a {
  overflow-wrap: anywhere;
  color: var(--accent);
  font-size: 11px;
  font-weight: 720;
  text-decoration: none;
}

.legal-article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(16, 40, 28, 0.1);
}

.legal-article-top {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 196, 149, 0.12), transparent 42%),
    #ffffff;
  padding: 20px 34px;
}

.legal-article-top > div {
  display: grid;
}

.document-type {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-article-top strong {
  margin-top: 3px;
  color: var(--text);
  font-size: 15px;
}

.document-home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 760;
  text-decoration: none;
}

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

.document-home-link:hover span {
  transform: translate(2px, -2px);
}

.legal-article-body {
  max-width: 810px;
  margin: 0 auto;
  padding: 48px 56px 58px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.82;
}

.legal-article-body .intro {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid rgba(18, 148, 106, 0.13);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 196, 149, 0.16), transparent 42%),
    #f4fbf7;
  color: var(--text);
  padding: 24px 26px 24px 30px;
  font-size: 16px;
  line-height: 1.7;
}

.legal-article-body .intro::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  content: "";
}

.legal-article-body h2 {
  position: relative;
  margin: 50px 0 18px;
  scroll-margin-top: 110px;
  color: var(--text);
  font-size: 24px;
  font-weight: 790;
  letter-spacing: -0.026em;
  line-height: 1.25;
}

.legal-article-body h2::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  content: "";
}

.legal-article-body h2:first-of-type {
  margin-top: 38px;
}

.legal-article-body p,
.legal-article-body ul,
.legal-article-body ol {
  margin-bottom: 18px;
}

.legal-article-body ul,
.legal-article-body ol {
  padding-left: 0;
  list-style: none;
}

.legal-article-body li {
  position: relative;
  margin-bottom: 12px;
  border: 1px solid #e7efe9;
  border-radius: 14px;
  background: #f7fbf8;
  padding: 13px 15px 13px 42px;
}

.legal-article-body ul li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(18, 148, 106, 0.09);
  content: "";
}

.legal-article-body ol {
  counter-reset: legal-counter;
}

.legal-article-body ol li {
  counter-increment: legal-counter;
}

.legal-article-body ol li::before {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-pale);
  color: var(--accent);
  content: counter(legal-counter);
  font-size: 9px;
  font-weight: 820;
}

.legal-article-body strong {
  color: var(--text);
  font-weight: 750;
}

.legal-article-body a {
  color: var(--accent);
  font-weight: 660;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 148, 106, 0.24);
  transition: border-color 0.2s ease;
}

.legal-article-body a:hover {
  border-bottom-color: var(--accent);
}

.legal-article-body .faq-q {
  position: relative;
  margin: 26px 0 0;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 196, 149, 0.12), transparent 48%),
    #ffffff;
  color: var(--text);
  padding: 18px 54px 18px 20px;
  font-size: 15px;
  font-weight: 760;
}

.legal-article-body .faq-q::after {
  position: absolute;
  top: 17px;
  right: 18px;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  content: "?";
  font-size: 11px;
  font-weight: 820;
}

.legal-article-body .faq-a {
  margin: 0 0 16px;
  border: 1px solid var(--border);
  border-radius: 0 0 16px 16px;
  background: #f7fbf8;
  color: var(--text-soft);
  padding: 18px 20px 20px;
}

.legal-document-end {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 0% 100%, rgba(67, 196, 149, 0.11), transparent 42%),
    #f7fbf8;
  padding: 26px 34px;
}

.legal-document-end .brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18, 148, 106, 0.2);
}

.legal-document-end > div {
  display: grid;
}

.legal-document-end span {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-document-end strong {
  margin-top: 2px;
  color: var(--text);
  font-size: 14px;
}

.legal-document-end > a {
  color: var(--accent);
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
}

.legal-footer {
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1040px) {
  .legal-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .legal-article-body {
    padding-right: 42px;
    padding-left: 42px;
  }
}

@media (max-width: 860px) {
  .legal-title-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .legal-page-icon {
    width: 86px;
    height: 86px;
    border-radius: 26px;
  }

  .legal-page-icon::before {
    width: 112px;
    height: 112px;
  }

  .legal-page-icon::after {
    width: 136px;
    height: 136px;
  }

  .legal-page-icon svg {
    width: 38px;
    height: 38px;
  }

  .legal-meta-bar {
    grid-template-columns: 1fr 1fr;
  }

  .legal-meta-bar > div:nth-child(2) {
    border-right: 0;
  }

  .legal-meta-wide {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .toc-links {
    max-height: 320px;
  }

  .legal-article-body {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 52px 0 34px;
  }

  .legal-breadcrumb {
    margin-bottom: 34px;
  }

  .legal-title-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-title-copy h1 {
    font-size: clamp(49px, 16vw, 70px);
  }

  .legal-title-copy p {
    font-size: 16px;
  }

  .legal-meta-bar {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .legal-meta-bar > div,
  .legal-meta-bar > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .legal-meta-bar > div:last-child {
    border-bottom: 0;
  }

  .legal-meta-wide {
    grid-column: auto;
    border-top: 0;
  }

  .legal-document-section {
    padding-top: 28px;
    padding-bottom: 76px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .toc-card {
    display: none;
  }

  .legal-article {
    border-radius: 24px;
  }

  .legal-article-top {
    padding: 18px 20px;
  }

  .document-home-link {
    display: none;
  }

  .legal-article-body {
    padding: 30px 22px 38px;
    font-size: 14px;
  }

  .legal-article-body .intro {
    padding: 21px 20px 21px 25px;
    font-size: 15px;
  }

  .legal-article-body h2 {
    margin-top: 42px;
    font-size: 21px;
  }

  .legal-article-body li {
    padding-right: 13px;
  }

  .legal-document-end {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .legal-document-end > a {
    grid-column: 1 / -1;
    margin-top: 3px;
  }
}

@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;
  }
}
