/* Independent v2 composition. Does not touch the preserved first landing. */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 650;
}
h1,
h2 {
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(40px, 3.55vw, 56px);
  line-height: 1.13;
}
h2 > span {
  color: #64816c;
}
h3 {
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}
p {
  text-wrap: pretty;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--forest);
}
.wrap {
  width: min(var(--container), calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: var(--space-section);
}
.icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
}
.eyebrow__line {
  width: 25px;
  height: 2px;
  background: var(--coral);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 24px;
  min-height: 57px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  transition:
    transform 0.22s var(--ease-out),
    background 0.22s,
    box-shadow 0.22s;
}
.button:hover {
  transform: translateY(-3px);
}
.button:active {
  transform: translateY(0);
}
.button .icon:last-child {
  width: 20px;
  transition: transform 0.2s;
}
.button:hover .icon:last-child {
  transform: translateX(3px);
}
.button--coral {
  background: var(--coral-action);
  color: var(--white);
}
.button--coral:hover {
  background: #a73323;
  box-shadow: 0 8px 22px #832f2520;
}
.button--outline {
  border-color: #48664c65;
  background: transparent;
}
.button--outline:hover {
  background: #f7f6ef70;
}
.button--small {
  padding: 11px 16px;
  font-size: 12px;
  min-height: 44px;
}
.button--lime {
  background: var(--lime);
  color: var(--forest);
}
.button--lime:hover {
  background: #ebf4c4;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-block: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.text-link:hover {
  color: var(--coral-action);
}
.text-link:hover .icon {
  transform: translateX(3px);
}
.small-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-aside {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 355px;
  padding-bottom: 3px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 16px;
  background: var(--forest);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/* The panorama is the entire first viewport. */
.header {
  background: linear-gradient(180deg, #f7f6efef, #f7f6efba);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.header.is-scrolled {
  position: fixed;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  font: 800 28px/1 var(--font-heading);
  letter-spacing: -0.055em;
}
.brand__vpn {
  font: 600 10px/1 var(--font-body);
  letter-spacing: 0.02em;
  margin-left: 7px;
}
.header nav {
  display: flex;
  gap: 29px;
  font-size: 12px;
}
.header nav a {
  text-decoration: none;
  padding-block: 8px;
  position: relative;
}
.header nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral-action);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.header nav a:hover::after {
  transform: scaleX(1);
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 800px;
  height: 100svh;
  max-height: 1120px;
  overflow: hidden;
  background: #eae9d2;
}
.hero__painting {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero__wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(247, 246, 239, 0.82) 0%,
      rgba(247, 246, 239, 0.66) 25%,
      rgba(247, 246, 239, 0.16) 51%,
      transparent 67%
    ),
    linear-gradient(0deg, rgba(14, 34, 23, 0.48), transparent 17%);
  transition: opacity 0.7s;
}
.hero__inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 130px 135px;
}
.hero__copy {
  max-width: 700px;
  transition:
    opacity 0.45s,
    transform 0.6s;
}
.hero h1 {
  font-size: clamp(68px, 6.1vw, 102px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero h1 > span {
  color: var(--coral-action);
}
.hero__description {
  margin-top: 29px;
  font-size: 14px;
  line-height: 1.85;
  color: #344d3e;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}
.hero__note {
  font-size: 11px;
  margin-top: 16px;
  color: #3f5646;
}
.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fffef3;
}
.scroll-cue {
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  text-decoration: none;
}
.scroll-cue > span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid #203e3480;
  border-radius: 50%;
  font-size: 17px;
}
.painting-note {
  font-size: 10px;
  letter-spacing: 0.08em;
}
.painting-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fffef3;
  border: 1px solid #fffef380;
  background: #203e3460;
  border-radius: 5px;
  padding: 10px 13px;
  font-size: 10px;
}
.painting-toggle .icon {
  width: 16px;
  height: 16px;
}
.painting-toggle:hover {
  background: var(--forest);
}
.trial-bar {
  background: var(--forest);
  color: var(--paper);
}
.trial-bar__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.3fr 1fr 0.8fr;
  align-items: center;
  gap: 28px;
  padding-block: 30px;
}
.trial-bar p {
  font-size: 12px;
  color: #d1dccd;
}
.trial-bar__inner > div {
  border-left: 1px solid #79957d55;
  padding-left: 35px;
  display: flex;
  flex-direction: column;
}
.trial-bar strong {
  font: 600 31px/1.3 var(--font-heading);
  letter-spacing: -0.06em;
}
.trial-bar strong span {
  font-size: 19px;
  letter-spacing: -0.03em;
}
.trial-bar__inner > div > span {
  font-size: 10px;
  color: #bfceb9;
  margin-top: 5px;
}
.trial-bar .text-link {
  font-size: 11px;
  justify-content: flex-end;
}
.trial-bar .text-link:hover {
  color: var(--lime);
}
/* Clear product information alternates with story scenes. */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.benefit__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest);
  margin-bottom: 29px;
}
.benefit__top > .icon {
  width: 28px;
  height: 28px;
}
.benefit__top > span {
  font-size: 10px;
  color: var(--muted);
}
.benefit h3 {
  margin-bottom: 18px;
}
.benefit p {
  max-width: 340px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}
.benefit__foot {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding-top: 26px;
  margin-top: auto;
  color: #5c735d;
}
.journey {
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--forest);
  color: var(--paper);
}
.journey__painting {
  position: relative;
  min-height: 630px;
  overflow: hidden;
}
.journey__painting img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.scene-caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.035em;
  padding: 9px 13px;
  border-radius: 5px;
  background: var(--paper);
  color: var(--forest);
}
.journey__content {
  padding: 66px clamp(32px, 4vw, 74px);
  align-self: center;
}
.journey h2 {
  font-size: clamp(30px, 2.8vw, 43px);
  letter-spacing: -0.055em;
  line-height: 1.2;
}
.journey .eyebrow {
  color: #c3d4b4;
  font-size: 9px;
}
.journey__content > p:not(.eyebrow):not(.small-note) {
  font-size: 13px;
  line-height: 1.85;
  color: #c5d2c0;
  margin-top: 22px;
  max-width: 425px;
}
.route-switch {
  display: flex;
  padding: 4px;
  background: var(--forest-deep);
  border-radius: 6px;
  margin-top: 27px;
  gap: 3px;
}
.route-switch button {
  flex: 1;
  border: 0;
  background: transparent;
  color: #cdd8c5;
  font-size: 10px;
  border-radius: 4px;
  padding: 12px 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.route-switch button[aria-pressed="true"] {
  background: var(--lime);
  color: var(--forest);
}
.route-map {
  padding-top: 37px;
}
.route-nodes {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  padding-inline: 7px;
}
.route-node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  flex-shrink: 0;
  border: 1px solid #839b7c88;
  border-radius: 12px;
}
.route-node > span {
  position: absolute;
  top: 65px;
  white-space: nowrap;
  font-size: 10px;
  color: #c3d2b9;
}
.route-node--vpn {
  background: var(--lime);
  border-color: var(--lime);
  transition:
    opacity 0.3s,
    background 0.3s;
}
.route-line {
  position: relative;
  height: 1px;
  background: #93ac82;
  flex: 1;
  margin: 0 10px;
}
.route-line::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  top: -2px;
  left: 0;
  animation: travel 3s linear infinite;
}
.route-map[data-active-route="direct"] .route-node--vpn {
  opacity: 0.35;
  background: transparent;
  border-style: dashed;
}
.route-map[data-active-route="direct"] .route-node--vpn::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: #deebaa;
  transform: rotate(-45deg);
}
.route-status {
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.status-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--lime);
}
.journey .small-note {
  font-size: 10px;
  color: #b8cbb0;
  margin-top: 15px;
  max-width: 415px;
  text-align: center;
}
@keyframes travel {
  from {
    left: 0;
    opacity: 0;
  }
  15%,
  85% {
    opacity: 1;
  }
  to {
    left: 95%;
    opacity: 0;
  }
}
/* Device-aware onboarding stays on the landing. */
.platform-select > p,
.pricing-intro > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 17px;
}
.platform-switch,
.period-switch {
  display: flex;
  padding: 5px;
  gap: 3px;
  border-radius: 8px;
  background: #e3e8db;
}
.platform-switch button,
.period-switch button {
  background: transparent;
  border: 0;
  color: #536550;
  padding: 12px 17px;
  font-size: 11px;
  border-radius: 5px;
  transition:
    background 0.2s,
    color 0.2s;
}
.platform-switch button[aria-pressed="true"],
.period-switch button[aria-pressed="true"] {
  background: var(--forest);
  color: var(--paper);
}
.platform-switch button:hover,
.period-switch button:hover {
  box-shadow: inset 0 0 0 1px #6b806355;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  display: flex;
  flex-direction: column;
}
.step__visual {
  height: 167px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
  overflow: hidden;
}
.visual--telegram {
  background: #e4ebdf;
}
.visual--app {
  background: var(--sand);
}
.visual--power {
  background: #e5ebcc;
}
.step__number {
  position: absolute;
  top: 15px;
  left: 17px;
  font-size: 10px;
  color: #52634e;
}
.step__visual > .icon {
  width: 65px;
  height: 65px;
  stroke-width: 1;
  transform: rotate(-13deg) translate(-20px, -7px);
  transition: transform 0.4s;
}
.step:hover .step__visual > .icon {
  transform: rotate(-1deg) translate(-15px, -15px);
}
.step__chip {
  position: absolute;
  top: 55%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 9px 14px;
  white-space: nowrap;
  background: var(--paper);
  box-shadow: 0 5px 13px #203e3418;
  font-size: 11px;
  border-radius: 5px;
  transform: rotate(-7deg);
  transition: transform 0.35s;
}
.step__chip .icon {
  width: 14px;
  height: 14px;
}
.step:hover .step__chip {
  transform: rotate(0deg) translateY(-4px);
}
.app-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #242b25;
  color: var(--paper);
  font: 800 35px/1 var(--font-heading);
  transform: rotate(-9deg) translateX(-15px);
}
.power-icon {
  display: grid;
  place-items: center;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--lime);
  transform: translateX(-20px);
  box-shadow:
    0 0 0 10px #203e3407,
    0 0 0 20px #203e3404;
}
.power-icon .icon {
  width: 29px;
  height: 29px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 13px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  min-height: 96px;
}
.step > .text-link {
  margin-top: auto;
  padding-top: 16px;
  align-self: flex-start;
  font-size: 11px;
}
.honest-note {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 42px;
}
.honest-note .icon {
  color: var(--coral-action);
}
.honest-note p {
  font-size: 11px;
  color: var(--muted);
  max-width: 1050px;
}
.honest-note b {
  color: var(--forest);
}
/* Original tariff renderer, unchanged prices and destinations. */
.pricing {
  background: var(--sage);
}
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  min-height: 294px;
}
.tariff {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #d1dacb;
  background: var(--paper);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.tariff:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px #203e3410;
}
.tariff__tag {
  font-size: 9px;
  min-height: 29px;
  color: #c5d8b4;
}
.tariff h3 {
  font: 600 16px/1.5 var(--font-body);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.tariff__price {
  font: 650 clamp(31px, 2.8vw, 44px)/1.2 var(--font-heading);
  letter-spacing: -0.07em;
  white-space: nowrap;
}
.tariff__details {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0 29px;
  min-height: 19px;
}
.tariff .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #c8d3bf;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.2s;
}
.tariff .btn::after {
  content: "↗";
  font-size: 20px;
}
.tariff .btn:hover {
  background: #e2e9d9;
}
.tariff--featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}
.tariff--featured .tariff__details {
  color: #c4d2bd;
}
.tariff--featured .btn {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
}
.tariff--featured .btn:hover {
  background: #eff5d2;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 25px;
}
.payment-row > p {
  font-size: 11px;
  color: var(--muted);
}
.payment-methods {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 10px;
}
.payment-methods > span::before {
  content: "✓";
  margin-right: 7px;
}
.pricing .small-note {
  font-size: 10px;
  margin-top: 15px;
}
/* A dedicated, readable comparison, not a hidden accordion. */
.compare-scroll-hint {
  display: none;
}
.compare-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
  line-height: 1.55;
}
.compare th,
.compare td {
  text-align: left;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare thead th {
  font-size: 18px;
  font-weight: 600;
  padding-block: 28px;
}
.compare thead th:first-child {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 25%;
}
.compare th:nth-child(2),
.compare td:nth-child(2) {
  background: #e8efdc;
}
.compare tbody th {
  font-size: 14px;
  font-weight: 600;
}
.compare tbody td:last-child {
  color: var(--muted);
}
.compare tbody tr:last-child > * {
  border-bottom: 0;
}
.compare-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}
.table-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cfddbb;
  margin-right: 9px;
  font-size: 12px;
}
.compare-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  margin-top: 24px;
}
.compare-foot > p {
  font-size: 12px;
  color: var(--muted);
  max-width: 690px;
}
.compare-foot .text-link {
  white-space: nowrap;
}
/* The fellowship is both a story beat and the referral programme. */
.fellowship {
  display: grid;
  grid-template-columns: 60% 40%;
  background: var(--forest-deep);
  color: var(--paper);
}
.fellowship__art {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  align-self: start;
  overflow: hidden;
}
.fellowship__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--forest-deep);
  object-position: right center;
  transform: scale(1.1);
  transform-origin: right center;
}
.fellowship__copy {
  padding: 44px clamp(28px, 3.5vw, 58px);
  align-self: center;
}
.fellowship h2 {
  font-size: clamp(38px, 3.1vw, 49px);
}
.fellowship h2 > span {
  color: var(--lime);
}
.fellowship .eyebrow {
  color: #c2d4b5;
  font-size: 9px;
}
.fellowship__copy > p:not(.eyebrow):not(.small-note) {
  font-size: 13px;
  line-height: 1.9;
  color: #c1d0ba;
  margin-top: 22px;
}
.referral-reward {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #88a48044;
}
.referral-reward strong {
  font: 600 82px/1.05 var(--font-heading);
  color: var(--lime);
  letter-spacing: -0.08em;
}
.referral-reward strong > span {
  font-size: 45px;
  margin-left: 3px;
}
.referral-reward p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper);
}
.referral-steps {
  padding-left: 19px;
  font-size: 11px;
  color: #ccd9c4;
  line-height: 1.7;
  margin: 22px 0;
}
.referral-steps li {
  padding-left: 4px;
  margin-bottom: 8px;
}
.fellowship .button {
  min-height: 51px;
  padding: 14px 21px;
  font-size: 12px;
}
.fellowship .small-note {
  font-size: 10px;
  color: #b5c7a9;
  margin-top: 17px;
  max-width: 395px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 23px;
}
.faq-intro > .text-link {
  margin-top: 17px;
}
.help-note {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 28px;
  width: fit-content;
}
.help-note .icon {
  color: #627761;
}
.help-note p {
  font-size: 10px;
  color: var(--muted);
}
.faq {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding-block: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 400;
  color: var(--coral-action);
  transition: transform 0.25s;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq summary:hover {
  color: var(--coral-action);
}
.faq details > p {
  padding: 0 30px 23px 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.quiet {
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--sage);
}
.quiet__copy {
  padding: 90px 45px 90px max(56px, calc((100vw - 1280px) / 2));
  align-self: center;
}
.quiet h2 {
  font-size: clamp(42px, 4.1vw, 64px);
}
.quiet__copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 26px;
  line-height: 1.9;
}
.quiet .button {
  margin-top: 29px;
  font-size: 12px;
  padding-inline: 20px;
}
.quiet__cabinet {
  display: block;
  width: fit-content;
  font-size: 11px;
  margin-top: 17px;
}
.quiet__art {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}
.quiet__art img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 65% center;
}
.footer {
  background: var(--forest);
  color: var(--paper);
  padding: 60px 0 22px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1.15fr;
  gap: 40px;
  padding-bottom: 45px;
}
.footer__tagline {
  font-size: 11px;
  color: #bacbb2;
  margin-top: 16px;
}
.footer__links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.footer__links h3 {
  font: 600 9px/1.6 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d9e4cd;
  margin-bottom: 8px;
}
.footer__links a {
  font-size: 11px;
  color: #bacbb2;
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--lime);
}
.footer__bottom {
  border-top: 1px solid #ffffff20;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 9px;
  color: #becbb5;
}
.footer__bottom a {
  text-decoration: none;
}
.review-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid #ffffff15;
  font-size: 9px;
  color: #c0cfb7;
}
.review-links > span {
  margin-right: auto;
  letter-spacing: 0.06em;
}
.review-links a {
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.65s ease,
      transform 0.65s var(--ease-out);
  }
  .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1700px) {
  .hero__copy {
    max-width: 760px;
  }
  .hero__description {
    font-size: 16px;
  }
  .hero__wash {
    background:
      linear-gradient(
        90deg,
        rgba(247, 246, 239, 0.72),
        rgba(247, 246, 239, 0.42) 31%,
        transparent 61%
      ),
      linear-gradient(0deg, rgba(14, 34, 23, 0.48), transparent 17%);
  }
  .journey__content,
  .fellowship__copy {
    padding-right: max(74px, calc((100vw - 1440px) / 2));
  }
  .journey__painting {
    min-height: 700px;
  }
  .fellowship__art {
    min-height: 750px;
  }
  .quiet__art {
    min-height: 650px;
  }
}
@media (max-width: 1200px) and (min-width: 761px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 6.3vw;
  }
  .hero__copy {
    max-width: 600px;
  }
  .header nav {
    gap: 20px;
    font-size: 11px;
  }
  .hero__description {
    font-size: 13px;
  }
  .hero__actions {
    gap: 18px;
  }
  .hero__actions .button {
    font-size: 12px;
    padding-inline: 17px;
  }
  .journey,
  .fellowship {
    grid-template-columns: 51% 49%;
  }
  .journey__content,
  .fellowship__copy {
    padding: 48px 32px;
  }
  .journey h2 {
    font-size: 31px;
  }
  .benefits {
    gap: 28px;
  }
  .benefit h3 {
    font-size: 21px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-aside {
    font-size: 11px;
  }
  .tariff {
    padding: 20px 17px;
  }
  .tariff__tag {
    font-size: 8px;
  }
  .tariff__price {
    font-size: 34px;
  }
  .compare th,
  .compare td {
    padding: 21px 19px;
  }
  .quiet__copy {
    padding-left: 36px;
  }
  .quiet h2 {
    font-size: 43px;
  }
  .quiet .button {
    font-size: 11px;
    padding: 16px;
  }
  .fellowship h2 {
    font-size: 44px;
  }
  .footer__top {
    gap: 25px;
  }
}
/* Basic narrow screen fallback, preserving the desktop art direction. */
@media (max-width: 760px) {
  :root {
    --space-section: 65px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  html {
    scroll-padding-top: 80px;
  }
  .header__inner {
    height: 76px;
    gap: 10px;
  }
  .brand {
    font-size: 25px;
    gap: 5px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .brand__vpn {
    font-size: 9px;
  }
  .header nav {
    display: none;
  }
  .header .button {
    font-size: 9px;
    min-height: 38px;
    padding: 9px 10px;
    gap: 6px;
  }
  .header .button .icon {
    width: 14px;
  }
  .hero {
    height: 1080px;
    min-height: 1080px;
    max-height: none;
  }
  .hero__painting {
    object-position: 75% bottom;
    height: 40%;
    top: auto;
    bottom: 0;
  }
  .hero__wash {
    background:
      linear-gradient(
        180deg,
        #f7f6ef 0%,
        #f7f6ef 48%,
        #f7f6efdd 59%,
        #f7f6ef00 78%
      ),
      linear-gradient(0deg, #142d2190, transparent 15%);
  }
  .hero__inner {
    align-items: flex-start;
    padding-top: 119px;
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(46px, 11.5vw, 72px);
    line-height: 1.08;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
  }
  .hero__description {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 25px;
  }
  .hero__description br {
    display: none;
  }
  .hero__actions {
    flex-wrap: wrap;
    gap: 10px 17px;
    margin-top: 23px;
  }
  .hero__actions .button {
    font-size: 11px;
    padding: 15px 17px;
    min-height: 50px;
  }
  .hero__actions .text-link {
    font-size: 10px;
  }
  .hero__note {
    font-size: 9px;
  }
  .hero__bottom {
    bottom: 23px;
    gap: 10px;
  }
  .painting-note {
    display: none;
  }
  .scroll-cue {
    font-size: 9px;
    gap: 8px;
  }
  .scroll-cue > span {
    width: 27px;
    height: 27px;
  }
  .painting-toggle {
    font-size: 8px;
    padding: 9px;
    gap: 6px;
  }
  .painting-toggle .icon {
    width: 14px;
  }
  .trial-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 10px;
    padding-block: 25px;
  }
  .trial-bar p {
    grid-column: 1/3;
    font-size: 11px;
  }
  .trial-bar .text-link {
    grid-column: 3;
    grid-row: 1;
    font-size: 9px;
    gap: 6px;
  }
  .trial-bar__inner > div {
    padding-left: 12px;
  }
  .trial-bar strong {
    font-size: 25px;
  }
  .trial-bar strong span {
    font-size: 14px;
  }
  .trial-bar__inner > div > span {
    font-size: 8px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 33px;
  }
  h2 {
    font-size: clamp(31px, 8.1vw, 44px);
    letter-spacing: -0.055em;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
  }
  .section-aside {
    font-size: 12px;
  }
  .benefits,
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefit h3 {
    font-size: 22px;
  }
  .benefit p {
    max-width: none;
  }
  .benefit__top {
    margin-bottom: 20px;
  }
  .benefit__foot {
    padding-top: 18px;
    font-size: 9px;
  }
  .journey,
  .fellowship,
  .quiet {
    grid-template-columns: 1fr;
  }
  .journey__painting {
    min-height: 370px;
  }
  .journey__painting img {
    object-position: 60% center;
  }
  .scene-caption {
    font-size: 8px;
    bottom: 16px;
    left: 17px;
    padding: 8px 10px;
  }
  .journey__content,
  .fellowship__copy {
    padding: 39px 25px 45px;
  }
  .journey h2 {
    font-size: 31px;
  }
  .journey__content > p:not(.eyebrow):not(.small-note) {
    font-size: 12px;
  }
  .route-switch button {
    font-size: 9px;
    padding-inline: 6px;
  }
  .platform-select {
    width: 100%;
  }
  .platform-select > p,
  .pricing-intro > p {
    font-size: 12px;
  }
  .platform-switch,
  .period-switch {
    width: 100%;
  }
  .platform-switch button,
  .period-switch button {
    flex: 1;
    padding: 11px 8px;
    font-size: 10px;
  }
  .step__visual {
    height: 150px;
    margin-bottom: 20px;
  }
  .step h3 {
    font-size: 22px;
  }
  .step p {
    min-height: 0;
  }
  .honest-note {
    align-items: flex-start;
    gap: 12px;
  }
  .honest-note p {
    font-size: 10px;
  }
  .pricing-intro {
    width: 100%;
  }
  .tariff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    min-height: 560px;
  }
  .tariff {
    padding: 18px 13px;
  }
  .tariff__tag {
    font-size: 8px;
    min-height: 37px;
  }
  .tariff h3 {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .tariff__price {
    font-size: 29px;
  }
  .tariff__details {
    font-size: 9px;
    min-height: 30px;
  }
  .tariff .btn {
    font-size: 11px;
    padding: 11px;
  }
  .payment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .payment-methods {
    gap: 11px;
    font-size: 9px;
  }
  .compare th,
  .compare td {
    padding: 18px 20px;
  }
  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-scroll-hint {
    display: block;
    margin: -12px 0 12px;
    color: var(--muted);
    font-size: 11px;
  }
  .compare table {
    min-width: 860px;
    font-size: 13px;
    line-height: 1.6;
  }
  .compare thead th {
    font-size: 16px;
    padding-block: 18px;
  }
  .compare thead th:first-child {
    font-size: 11px;
    width: 25%;
    letter-spacing: 0.06em;
  }
  .compare-brand {
    gap: 8px;
  }
  .compare-brand img {
    width: 27px;
    height: 27px;
  }
  .compare tbody th {
    font-size: 13px;
  }
  .compare-foot {
    flex-direction: column;
    gap: 15px;
  }
  .compare-foot > p {
    font-size: 10px;
  }
  .fellowship__art {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .fellowship__art img {
    object-position: center;
    transform: none;
  }
  .fellowship h2 {
    font-size: 41px;
  }
  .referral-reward strong {
    font-size: 76px;
  }
  .fellowship__copy > p:not(.eyebrow):not(.small-note) {
    font-size: 12px;
  }
  .referral-steps {
    font-size: 11px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq {
    margin-top: 0;
  }
  .faq summary {
    font-size: 12px;
    padding-block: 22px;
  }
  .faq details > p {
    font-size: 11px;
  }
  .quiet__copy {
    padding: 56px 25px;
  }
  .quiet h2 {
    font-size: 39px;
  }
  .quiet__art {
    min-height: 420px;
  }
  .quiet__art img {
    object-position: 65% center;
  }
  .quiet .button {
    font-size: 11px;
    padding: 16px 18px;
  }
  .footer {
    padding-top: 42px;
  }
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 29px 18px;
  }
  .footer__top > div:first-child {
    grid-column: 1/-1;
  }
  .footer__links:last-child {
    grid-column: 1/-1;
  }
  .footer__bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 8px;
  }
  .footer__bottom p {
    order: 3;
    width: 100%;
  }
  .footer__bottom a {
    margin-left: auto;
  }
  .review-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 8px;
    gap: 12px;
  }
  .review-links > span {
    width: 100%;
  }

  /* Mobile is the primary reading surface: 14 px for content, 12 px for labels. */
  .header .button,
  .brand__vpn,
  .eyebrow,
  .hero__note,
  .scroll-cue,
  .painting-toggle,
  .trial-bar .text-link,
  .trial-bar__inner > div > span,
  .benefit__foot,
  .scene-caption,
  .route-switch button,
  .step__chip,
  .tariff__tag,
  .payment-methods,
  .small-note,
  .help-note p,
  .footer__bottom,
  .review-links {
    font-size: 12px;
  }
  .hero__description,
  .trial-bar p,
  .benefit p,
  .journey__content > p:not(.eyebrow):not(.small-note),
  .platform-select > p,
  .pricing-intro > p,
  .step p,
  .honest-note p,
  .tariff h3,
  .tariff__details,
  .payment-row > p,
  .compare-foot > p,
  .fellowship__copy > p:not(.eyebrow):not(.small-note),
  .referral-steps,
  .faq summary,
  .faq details > p,
  .faq-intro > p:not(.eyebrow),
  .footer__links a,
  .footer__tagline,
  .quiet__copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .button,
  .text-link,
  .tariff .btn {
    font-size: 14px;
  }
  .hero .eyebrow,
  .eyebrow {
    font-size: 12px;
  }
  .hero__actions .button {
    min-height: 54px;
    font-size: 14px;
  }
  .hero__actions .text-link {
    font-size: 14px;
  }
  .hero__note {
    line-height: 1.55;
  }
  .trial-bar p,
  .trial-bar .text-link {
    line-height: 1.45;
  }
  .trial-bar__inner > div > span {
    line-height: 1.35;
  }
  .route-node > span {
    font-size: 12px;
  }
  .route-status {
    font-size: 14px;
  }
  .tariff__tag {
    min-height: 44px;
    line-height: 1.4;
  }
  .tariff__details {
    min-height: 38px;
  }
  .footer__links h3 {
    font-size: 12px;
  }
  .hero .eyebrow,
  .journey .eyebrow,
  .fellowship .eyebrow {
    font-size: 12px;
  }
  .route-switch button,
  .platform-switch button,
  .period-switch button,
  .step > .text-link,
  .quiet .button,
  .quiet__cabinet,
  .art-open {
    font-size: 12px;
  }
  .fellowship .small-note,
  .pricing .small-note,
  .journey .small-note,
  .route-disclaimer {
    font-size: 12px;
  }
  .benefit__top > span,
  .step__number {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
