/* ============================================================
   Yggdrasil NG — landing page
   Design system: organic / calm / trustworthy
   ============================================================ */

:root {
  /* brand */
  --green-1: #43B18F;
  --green-2: #56DCA7;
  --green-deep: #2C8568;
  --green-ink: #1E6A52;
  --grad: linear-gradient(135deg, #43B18F 0%, #56DCA7 100%);
  --grad-soft: linear-gradient(135deg, #4cbf9a 0%, #62e3b1 100%);

  /* neutrals (cool-lavender, pulled from the app bg) */
  --bg: #FAF8FD;
  --bg-2: #F2EEFA;
  --surface: #FFFFFF;
  --lav: #ECE6F7;
  --lav-line: #E2DAF1;

  --ink: #15201B;
  --ink-2: #38463F;
  --muted: #6A766F;
  --faint: #97A09A;

  /* type */
  --display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* shape */
  --r-sm: 5px;
  --r: 8px;
  --r-lg: 12px;
  --r-xl: 17px;
  --shadow-sm: 0 2px 8px rgba(30, 60, 48, 0.06);
  --shadow: 0 18px 50px -22px rgba(33, 84, 64, 0.30);
  --shadow-lg: 0 40px 90px -38px rgba(33, 84, 64, 0.42);
  --ring: 0 0 0 1px var(--lav-line);

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.mono { font-family: var(--mono); }

section { position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--green-1);
  display: inline-block;
}

.lead {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ink-2);
  line-height: 1.62;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 15px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 8px;
  padding: var(--pad-y) 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(67, 177, 143, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(67, 177, 143, 0.78); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--ring), var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--green-1), 0 14px 30px -16px rgba(33,84,64,.5); color: var(--green-deep); }
.btn-block { width: 100%; }
.btn-lg { --pad-y: 18px; font-size: 16.5px; padding-inline: 32px; }

/* ============================================================
   Header
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--lav-line); }
.nav-inner {
  display: flex; align-items: center; gap: 22px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand img { width: 40px; height: 40px; flex: none; }
.brand > span { white-space: nowrap; line-height: 1.05; }
.brand small { display:block; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--faint); font-weight: 500; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--green-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* language toggle */
.lang {
  display: inline-flex; align-items: center;
  background: var(--lav); border-radius: 7px; padding: 3px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
}
.lang button {
  border: none; background: transparent; cursor: pointer;
  color: var(--muted); padding: 6px 11px; border-radius: 5px;
  letter-spacing: .05em; transition: all .2s;
}
.lang button.on { background: var(--surface); color: var(--green-deep); box-shadow: var(--shadow-sm); }

.nav-burger { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  margin-top: 22px;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { margin-top: 24px; max-width: 33em; font-size: clamp(17px, 1.7vw, 19.5px); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 13.5px; color: var(--muted); font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-1); }

/* phone */
.phone-stage { position: relative; display: flex; justify-content: center; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(56px); opacity: .55; z-index: 0; pointer-events: none;
}
.blob-a { width: 360px; height: 360px; background: #7ce9c0; top: -40px; right: -30px; }
.blob-b { width: 300px; height: 300px; background: #c9b6f0; bottom: -30px; left: -40px; opacity: .4; }

.phone {
  position: relative; z-index: 2;
  width: clamp(230px, 27vw, 300px);
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(160deg, #2a3a33, #16201b);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.phone-screen { border-radius: 15px; overflow: hidden; background: #F4F0FB; aspect-ratio: 1080 / 2400; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-float {
  position: absolute; z-index: 3;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 14px;
}
.phone-float .ico { width: 34px; height: 34px; border-radius: 5px; background: var(--grad); display: grid; place-items: center; color: #fff; flex: none; }
.phone-float .ico svg { width: 18px; height: 18px; }
.phone-float small { display: block; font-weight: 600; font-size: 11.5px; color: var(--muted); }
.float-1 { left: -7%; top: 20%; }
.float-2 { right: -10%; bottom: 16%; }

/* peer ticker line in float */
.float-2 b { font-family: var(--mono); color: var(--green-deep); }

/* ============================================================
   Logos / trust strip
   ============================================================ */
.strip { padding: 22px 0 6px; }
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px;
  justify-content: center;
  border-top: 1px solid var(--lav-line);
  border-bottom: 1px solid var(--lav-line);
  padding: 20px 0;
}
.strip-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.strip-item svg { width: 17px; height: 17px; color: var(--green-1); }

/* ============================================================
   Section header
   ============================================================ */
.sec { padding: clamp(64px, 9vw, 120px) 0; }
.sec-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 48px); margin-top: 18px; }
.sec-head p { margin-top: 18px; }

/* ============================================================
   Why — feature cards
   ============================================================ */
.why { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.fcard {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  box-shadow: var(--ring), var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--ring), var(--shadow); }
.fcard .fico {
  width: 50px; height: 50px; border-radius: 7px;
  background: var(--bg-2); color: var(--green-deep);
  display: grid; place-items: center; margin-bottom: 20px;
}
.fcard .fico svg { width: 25px; height: 25px; }
.fcard h3 { font-size: 19px; letter-spacing: -0.015em; }
.fcard p { margin-top: 9px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* explainer band */
.explain {
  margin-bottom: 26px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--ring), var(--shadow-sm);
  padding: clamp(28px, 4vw, 46px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 4vw, 46px);
  align-items: center;
}
.explain .leaf-badge {
  width: 96px; height: 96px;
  display: grid; place-items: center; flex: none;
}
.explain .leaf-badge img { width: 96px; height: 96px; }
.explain h3 { font-size: clamp(21px, 2.6vw, 27px); }
.explain p { margin-top: 12px; color: var(--ink-2); font-size: 16.5px; }
.explain .mono-term { color: var(--green-deep); font-family: var(--mono); font-size: .92em; }

/* ============================================================
   App features (alternating)
   ============================================================ */
.features { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px) 0;
}
.feat-row + .feat-row { border-top: 1px solid var(--lav-line); }
.feat-row.flip .feat-media { order: 2; }
.feat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--green-deep); background: var(--surface);
  padding: 6px 13px; border-radius: 6px; box-shadow: var(--ring);
  letter-spacing: .04em;
}
.feat-text h3 { font-size: clamp(24px, 3.2vw, 34px); margin-top: 18px; }
.feat-text p { margin-top: 14px; color: var(--ink-2); }
.feat-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.feat-list li svg { width: 20px; height: 20px; color: var(--green-1); flex: none; margin-top: 1px; }

.feat-media { display: flex; justify-content: center; }
.feat-phone {
  width: clamp(220px, 26vw, 280px);
  border-radius: 18px; padding: 9px;
  background: linear-gradient(160deg, #2a3a33, #16201b);
  box-shadow: var(--shadow);
}
.feat-phone .phone-screen { border-radius: 14px; }

/* ============================================================
   Exit node / CKR — multi-hop VPN
   ============================================================ */
.vpn { background: var(--ink); color: #EAF3EE; position: relative; overflow: hidden; }
.vpn .wrap { position: relative; z-index: 2; }
.blob-vpn {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: #2f8f6e; filter: blur(110px); opacity: .32; top: -150px; left: -90px; z-index: 0;
}
.vpn-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 74px);
  align-items: center;
}
.vpn .eyebrow { color: #7be3b6; }
.vpn .eyebrow::before { background: #7be3b6; }
.vpn h2 { color: #fff; font-size: clamp(30px, 4.2vw, 46px); margin-top: 16px; }
.vpn .lead { margin-top: 16px; color: #B7C7BF; font-size: 17.5px; }
.vpn .feat-list { margin-top: 24px; max-width: none; }
.vpn .feat-list li { color: #D6E3DC; }
.vpn .feat-list li svg { color: #56DCA7; }
.vpn-note {
  margin-top: 24px; font-family: var(--mono); font-size: 12.5px; color: #8DA398;
  display: flex; gap: 9px; align-items: flex-start; line-height: 1.55;
}
.vpn-note svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: #7be3b6; }
.vpn-media { display: flex; justify-content: center; }

/* ============================================================
   Split tunneling
   ============================================================ */
.split-card {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 5vw, 74px);
  align-items: center;
}
.split-media { display: flex; justify-content: center; }
.split-copy h2 { font-size: clamp(30px, 4.2vw, 46px); margin-top: 16px; }
.split-copy .lead { margin-top: 16px; }
.split-copy .feat-list { margin-top: 24px; max-width: none; }

/* ============================================================
   How licensing works
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.step {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--ring), var(--shadow-sm);
  position: relative;
}
.step .num {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  width: 34px; height: 34px; border-radius: 5px;
  background: var(--bg-2); color: var(--green-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h4 { font-size: 18px; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--muted); }
.step .lic-demo {
  margin-top: 16px; font-family: var(--mono); font-size: 13px; letter-spacing: .12em;
  background: var(--ink); color: #7be3b6; padding: 11px 14px; border-radius: 5px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing { background: var(--bg); }
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  align-items: stretch;
}
.pcard {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 30px 26px 32px; box-shadow: var(--ring), var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--ring), var(--shadow); }
.pcard.popular {
  background: linear-gradient(180deg, #ffffff, #f6fbf8);
  box-shadow: 0 0 0 2px var(--green-1), var(--shadow);
  transform: translateY(-6px);
}
.pcard.popular:hover { transform: translateY(-10px); }
.pcard .tier { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pbadge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 6px 15px; border-radius: 5px; letter-spacing: .03em;
  box-shadow: 0 8px 18px -6px rgba(67,177,143,.7); white-space: nowrap;
}
.pcard .price { margin-top: 16px; display: flex; align-items: baseline; gap: 4px; }
.pcard .price .cur { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--ink); }
.pcard .price .amt { font-family: var(--display); font-size: 54px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.pcard .permo { margin-top: 8px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.pcard .save { margin-top: 4px; font-size: 12.5px; font-weight: 700; color: var(--green-deep); min-height: 18px; }
.pcard .pdesc { margin-top: 18px; font-size: 14px; color: var(--muted); flex: 1; }
.pcard .btn { margin-top: 22px; }
.price-note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--muted); display: inline-flex; gap: 9px; align-items: center; width: 100%; justify-content: center; }
.price-note svg { width: 17px; height: 17px; color: var(--green-1); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); }
.faq-wrap { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--surface); border-radius: var(--r);
  box-shadow: var(--ring); margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: 0 0 0 1px var(--green-1), var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; display: flex; align-items: center; gap: 16px;
  font-family: var(--body); font-weight: 700; font-size: 16.5px; color: var(--ink);
}
.faq-q .chev { margin-left: auto; flex: none; transition: transform .3s; color: var(--green-deep); }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 24px 24px; color: var(--ink-2); font-size: 15.5px; }
.faq-a-inner a { color: var(--green-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Download
   ============================================================ */
.download { background: var(--ink); color: #EAF3EE; overflow: hidden; }
.download .wrap { position: relative; z-index: 2; }
.dl-card {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.download .eyebrow { color: #7be3b6; }
.download .eyebrow::before { background: #7be3b6; }
.dl-card h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-top: 16px; }
.dl-card p { margin-top: 16px; color: #B7C7BF; font-size: 17px; }
.dl-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.dl-meta {
  margin-top: 28px; display: grid; grid-template-columns: repeat(2, auto); gap: 14px 40px;
  justify-content: start;
}
.dl-meta .m { }
.dl-meta .m .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #6E837A; }
.dl-meta .m .v { font-weight: 700; margin-top: 3px; font-size: 15px; color: #EAF3EE; }
.checksum {
  margin-top: 26px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px; padding: 14px 16px;
}
.checksum .k { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6E837A; display:flex; align-items:center; gap:8px; }
.checksum .h { font-family: var(--mono); font-size: 12.5px; color: #9FD8C2; word-break: break-all; margin-top: 7px; line-height: 1.5; }
.copy-btn { background: none; border: none; color: #7be3b6; cursor: pointer; font-family: var(--mono); font-size: 11px; margin-left: auto; }

.qr-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 30px; text-align: center;
}
.qr-box .robot { width: 100%; max-width: 240px; margin-inline: auto; }
.qr-box .robot-screen { border-radius: 11px; overflow: hidden; aspect-ratio: 1080/2400; box-shadow: var(--shadow); }
.qr-box .robot-screen img { width:100%; height:100%; object-fit: cover; object-position: top; }
.qr-cap { margin-top: 18px; font-size: 13px; color: #8DA398; font-family: var(--mono); letter-spacing: .04em; }

.download .blob-dl { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: #2f8f6e; filter: blur(90px); opacity: .35; top: -120px; right: -80px; z-index: 0; }

/* ============================================================
   About creator + Support
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

.creator {
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--ring), var(--shadow-sm); padding: clamp(28px, 3.5vw, 40px);
}
.creator-head { display: flex; align-items: center; gap: 18px; }
.creator-avatar {
  width: 66px; height: 66px; border-radius: 9px; overflow: hidden;
  flex: none; box-shadow: 0 10px 24px -12px rgba(33,84,64,.5), var(--ring);
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-head h3 { font-size: 23px; }
.creator-head .role { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.creator p { margin-top: 20px; color: var(--ink-2); font-size: 15.5px; }
.creator-links { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.clink {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: var(--ring); transition: transform .18s, box-shadow .2s, color .2s; color: var(--ink);
}
.clink:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--green-1); color: var(--green-deep); }
.clink svg { width: 18px; height: 18px; }
.clink.gh:hover { color: #111; box-shadow: 0 0 0 1px #111; }

/* support form */
.support {
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--ring), var(--shadow-sm); padding: clamp(28px, 3.5vw, 40px);
}
.support h3 { font-size: 23px; }
.support > p { margin-top: 12px; color: var(--muted); font-size: 14.5px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--lav-line); border-radius: 6px;
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s; resize: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green-1);
  box-shadow: 0 0 0 3px rgba(67,177,143,.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.support .btn { margin-top: 20px; }
.form-hint { margin-top: 12px; font-size: 12.5px; color: var(--faint); display:flex; gap:7px; align-items:center; }
.form-hint svg { width: 14px; height: 14px; flex:none; }

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band { padding: clamp(56px, 7vw, 92px) 0; }
.cta-band .inner {
  background: var(--grad); border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px); text-align: center; color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -34px rgba(67,177,143,.8);
}
.cta-band .inner::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 80% 120%, rgba(255,255,255,.25), transparent 50%);
}
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); position: relative; }
.cta-band p { color: rgba(255,255,255,.92); margin-top: 16px; font-size: 18px; position: relative; max-width: 30em; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; position: relative; margin-top: 30px; }
.cta-band .btn-primary { background: #fff; color: var(--green-deep); box-shadow: 0 16px 30px -12px rgba(0,0,0,.3); }
.cta-band .btn-ghost { background: rgba(255,255,255,.14); color: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.22); color:#fff; box-shadow: 0 0 0 1px rgba(255,255,255,.7); }

/* ============================================================
   Footer
   ============================================================ */
footer { background: var(--bg-2); border-top: 1px solid var(--lav-line); padding: 56px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-size: 14px; color: var(--muted); max-width: 30ch; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 6px; background: var(--surface);
  display: grid; place-items: center; color: var(--ink-2); box-shadow: var(--ring);
  transition: transform .18s, color .2s, box-shadow .2s;
}
.foot-social a:hover { transform: translateY(-2px); color: var(--green-deep); box-shadow: 0 0 0 1px var(--green-1); }
.foot-social a svg { width: 19px; height: 19px; }
.foot-col h5 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; font-weight: 600; }
.foot-col a { display: block; font-size: 14.5px; color: var(--ink-2); margin-bottom: 11px; font-weight: 600; transition: color .2s; }
.foot-col a:hover { color: var(--green-deep); }
.foot-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--lav-line);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.foot-bottom a { color: var(--green-deep); font-weight: 700; }

/* ============================================================
   Modal (buy / NOWPayments)
   ============================================================ */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 32, 27, .5); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal-back.show { opacity: 1; visibility: visible; }
.modal {
  background: var(--surface); border-radius: var(--r-lg); width: 100%; max-width: 480px;
  box-shadow: var(--shadow-lg); padding: 0; overflow: hidden;
  transform: translateY(14px) scale(.98); transition: transform .3s cubic-bezier(.2,.8,.3,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-back.show .modal { transform: none; }
.modal-top { background: var(--grad); padding: 26px 28px; color: #fff; position: relative; }
.modal-top .tier { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .9; margin-right: 56px; }
.modal-top h3 { color: #fff; font-size: 26px; margin-top: 6px; }
.modal-top .mprice { font-family: var(--display); font-weight: 600; font-size: 40px; margin-top: 12px; letter-spacing: -0.02em; }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 5px;
  background: rgba(255,255,255,.2); border: none; color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.35); }
.modal-body { padding: 26px 28px 28px; }
.msteps { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 16px; }
.msteps li { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.msteps li .mnum { width: 26px; height: 26px; border-radius: 4px; background: var(--bg-2); color: var(--green-deep); font-family: var(--mono); font-weight: 700; font-size: 12px; display: grid; place-items: center; flex: none; }
.coins { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.coin { font-family: var(--mono); font-size: 12px; font-weight: 600; background: var(--bg-2); color: var(--ink-2); padding: 6px 12px; border-radius: 5px; }
.modal .pay-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.modal .pay-note svg { width: 15px; height: 15px; flex: none; color: var(--green-1); margin-top: 1px; }
.np-badge { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--green-deep); }

/* toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 120;
  opacity: 0; visibility: hidden; transition: all .3s; display: flex; align-items: center; gap: 10px;
}
.toast svg { width: 18px; height: 18px; color: #7be3b6; }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
}
@media (max-width: 1020px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .pcard.popular { transform: none; }
  .pcard.popular:hover { transform: translateY(-5px); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .phone-stage { order: -1; margin-bottom: 10px; }
  .hero .lead { margin-inline: auto; }
  .hero { text-align: center; }
  .hero .eyebrow, .hero-cta, .hero-trust { justify-content: center; }
  .feat-row, .feat-row.flip .feat-media { grid-template-columns: 1fr; }
  .feat-row.flip .feat-media { order: 0; }
  .feat-media { order: -1; }
  .feat-text { text-align: center; }
  .feat-tag { }
  .feat-list { text-align: left; max-width: 360px; margin-inline: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .explain { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .dl-card { grid-template-columns: 1fr; }
  .vpn-card { grid-template-columns: 1fr; }
  .vpn-media { order: -1; }
  .split-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .nav-cta .btn { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .dl-meta { grid-template-columns: 1fr 1fr; }
  .phone-float { display: none; }
}
