:root {
  --ink: #14201d;
  --muted: #65736f;
  --soft: #f1faf6;
  --paper: #ffffff;
  --line: rgba(27, 47, 42, .12);
  --mint: #19b99e;
  --mint-strong: #0b8f7a;
  --blue: #3f72f4;
  --coral: #f36f5c;
  --amber: #f2b94d;
  --shadow: 0 10px 18px rgba(25, 54, 47, .10);
  --shadow-hover: 0 14px 24px rgba(25, 54, 47, .14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #f6fffb 0%, #ffffff 44%, #f7faf8 100%);
}

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

button,
input,
select {
  font: inherit;
}

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

svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(25, 185, 158, .12), transparent 34%),
    linear-gradient(315deg, rgba(63, 114, 244, .09), transparent 38%);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(27, 47, 42, .08);
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(16px);
}

.brand,
.header-action,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.site-nav {
  justify-self: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(25, 185, 158, .11);
  transform: translateY(-1px);
}

.header-action {
  justify-self: end;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(25, 185, 158, .28);
  border-radius: 999px;
  color: var(--mint-strong);
  font-weight: 850;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(300px, 1fr);
  grid-template-areas:
    "copy visual"
    "panel visual";
  align-items: center;
  gap: 24px clamp(28px, 5vw, 70px);
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100dvh - 70px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 66px) clamp(18px, 4vw, 42px) 54px;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 38%, rgba(255,255,255,.22) 62%, rgba(255,255,255,0) 100%),
    url("/trial/assets/vpn-hero-light.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

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

.eyebrow,
.panel-label {
  margin: 0 0 12px;
  color: var(--mint-strong);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 610px;
  margin-bottom: 26px;
  color: #40504b;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.primary-link,
.ghost-link,
.primary-button,
.happ-button,
.telegram-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 14px;
  font-weight: 850;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.primary-link,
.primary-button,
.happ-button,
.telegram-button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: var(--shadow);
}

.primary-link,
.ghost-link {
  padding: 0 20px;
}

.ghost-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.primary-link:active,
.ghost-link:active,
.primary-button:active,
.happ-button:active,
.telegram-button:active {
  transform: scale(.98);
}

@media (hover: hover) {
  .primary-link:hover,
  .primary-button:hover,
  .happ-button:hover,
  .telegram-button:hover,
  .ghost-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
}

.hero-facts div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
}

.hero-facts dt {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-stage {
  display: none;
}

.hero-stage img {
  display: block;
  width: 100%;
  height: clamp(250px, 30vw, 360px);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform-origin: 50% 60%;
  animation: phone-float 6.5s ease-in-out infinite;
  transition: filter .3s ease, box-shadow .3s ease;
}

.phone-wow {
  cursor: pointer;
}

.phone-wow:hover .phone-visual,
.phone-wow:focus-visible .phone-visual {
  filter: saturate(1.06) contrast(1.02);
  box-shadow: var(--shadow-hover);
}

.phone-wow.is-vibrating .phone-visual {
  animation: phone-vibrate .42s ease-in-out;
}

.phone-aura,
.floating-badge {
  display: none;
}

.trial-panel {
  grid-area: panel;
  max-width: 520px;
  padding: 24px;
  scroll-margin-top: 96px;
}

.hero .trial-panel {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(25, 185, 158, .12), transparent 34%),
    rgba(255, 255, 255, .93);
}

.interactive-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(25, 185, 158, .10), transparent 32%),
    rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  overflow: hidden;
}

@media (hover: hover) {
  .interactive-card:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 185, 158, .24);
    box-shadow: var(--shadow-hover);
  }
}

.panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.08;
  text-wrap: balance;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #087464;
  font-size: 13px;
  font-weight: 850;
  background: rgba(25, 185, 158, .13);
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.panel-copy {
  position: relative;
  z-index: 1;
  margin: -4px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.trial-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hidden-field {
  position: fixed;
  inset: auto auto 0 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(27, 47, 42, .13);
  border-radius: 14px;
  color: var(--ink);
  outline: none;
  background: rgba(255, 255, 255, .92);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

input:focus,
select:focus {
  border-color: rgba(25, 185, 158, .70);
  box-shadow: 0 0 0 5px rgba(25, 185, 158, .13);
  transform: translateY(-1px);
}

.primary-button,
.happ-button,
.telegram-button {
  width: 100%;
}

.primary-button {
  margin-top: 6px;
}

.trial-note {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.key-output {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.key-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.key-meta strong {
  color: var(--coral);
}

.key-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(25, 185, 158, .25);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(235, 253, 248, .78);
}

.key-box code {
  min-width: 0;
  padding: 0 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0a7565;
  font-size: 14px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 58px;
  border: 0;
  border-left: 1px solid rgba(25, 185, 158, .22);
  color: var(--mint-strong);
  cursor: pointer;
  background: transparent;
}

.connect-guide {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(63, 114, 244, .08);
}

.connect-guide strong {
  display: block;
  margin-bottom: 7px;
}

.connect-guide ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.connect-guide a {
  color: var(--blue);
  font-weight: 800;
}

.happ-button {
  margin-top: 12px;
}

.happ-button[hidden] {
  display: none;
}

.telegram-button {
  margin-top: 8px;
}

.proof-strip,
.speed-band,
.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 0 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip article {
  padding: 4px 24px;
  border-right: 1px solid var(--line);
}

.proof-strip article:first-child {
  padding-left: 0;
}

.proof-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.speed-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: 58px 0 34px;
}

.speed-band h2 {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.speed-band p {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(25, 185, 158, .28);
  border-radius: 14px;
  color: var(--mint-strong);
  font-weight: 850;
  background: #fff;
  box-shadow: 0 6px 10px rgba(25, 54, 47, .08);
}

.speed-band ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.speed-band li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .80);
}

.speed-band li span,
.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.section-shell {
  padding-top: 42px;
  padding-bottom: 54px;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  text-wrap: balance;
}

.section-head p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.plans-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.plan-card,
.step-card,
.setup-card {
  padding: 22px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 176px;
  border: 1px solid var(--line);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.plan-card.featured {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(242, 185, 77, .18), transparent 35%),
    linear-gradient(135deg, rgba(255, 249, 235, .92), rgba(255,255,255,.88));
}

.plan-card.promo {
  border-color: rgba(242, 185, 77, .42);
}

.plan-card.vip {
  min-height: 214px;
  border-color: rgba(63, 114, 244, .62);
  color: #fff;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(102, 204, 255, .30), transparent 38%),
    linear-gradient(135deg, #13233d 0%, #1c4fd0 62%, #19b99e 100%);
  box-shadow: 0 18px 30px rgba(32, 74, 160, .22);
}

.plan-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.plan-badge.promo {
  color: #8a5d08;
  background: rgba(242, 185, 77, .22);
}

.plan-badge.vip {
  color: #15306a;
  background: rgba(255, 255, 255, .92);
}

.plan-card p,
.plan-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.plan-card p {
  margin-bottom: 0;
}

.plan-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 36px;
}

.plan-card.vip p,
.plan-card.vip span,
.plan-card.vip .plan-note {
  color: rgba(255, 255, 255, .82);
}

.plan-card.vip strong {
  color: #fff;
  font-size: 40px;
}

.plan-card.vip em {
  align-self: stretch;
  margin-top: 16px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #10231f;
  text-align: center;
  background: #fff;
}

.vip-tooltip {
  position: absolute;
  right: 18px;
  bottom: 64px;
  left: 18px;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 12px;
  color: #10231f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  background: rgba(255, 255, 255, .96);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.plan-card.vip:hover .vip-tooltip,
.plan-card.vip:focus-visible .vip-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.old-price {
  display: inline-block;
  margin-right: 10px;
  color: #8b9894;
  font-size: 20px;
  font-weight: 850;
  text-decoration: line-through;
}

.plan-note {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.plan-card em {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--mint-strong);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
  transition: transform .2s ease;
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 18px;
  padding: 24px;
  scroll-margin-top: 96px;
}

.payment-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.payment-copy p:not(.panel-label) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.payment-form {
  display: grid;
  gap: 14px;
}

.payment-warning {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid rgba(243, 111, 92, .24);
  border-radius: 14px;
  background: rgba(243, 111, 92, .07);
}

.payment-warning input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--mint-strong);
}

.payment-warning span {
  margin: 0;
  color: #6d3b32;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.payment-form .primary-button[disabled] {
  cursor: wait;
  opacity: .72;
}

.payment-status {
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.payment-status.is-visible {
  display: flex;
}

.payment-status.is-error {
  border: 1px solid rgba(243, 111, 92, .32);
  color: #74362d;
  background: rgba(243, 111, 92, .08);
}

.payment-status.is-success,
.payment-status.is-info {
  border: 1px solid rgba(25, 185, 158, .24);
  color: #106d5e;
  background: rgba(25, 185, 158, .08);
}

.payment-status a {
  flex: 0 0 auto;
  color: var(--mint-strong);
  text-decoration: none;
}

.plans-note {
  max-width: 720px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(25, 185, 158, .18);
  border-radius: 14px;
  color: var(--muted);
  line-height: 1.5;
  background: rgba(235, 253, 248, .66);
}

.plan-card:hover em {
  transform: translateX(4px);
}

.step-card strong,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.setup-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.setup-card a {
  color: var(--mint-strong);
  font-weight: 750;
}

.faq-section {
  padding-top: 20px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 6px 10px rgba(25, 54, 47, .06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--mint-strong);
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 10px auto 54px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(25, 185, 158, .20);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 20%, rgba(25, 185, 158, .18), transparent 32%),
    #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.final-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.home-footer span {
  color: var(--ink);
  font-weight: 850;
}

.home-footer a {
  color: var(--mint-strong);
  font-weight: 750;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 13px 16px;
  border: 1px solid rgba(25, 185, 158, .28);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

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

.magnetic {
  will-change: transform;
}

@keyframes phone-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  35% {
    transform: translate3d(0, -10px, 0) rotateX(1.2deg) rotateY(-1.2deg);
  }
  70% {
    transform: translate3d(0, -4px, 0) rotateX(-.8deg) rotateY(1.2deg);
  }
}

@keyframes phone-vibrate {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  18% { transform: translate3d(-4px, 1px, 0) rotate(-.6deg); }
  36% { transform: translate3d(4px, -1px, 0) rotate(.6deg); }
  54% { transform: translate3d(-3px, 0, 0) rotate(-.4deg); }
  72% { transform: translate3d(3px, 1px, 0) rotate(.4deg); }
}

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

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "panel";
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.90) 48%, rgba(255,255,255,.62) 100%),
      url("/trial/assets/vpn-hero-light.png");
    background-position: 62% center;
  }

  .trial-panel {
    max-width: none;
  }

  .proof-strip,
  .speed-band,
  .plans-grid,
  .steps-grid,
  .payment-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .proof-strip article,
  .proof-strip article:first-child,
  .proof-strip article:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand {
    font-size: 15px;
  }

  .header-action span {
    display: none;
  }

  .header-action {
    width: 42px;
    min-height: 42px;
    justify-content: center;
    padding: 0;
  }

  .hero,
  .proof-strip,
  .speed-band,
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 42px;
    background-position: 66% top;
  }

  h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .lead {
    font-size: 18px;
  }

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

  .hero-facts div {
    min-height: 92px;
  }

  .trial-panel {
    padding: 18px;
  }

  .panel-head {
    display: block;
  }

  .status-pill {
    margin-top: 10px;
  }

  .primary-link,
  .ghost-link,
  .final-actions {
    width: 100%;
  }

  .final-actions .primary-link,
  .final-actions .ghost-link {
    width: 100%;
  }

  .speed-band {
    padding-top: 42px;
  }

  .home-footer {
    display: grid;
  }
}
