/*
 * china.pressific.com
 * Pressific / Tech Generation Ltd. Dileep C. Kaluaratchie, Inga Kaluaratchie.
 *
 * No @import, no webfont, no external reference of any kind. Latin glyphs fall to
 * the system UI face, CJK glyphs to the platform's own Chinese face, so the page
 * paints instantly in mainland China with nothing to download and nothing to block.
 *
 * All motion here is CSS only. There is no JavaScript on this page at all, which is
 * what lets the vhost serve CSP script-src 'none'.
 *
 * MOTION SAFETY RULE, do not break it: no element may depend on an animation in order
 * to be visible. Every from-state (opacity 0, scale 0, stroke-dashoffset) lives inside
 * the @keyframes, never in a base rule. So if animations are killed, whether by
 * prefers-reduced-motion or an old engine, everything degrades to plain visible content
 * instead of a blank page. The exception is .link-cn-flow, which is a decorative overlay
 * and is deliberately opacity 0 at rest.
 */

:root {
  --ink:        #1d1d1f;
  --ink-2:      #4a4a4f;
  --en-ink:     #5a5a61;   /* English pair text: quieter than --ink, still comfortably readable */
  --muted:      #6e6e73;
  --muted-soft: #8e8e93;
  --brand:      #fe6f27;
  --brand-dk:   #e35a15;
  --tint:       #fff5f0;
  --bg:         #ffffff;
  --bg-alt:     #fafafa;
  --line:       #e8e8ea;
  --dark:       #1d1d1f;
  --dark-2:     #2a2a2e;

  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB",
          "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans SC",
          "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;

  --wrap: 1120px;
  --r:    14px;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--brand-dk); }

.wrap        { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 800px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: 0; }

/* The bilingual pair. Chinese leads, English sits under it in a quieter voice.
   Hierarchy is carried by colour and weight rather than by shrinking the English,
   so the English stays comfortably readable at full paragraph size. */
.zh { display: block; }
.en {
  display: block;
  color: var(--en-ink);
  font-size: 0.94em;
  line-height: 1.6;
}
p.zh + p.en { margin-top: 6px; }

/* ---------- opening sequence ---------- */

.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: grid; place-items: center;
  animation: curtain .7s cubic-bezier(.76, 0, .24, 1) 1.15s both;
}
.intro-inner { display: grid; justify-items: center; gap: 20px; padding: 24px; }
.intro-logo  { width: min(210px, 56vw); height: auto; animation: introLogo .65s cubic-bezier(.2, .8, .2, 1) .05s both; }

.intro-line {
  display: block; width: min(210px, 56vw); height: 2px;
  background: #3a3a40; border-radius: 2px; overflow: hidden;
}
.intro-line i { display: block; height: 100%; background: var(--brand); animation: introSweep .85s cubic-bezier(.5, 0, .2, 1) .3s both; }

.intro-cap { font-size: 13px; color: #8e8e97; letter-spacing: .04em; animation: introCap .5s ease .55s both; }
.intro-cap b { color: var(--brand); font-weight: 600; }

@keyframes curtain    { to { transform: translateY(-100%); visibility: hidden; } }
@keyframes introLogo  { from { opacity: 0; transform: translateY(10px) scale(.97); } }
@keyframes introSweep { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
@keyframes introCap   { from { opacity: 0; transform: translateY(6px); } }

/* ---------- header ---------- */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 150px; height: auto; }
.brand-cn {
  font-size: 15px; font-weight: 600; color: var(--brand);
  border-left: 1px solid var(--line); padding-left: 10px; line-height: 1;
}

.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--ink-2);
  font-size: 14px; font-weight: 600; padding: 8px 12px; border-radius: 8px;
  line-height: 1.25;
}
.nav a i { display: block; font-style: normal; font-size: 12px; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--ink); background: var(--bg-alt); }
.nav a.btn:hover { color: #fff; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block; text-align: center; text-decoration: none;
  background: var(--brand); color: #fff;
  font-weight: 700; font-size: 16px; line-height: 1.3;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: inherit;
  transition: background .15s ease, transform .15s ease;
}
.btn i { display: block; font-style: normal; font-size: 13px; font-weight: 500; opacity: .9; }
.btn:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn-sm    { padding: 9px 18px; font-size: 14px; }
.btn-sm i  { font-size: 12px; }
.btn-block { display: block; width: 100%; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: var(--bg-alt); color: var(--ink); border-color: var(--ink-2); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(170deg, var(--tint) 0%, #ffffff 62%);
  border-bottom: 1px solid var(--line);
  padding: 76px 0 68px;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

/* Staggered entrance, timed to begin as the curtain lifts. */
.hero-copy > *   { animation: rise .75s cubic-bezier(.2, .8, .2, 1) both; }
.hero-copy > :nth-child(1) { animation-delay: 1.20s; }
.hero-copy > :nth-child(2) { animation-delay: 1.30s; }
.hero-copy > :nth-child(3) { animation-delay: 1.40s; }
.hero-copy > :nth-child(4) { animation-delay: 1.48s; }
.hero-copy > :nth-child(5) { animation-delay: 1.56s; }
.hero-art        { animation: fade .8s ease 1.15s both; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
@keyframes fade { from { opacity: 0; } }

.eyebrow {
  margin: 0 0 18px; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--brand-dk);
}
.eyebrow i { font-style: normal; font-weight: 500; color: var(--muted); text-transform: none; letter-spacing: 0; }

.hero h1 { margin: 0; font-size: clamp(32px, 4.4vw, 50px); line-height: 1.22; letter-spacing: -0.01em; }
.hero h1 .zh { font-weight: 800; }
.hero h1 .en {
  margin-top: 14px; font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500; color: var(--ink-2); line-height: 1.45;
}
.lede { margin: 22px 0 0; font-size: 17px; max-width: 34em; }
.lede.zh { color: var(--ink-2); }
.lede.en { font-size: 16px; }

.hero-art svg { width: 100%; height: auto; }

/* ---------- hero network map ---------- */

.netmap .ring       { animation: draw .95s ease-out both; }
.netmap .ring-a     { animation-delay: 1.15s; }
.netmap .ring-b     { animation-delay: 1.30s; }
.netmap .ring-dash  { animation: fade .8s ease 1.45s both; }
.netmap .glow       { animation: fade 1s ease 1.75s both; }

.netmap .link { animation: draw .7s ease-out both; }
.netmap .link:nth-child(1) { animation-delay: 1.55s; }
.netmap .link:nth-child(2) { animation-delay: 1.63s; }
.netmap .link:nth-child(3) { animation-delay: 1.71s; }
.netmap .link:nth-child(4) { animation-delay: 1.79s; }
.netmap .link:nth-child(5) { animation-delay: 1.87s; }
.netmap .link:nth-child(6) { animation-delay: 1.95s; }

.netmap .link-cn { animation: draw .85s cubic-bezier(.4, 0, .2, 1) 1.40s both; }

/* The packet. Decorative overlay, so it is genuinely hidden at rest. */
.netmap .link-cn-flow { opacity: 0; animation: packet 2.6s linear 2.5s infinite; }

.netmap .node,
.netmap .node-cn,
.netmap .core { transform-box: fill-box; transform-origin: center; }

.netmap .node { animation: pop .5s cubic-bezier(.3, 1.4, .5, 1) both; }
.netmap .node:nth-child(1) { animation-delay: 2.00s; }
.netmap .node:nth-child(2) { animation-delay: 2.06s; }
.netmap .node:nth-child(3) { animation-delay: 2.12s; }
.netmap .node:nth-child(4) { animation-delay: 2.18s; }
.netmap .node:nth-child(5) { animation-delay: 2.24s; }
.netmap .node:nth-child(6) { animation-delay: 2.30s; }

.netmap .node-cn { animation: pop .5s cubic-bezier(.3, 1.4, .5, 1) 2.10s both; }
.netmap .core    { animation: pop .55s cubic-bezier(.3, 1.4, .5, 1) 1.85s both; }
.netmap .lbl     { animation: fade .7s ease 2.35s both; }

/* Slow breathing ring on the HK core: the one piece of perpetual motion, kept faint. */
.netmap .core-pulse { transform-box: fill-box; transform-origin: center; animation: corePulse 3.4s ease-out 2.6s infinite; }

@keyframes draw {
  from { stroke-dasharray: 100; stroke-dashoffset: 100; }
  to   { stroke-dasharray: 100; stroke-dashoffset: 0; }
}
@keyframes pop { from { opacity: 0; transform: scale(0); } }
@keyframes packet {
  0%   { opacity: 0; stroke-dasharray: 9 91; stroke-dashoffset: 100; }
  12%  { opacity: .95; }
  78%  { opacity: .95; }
  90%  { opacity: 0; stroke-dasharray: 9 91; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dasharray: 9 91; stroke-dashoffset: 0; }
}
@keyframes corePulse {
  0%        { transform: scale(1);    opacity: .5; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- scroll-driven reveals ---------- */
/* Guarded by @supports, and the from-state lives only in the keyframes, so anything
   that cannot run this simply shows the content normally. */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .sec h2, .fail-list li, .card, .feat, .icp-card, .price-card, .why, details, .note {
      animation: revealUp .6s cubic-bezier(.2, .8, .2, 1) both;
      animation-timeline: view();
      animation-range: entry 5% cover 22%;
    }
  }
}
@keyframes revealUp { from { opacity: 0; transform: translateY(20px); } }

/* ---------- trust strip ---------- */

.strip { background: var(--dark); color: #fff; }
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 30px 24px;
}
.strip div b { display: block; font-size: 21px; color: var(--brand); line-height: 1.2; }
.strip div span { display: block; font-size: 13.5px; color: #c9c9ce; margin-top: 4px; }
.strip div span i { display: block; font-style: normal; font-size: 12.5px; color: #9a9aa2; }

/* ---------- sections ---------- */

.sec      { padding: 84px 0; }
.sec-alt  { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-dark { background: var(--dark); color: #fff; }

.sec h2 { margin: 0 0 20px; font-size: clamp(25px, 3vw, 35px); line-height: 1.3; letter-spacing: -0.01em; }
.sec h2 .zh { font-weight: 800; }
.sec h2 .en { margin-top: 8px; font-size: clamp(16px, 1.55vw, 20px); font-weight: 500; color: var(--muted); }
.sec-dark h2 .en { color: #a8a8b0; }

.sec-lede { margin: 0 0 6px; max-width: 46em; }
.sec-lede.zh { color: var(--ink-2); }
.sec-lede.en { font-size: 16px; margin-bottom: 34px; }
.sec-dark .sec-lede.zh { color: #d5d5da; }
.sec-dark .sec-lede.en { color: #a8a8b0; }

/* ---------- failure list ---------- */

.fail-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fail-list li {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 22px 20px 52px; position: relative;
}
.sec-alt .fail-list li { background: #fff; }
.fail-list li::before {
  content: ""; position: absolute; left: 20px; top: 24px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--tint); border: 2px solid var(--brand);
}
.fail-list li .zh { font-weight: 600; font-size: 16px; }
.fail-list li .en { font-size: 15px; }

.note {
  margin: 34px 0 0; padding: 22px 24px;
  background: var(--tint); border-left: 4px solid var(--brand); border-radius: 0 var(--r) var(--r) 0;
}
.note .zh { font-weight: 600; }
.note .en { font-size: 15.5px; }
.note-dark { background: var(--dark-2); border-left-color: var(--brand); }
.note-dark .zh { color: #fff; }
.note-dark .en { color: #a8a8b0; }

/* ---------- cards ---------- */

.cards { display: grid; gap: 22px; }
.cards.two   { grid-template-columns: 1fr 1fr; }
.cards.three { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(29, 29, 31, .07); border-color: #d8d8dc; }
.card-ico { width: 44px; height: 44px; margin-bottom: 18px; color: var(--brand); }
.card-ico svg { width: 100%; height: 100%; display: block; }
.card h3 { margin: 0 0 14px; font-size: 21px; line-height: 1.35; }
.card h3 .zh { font-weight: 700; }
.card h3 .en { font-size: 15.5px; font-weight: 500; margin-top: 4px; }
.card p { margin: 0; }
.card p.zh { color: var(--ink-2); }
.card-flat { padding: 24px; }
.card-flat h4 { margin: 0 0 10px; font-size: 17px; line-height: 1.4; }
.card-flat h4 .zh { font-weight: 700; }
.card-flat h4 .en { font-size: 14.5px; font-weight: 500; margin-top: 3px; }
.card-flat p { font-size: 15px; }
.card-flat p.en { font-size: 14.5px; }

/* ---------- feature grid ---------- */

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 34px; }
.feat { border-top: 3px solid var(--brand); padding-top: 18px; }
.feat h4 { margin: 0 0 10px; font-size: 17px; line-height: 1.4; }
.feat h4 .zh { font-weight: 700; }
.feat h4 .en { font-size: 14.5px; font-weight: 500; margin-top: 3px; }
.feat p { margin: 0; font-size: 15px; }
.feat p.zh { color: var(--ink-2); }
.feat p.en { font-size: 14.5px; }

/* ---------- ICP ---------- */

.icp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.icp-card { background: var(--dark-2); border: 1px solid #3a3a40; border-radius: var(--r); padding: 32px; }
.icp-tag {
  margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand);
}
.icp-tag i { font-style: normal; font-weight: 500; color: #9a9aa2; text-transform: none; letter-spacing: 0; }
.icp-card h3 { margin: 0 0 16px; font-size: 22px; line-height: 1.35; }
.icp-card h3 .zh { font-weight: 700; color: #fff; }
.icp-card h3 .en { font-size: 15.5px; font-weight: 500; color: #a8a8b0; margin-top: 4px; }
.icp-card p.zh { color: #d5d5da; }
.icp-card p.en { color: #a8a8b0; font-size: 15px; }

.ticks { list-style: none; margin: 22px 0 0; padding: 0; }
.ticks li {
  padding: 10px 0 10px 30px; position: relative; border-top: 1px solid #3a3a40;
}
.ticks li::before {
  content: ""; position: absolute; left: 4px; top: 17px;
  width: 11px; height: 6px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.ticks li .zh { color: #fff; font-size: 15px; font-weight: 600; }
.ticks li .en { color: #a0a0a8; font-size: 14px; }

/* ---------- conditional band ---------- */
/* Deliberately lighter than a .sec: this is an aside for the minority of visitors who do
   not need the mainland, and it must not compete with the China narrative around it. */

.band { padding: 48px 0; background: #fff; border-bottom: 1px solid var(--line); }
.band-tag {
  margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand);
}
.band-tag i { font-style: normal; font-weight: 500; color: var(--muted-soft); letter-spacing: .04em; }
.band h3 { margin: 0 0 14px; font-size: clamp(19px, 2.1vw, 25px); line-height: 1.35; }
.band h3 .zh { font-weight: 700; }
.band h3 .en { font-size: clamp(15px, 1.4vw, 18px); font-weight: 500; color: var(--muted); margin-top: 5px; }
.band p.zh { margin: 0; color: var(--ink-2); font-size: 16px; }
.band p.en { margin: 6px 0 0; font-size: 15.5px; }
.band-facts {
  margin: 18px 0 0; font-size: 14px; font-weight: 700; color: var(--ink);
}
.band-facts b { color: var(--brand); font-weight: 700; }
.band-facts i { display: block; font-style: normal; font-weight: 500; font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* ---------- pricing ---------- */

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px; display: flex; flex-direction: column;
}
.price-card-feature { border: 2px solid var(--brand); box-shadow: 0 12px 34px rgba(254, 111, 39, .12); }
.price-tag { margin: 0 0 14px; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.price-tag i { font-style: normal; font-weight: 500; color: var(--muted); display: block; font-size: 13px; }
.price { margin: 0 0 18px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price b { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.price .from, .price .per { font-size: 13.5px; color: var(--muted); }
.price .from i, .price .per i { font-style: normal; display: block; font-size: 12.5px; color: var(--muted-soft); }
.price-card p.zh { color: var(--ink-2); font-size: 15px; }
.price-card p.en { font-size: 14.5px; }
.price-card .btn { margin-top: auto; }
.price-card p.en + .btn { margin-top: 24px; }

/* ---------- why ---------- */

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; }
.why h4 { margin: 0 0 10px; font-size: 18px; line-height: 1.4; }
.why h4 .zh { font-weight: 700; }
.why h4 .en { font-size: 14.5px; font-weight: 500; margin-top: 3px; }
.why p { margin: 0; font-size: 15px; }
.why p.zh { color: var(--ink-2); }
.why p.en { font-size: 14.5px; }

/* ---------- FAQ ---------- */

details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 24px; margin-bottom: 12px;
}
details[open] { border-color: var(--brand); }
summary {
  cursor: pointer; padding: 20px 0; list-style: none; font-size: 17px;
  position: relative; padding-right: 36px;
}
summary::-webkit-details-marker { display: none; }
summary .zh { font-weight: 700; }
summary .en { font-size: 14.5px; font-weight: 500; margin-top: 3px; }
summary::after {
  content: ""; position: absolute; right: 6px; top: 27px;
  width: 9px; height: 9px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg); transition: transform .18s ease;
}
details[open] summary::after { transform: rotate(-135deg); top: 31px; }
details p { margin: 0 0 20px; font-size: 16px; }
details p.zh { color: var(--ink-2); }
details p.en { font-size: 15px; }
details > p:first-of-type { padding-top: 4px; }

/* ---------- contact ---------- */

.sec-contact { background: var(--tint); border-top: 1px solid var(--line); }

.form { margin-top: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 7px; }
.field label i { font-style: normal; font-weight: 500; color: var(--muted); }
.field label em { font-style: normal; color: var(--brand-dk); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font-size: 16px; font-family: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(254, 111, 39, .16);
}
.field.has-err input, .field.has-err textarea { border-color: #d9534f; background: #fff8f8; }
.field textarea { resize: vertical; min-height: 130px; }

.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 14px 0 0; font-size: 13.5px; }
.form-note .zh { color: var(--muted); }
.form-note .en { font-size: 13px; color: var(--muted-soft); }

.alert { padding: 18px 22px; border-radius: var(--r); margin: 26px 0 0; }
.alert p { margin: 0; }
.alert-ok  { background: #eaf7ec; border: 1px solid #b9e2c0; }
.alert-ok .en { color: #4a7a52; }
.alert-err { background: #fdf0ef; border: 1px solid #f0c4c2; }
.alert-err .en { color: #9a5654; }

.contact-alt { margin: 30px 0 0; text-align: center; font-size: 15.5px; }
.contact-alt .zh, .contact-alt .en { display: inline; }
.contact-alt .en { color: var(--muted); font-size: 1em; }
.contact-alt .en::before { content: " / "; }
.contact-alt a { font-weight: 700; margin-left: 6px; }

/* ---------- footer ---------- */

.site-foot { background: var(--dark); color: #c9c9ce; padding: 54px 0 0; }
.foot-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 40px; }
.foot-brand img { width: 130px; margin-bottom: 16px; }
.foot-brand p { margin: 0; font-size: 14.5px; max-width: 30em; }
.foot-brand p.zh { color: #d5d5da; }
.foot-brand p.en { color: #a0a0a8; font-size: 14px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.foot-links a { color: #d5d5da; text-decoration: none; font-size: 14.5px; font-weight: 600; }
.foot-links a i { font-style: normal; font-weight: 500; color: #9a9aa2; font-size: 13px; }
.foot-links a:hover { color: var(--brand); }
.foot-legal { border-top: 1px solid #3a3a40; padding-top: 22px; padding-bottom: 26px; }
.foot-legal p { margin: 0; font-size: 12.5px; color: #9a9aa2; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .hero-art    { max-width: 460px; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .feat-grid   { grid-template-columns: 1fr 1fr; }
  .cards.three { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .sec { padding: 60px 0; }
  .hero { padding: 52px 0 48px; }
  .head-inner { flex-direction: column; align-items: flex-start; padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .site-head { position: static; }
  .nav { gap: 2px; }
  .nav a { padding: 7px 9px; font-size: 13px; }
  .nav a i { font-size: 11px; }
  .fail-list, .cards.two, .icp-grid, .price-grid, .why-grid, .feat-grid,
  .strip-inner, .foot-inner { grid-template-columns: 1fr; }
  .card, .icp-card, .price-card { padding: 24px; }
  .cta-row .btn { width: 100%; }
}

/* Motion off. The curtain is removed rather than stilled, otherwise it would sit
   over the page forever. Everything else falls back to its plain visible state. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
