/* ═══════════════════════════════════════════════════════════════
   EditFast — site styles

   WHAT WENT WRONG LAST TIME

   The previous pass tried to avoid looking machine-made by
   banning the things that make a page feel lit — gradients,
   tinted shadows, blur, generous corners, motion. The result was
   flatter and MORE generic, not less: every corner 3px, every
   section built identically, one fade-in reused down the whole
   page. That uniformity is itself the tell. Real design systems
   vary on purpose.

   So this uses those tools deliberately instead:

   • WARM, NEVER NEUTRAL. Every dark carries red; every grey leans
     beige. A blue-grey on a dark page reads clinical, the same
     value warmed reads rich. This single change does more than
     everything else here combined.

   • THE GLOW IS THE SIGNATURE. A coloured shadow in the accent
     beneath things that matter. Restrained it is craft; sprayed
     everywhere it is the thing to avoid — so it lives on primary
     actions, the hero device, and lifted cards, and nowhere else.

   • RADIUS BY ROLE. 4px on tags, 10px on controls, 16px on cards,
     22px on the big surfaces.

   • MOTION THAT MEANS SOMETHING. Reveals alternate direction so
     the page does not pulse the same way a dozen times, and the
     hero runs its own loop because the product is a thing that
     moves.

   TYPE: Readex Pro — warm, wide-set, drawn for Arabic and Latin
   together, and not the face every generated page reaches for.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Accent: a warm red, not a cool crimson. */
  --red:      #F0442E;
  --red-lift: #FF6B52;
  --red-soft: #FF9179;
  --red-deep: #B32A1A;
  --red-rgb:  240, 68, 46;

  /* White text on the vivid red measures 3.46:1 — under AA at label
     sizes. So the accent splits in two: --red keeps doing the glows,
     borders and highlights, where nothing sits on top of it, and
     anything carrying white text sits on this darker pair instead.
     Still a warm red; just one you can read. */
  --red-ink-a: #D0381F;   /* white on this: 4.75:1 */
  --red-ink-b: #96220F;

  --ember:     #FF8A3D;
  --ember-rgb: 255, 138, 61;

  /* Ground: every step carries red, none is neutral. */
  --bg-000: #0A0806;
  --bg-050: #0E0B09;
  --bg-100: #14100D;
  --bg-200: #1C1713;
  --bg-300: #241D18;

  /* Text: beige-leaning, never blue-grey. */
  --tx:   #F7F1EC;
  --tx-2: #C9BDB3;
  --tx-3: #9A8D83;
  --tx-4: #8C7F75;

  --line:      #241D18;
  --line-lift: #33291F;

  --ok:   #3FCF8E;
  --info:  #6FB6D8;
  --amber: #F2A33C;
  --yellow:#E8C547;

  --ff:  'Readex Pro', system-ui, -apple-system, sans-serif;
  --num: 'Space Grotesk', ui-monospace, monospace;

  /* Radius by role, not one value everywhere. */
  --r-tag:  4px;
  --r-ctl:  10px;
  --r-card: 16px;
  --r-big:  22px;
  --r-pill: 999px;

  --glow:      0 8px 26px -8px rgba(240,68,46,.55);
  --glow-lift: 0 14px 40px -10px rgba(240,68,46,.75);
  --sink:      0 18px 44px -22px rgba(0,0,0,.9);

  --shell:  1180px;
  --ease:   cubic-bezier(.22,.68,.32,1);
  --spring: cubic-bezier(.3,1.3,.4,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-050);
  color: var(--tx);
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Warm light bleeding in from the corners — low opacity, fixed,
   so the page travels through it. */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(760px 460px at 88% -6%, rgba(240,68,46,.16), transparent 60%),
    radial-gradient(620px 420px at -6% 34%, rgba(255,138,61,.07), transparent 58%);
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

.num { font-family: var(--num); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.ltr { direction: ltr; unicode-bidi: isolate; }
.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }

/* ─────────────────────────────────────────────────── header ── */

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14,11,9,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.hdr.stuck { border-bottom-color: var(--line); background: rgba(14,11,9,.95); }
.hdr-in { display: flex; align-items: center; gap: 28px; height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(140deg, var(--red-ink-a), var(--red-ink-b));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--glow);
}
.brand-mark svg { width: 16px; height: 16px; }

.nav { display: flex; gap: 26px; margin-inline-start: auto; }
.nav a {
  font-size: 14.5px; font-weight: 400; color: var(--tx-3);
  padding: 4px 0; position: relative; transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 2px;
  background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: 50%;
  transition: transform .3s var(--spring);
}
.nav a:hover { color: var(--tx); }
.nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 9px; }

/* ────────────────────────────────────────────────── buttons ── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--r-ctl);
  border: 1px solid var(--line-lift); background: var(--bg-200);
  font-size: 14.5px; font-weight: 500; cursor: pointer;
  transition: transform .2s var(--spring), background .2s var(--ease),
              border-color .2s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--bg-300); border-color: var(--tx-4); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--red-lift); outline-offset: 3px; }

.btn.pri {
  background: linear-gradient(140deg, var(--red-ink-a), var(--red-ink-b));
  border-color: transparent; color: #fff; font-weight: 600;
  box-shadow: var(--glow);
}
.btn.pri:hover { box-shadow: var(--glow-lift); }

.btn:disabled, .btn[disabled] { opacity: .4; cursor: not-allowed; }
.btn:disabled:hover, .btn[disabled]:hover { transform: none; box-shadow: none; background: var(--bg-200); border-color: var(--line-lift); }
.btn.pri:disabled:hover, .btn.pri[disabled]:hover { background: linear-gradient(140deg, var(--red-ink-a), var(--red-ink-b)); box-shadow: none; }

.btn.sm { padding: 9px 16px; font-size: 13.5px; }
.btn.lg { padding: 15px 30px; font-size: 16px; }
.btn.wide { width: 100%; }
.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ───────────────────────────────────────────────── sections ── */

/* The rhythm varies on purpose: big sections breathe, connective
   bands sit tight. One padding value everywhere is the tell. */
.sec { padding: 96px 0; }
.sec.tight { padding: 54px 0; }
.sec + .sec.tight { padding-top: 0; }
.sec.tight + .sec { padding-top: 66px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--num); font-size: 11.5px; font-weight: 500;
  letter-spacing: .14em; color: var(--red-soft); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: var(--red); }

.sec h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700; letter-spacing: -.035em; line-height: 1.25; max-width: 20ch;
}
.sec-intro { color: var(--tx-3); font-size: 16.5px; margin: 0 0 52px; max-width: 58ch; }
.sec-head-c { text-align: center; }
.sec-head-c h2, .sec-head-c .sec-intro { margin-inline: auto; }
.sec-head-c .eyebrow { justify-content: center; }

/* ───────────────────────────────────────────────────── hero ── */

.hero { padding: 72px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.14; font-weight: 700; letter-spacing: -.045em;
}
.hero h1 span {
  background: linear-gradient(120deg, var(--red-lift), var(--ember));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede { font-size: 17.5px; color: var(--tx-2); margin: 0 0 32px; max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 30px; }

.trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--tx-3);
  padding: 7px 13px; border-radius: var(--r-tag);
  border: 1px solid var(--line); background: var(--bg-100);
}
.trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--ok); }

/* ── The hero device: the panel itself, running its own loop.
      No invented browser chrome around it — the screenshot already
      carries the panel's own title bar and icon rail, and stacking a
      fake one on top of a real one only reads as decoration. The
      frame is a frame; the tabs are the one thing added, because
      they let a visitor go straight to the tool they came for. ── */
.device { width: min(100%, 396px); margin-inline: auto; }

.device-tabs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
  justify-content: center;
}
.device-tabs button {
  border: 1px solid var(--line); background: var(--bg-100); cursor: pointer;
  padding: 7px 13px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 400; color: var(--tx-3); white-space: nowrap;
  transition: color .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.device-tabs button:hover { color: var(--tx); border-color: var(--tx-4); }
.device-tabs button.on {
  color: #fff; border-color: transparent;
  background: linear-gradient(140deg, var(--red-ink-a), var(--red-ink-b));
  box-shadow: var(--glow);
}

.device-stage {
  position: relative; height: 468px; overflow: hidden;
  border-radius: var(--r-big);
  border: 1px solid var(--line-lift);
  background: var(--bg-000);
  box-shadow: var(--sink), 0 0 90px -34px rgba(240,68,46,.6);
}
.device-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 0;
  opacity: 0; transform: scale(1.015);
  transition: opacity .5s var(--ease), transform .7s var(--ease);
}
.device-stage img.on { opacity: 1; transform: none; }
.device-stage::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 78px;
  background: linear-gradient(to top, var(--bg-000), transparent); pointer-events: none;
}

/* ── Readout ── */

.readout { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 64px; }
.readout div {
  padding: 22px 20px; border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-100), var(--bg-050));
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.readout div:hover { border-color: rgba(240,68,46,.34); transform: translateY(-3px); }
.readout b { display: block; font-family: var(--num); font-size: 30px; font-weight: 700; color: var(--red-soft); letter-spacing: -.03em; }
.readout span { font-size: 13.5px; color: var(--tx-3); }

/* ──────────────────────────────────────────────────── tools ── */

.tools { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr)); gap: 18px; }

.tool {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, var(--bg-100), var(--bg-050));
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.tool:hover {
  transform: translateY(-5px);
  border-color: rgba(240,68,46,.32);
  box-shadow: var(--sink), 0 0 46px -26px rgba(240,68,46,.6);
}

/* The screenshot sits in a frame, small and cropped to the part
   that matters — evidence, not wallpaper. */
.tool-shot {
  height: 150px; margin: 14px 14px 0;
  border-radius: var(--r-ctl);
  border: 1px solid var(--line-lift);
  background: var(--bg-000);
  overflow: hidden; position: relative;
}
/* Cropped past the panel's own title bar so the card shows the
   controls rather than the same header twelve times. `cover` keeps
   that true whatever width the grid gives the card. */
.tool-shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 18%;
  transition: object-position .6s var(--ease);
}
.tool:hover .tool-shot img { object-position: 50% 42%; }
.tool-shot::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 54px;
  background: linear-gradient(to top, var(--bg-000), transparent);
}

.tool-body { padding: 16px 20px 22px; }
.tool-h { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.tool-h h3 { margin: 0; font-size: 17.5px; font-weight: 600; letter-spacing: -.025em; }
.tool p { margin: 0; color: var(--tx-3); font-size: 14.2px; line-height: 1.9; }
.tool b { color: var(--tx-2); font-weight: 500; }

.tag {
  font-family: var(--num); font-size: 10px; font-weight: 500;
  padding: 3px 8px; border-radius: var(--r-tag); letter-spacing: .06em;
  border: 1px solid;
}
.tag.ai  { color: var(--red-soft); border-color: rgba(240,68,46,.4);  background: rgba(240,68,46,.09); }
.tag.new { color: var(--ok);       border-color: rgba(63,207,142,.34); background: rgba(63,207,142,.07); }
.tag.off { color: var(--info);     border-color: rgba(111,182,216,.3); background: rgba(111,182,216,.06); }

/* ───────────────────────────────────────────────────── edge ── */

.edge { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.edge-item {
  padding: 28px 26px; border-radius: var(--r-card);
  border: 1px solid var(--line); background: var(--bg-100);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.edge-item:hover { transform: translateY(-4px); border-color: rgba(240,68,46,.3); }
.edge-ic {
  width: 38px; height: 38px; border-radius: var(--r-ctl);
  display: grid; place-items: center; margin-bottom: 15px;
  background: rgba(240,68,46,.12); color: var(--red-soft);
  box-shadow: inset 0 0 0 1px rgba(240,68,46,.2);
}
.edge-ic svg { width: 18px; height: 18px; }
.edge-item h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; }
.edge-item p { margin: 0; color: var(--tx-3); font-size: 14px; line-height: 1.9; }

/* ──────────────────────────────────────────────────── steps ── */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.step-n {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--num); font-size: 14px; font-weight: 700; color: #fff;
  background: linear-gradient(140deg, var(--red-ink-a), var(--red-ink-b));
  box-shadow: var(--glow);
}
.step h3 { margin: 0 0 8px; font-size: 17.5px; font-weight: 600; letter-spacing: -.02em; }
.step p { margin: 0; color: var(--tx-3); font-size: 14.5px; }

/* ────────────────────────────────────────────────── pricing ── */

.price-wrap { display: grid; grid-template-columns: 1fr 390px; gap: 54px; align-items: start; }

.includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.includes li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px 16px; border-radius: var(--r-ctl);
  background: var(--bg-100); border: 1px solid transparent;
  font-size: 14.8px; color: var(--tx-2);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.includes li:hover { border-color: rgba(240,68,46,.22); background: var(--bg-200); }
.includes li::before {
  content: ''; width: 18px; height: 18px; flex: 0 0 auto; margin-top: 4px; border-radius: 50%;
  background: rgba(240,68,46,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF9179' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

.terms { display: grid; gap: 11px; }
.term {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--r-card);
  border: 1px solid var(--line-lift); background: var(--bg-100);
  cursor: pointer; text-align: start;
  transition: border-color .25s var(--ease), background .25s var(--ease),
              transform .25s var(--spring), box-shadow .3s var(--ease);
}
.term:hover { transform: translateY(-2px); border-color: var(--tx-4); }
.term.on {
  border-color: var(--red);
  background: linear-gradient(150deg, var(--bg-200), var(--bg-100));
  box-shadow: var(--glow);
}
.term:focus-visible { outline: 2px solid var(--red-lift); outline-offset: 3px; }

.term-name { font-size: 16.5px; font-weight: 600; display: flex; align-items: center; gap: 9px; letter-spacing: -.02em; }
.term-note { font-size: 12.8px; color: var(--tx-4); margin-top: 2px; }
/* Currency sits on the baseline beside the figure rather than on a
   second line — there is a whole card of width going spare, and
   stacking them made the price read as two facts instead of one. */
.term-price { display: flex; align-items: baseline; gap: 5px; }
.term-price b { font-family: var(--num); font-size: 28px; font-weight: 700; letter-spacing: -.035em; line-height: 1.1; }
.term.on .term-price b { color: var(--red-soft); }
.term-price span { font-size: 12px; color: var(--tx-4); }

.term-flag {
  font-family: var(--num); font-size: 9.5px; font-weight: 500;
  color: #fff; background: var(--red-ink-a);
  border-radius: var(--r-tag); padding: 2px 7px; letter-spacing: .06em;
}

.pay { margin-top: 20px; border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px 22px; background: var(--bg-100); }
.pay h4 { margin: 0 0 6px; font-size: 14.5px; font-weight: 600; }
.pay p { margin: 0 0 14px; color: var(--tx-3); font-size: 13.6px; }
.pay-num {
  font-family: var(--num); font-size: 20px; font-weight: 700;
  color: var(--tx); letter-spacing: .06em;
  padding: 12px 14px; border-radius: var(--r-ctl);
  border: 1px dashed var(--line-lift); background: var(--bg-000);
  display: block; text-align: center; direction: ltr; margin-bottom: 12px;
}
.pay-ms { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-ms span {
  font-size: 11.5px; color: var(--tx-4);
  border: 1px solid var(--line); border-radius: var(--r-tag); padding: 4px 9px; background: var(--bg-000);
}

/* ────────────────────────────────────────────────────── faq ── */

.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 9px; }
.q {
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg-100); overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.q.open { border-color: rgba(240,68,46,.34); background: var(--bg-200); }
.q-head {
  width: 100%; display: flex; align-items: center; gap: 15px;
  padding: 19px 22px; background: none; border: 0; cursor: pointer;
  font-size: 15.8px; font-weight: 500; text-align: start; color: var(--tx-2);
  transition: color .2s var(--ease);
}
.q-head:hover, .q.open .q-head { color: var(--tx); }
.q-head .grow { flex: 1 1 auto; }
.q-mark {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(240,68,46,.14); color: var(--red-soft);
  font-size: 16px; line-height: 1;
  transition: transform .35s var(--spring), background .25s var(--ease), color .25s var(--ease);
}
.q.open .q-mark { transform: rotate(135deg); background: var(--red-ink-a); color: #fff; }
.q-body { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.q-body p { margin: 0; padding: 0 22px 22px; color: var(--tx-3); font-size: 14.8px; }

/* ─────────────────────────────────────────────────────── cta ── */

.cta {
  border-radius: var(--r-big);
  border: 1px solid rgba(240,68,46,.28);
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(240,68,46,.18), transparent 66%),
    linear-gradient(165deg, var(--bg-200), var(--bg-000));
  padding: 58px 44px; text-align: center;
}
.cta h2 { margin: 0 auto 12px; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -.035em; max-width: 20ch; }
.cta p { margin: 0 auto 28px; color: var(--tx-2); max-width: 46ch; }

/* ──────────────────────────────────────────────────── footer ── */

.ftr { border-top: 1px solid var(--line); padding: 46px 0 32px; margin-top: 90px; }
.ftr-in { display: flex; gap: 48px; flex-wrap: wrap; }
.ftr-brand { max-width: 290px; }
.ftr-brand p { color: var(--tx-4); font-size: 13.8px; margin: 12px 0 0; }
.ftr-cols { display: flex; gap: 56px; margin-inline-start: auto; flex-wrap: wrap; }
.ftr-col h5 { margin: 0 0 12px; font-family: var(--num); font-size: 11px; font-weight: 500; color: var(--tx-4); letter-spacing: .12em; }
.ftr-col a { display: block; font-size: 14.2px; color: var(--tx-3); padding: 5px 0; transition: color .2s var(--ease); }
.ftr-col a:hover { color: var(--red-soft); }
.ftr-btm {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--tx-4); font-size: 13px;
}
.ftr-btm a { color: var(--tx-3); }
.ftr-btm a:hover { color: var(--red-soft); }

/* ─────────────────────────────────────────────────── reveal ── */

/* Alternating entry, so a long page does not pulse the same way a
   dozen times on the way down. */
[data-rise]     { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-rise="l"] { transform: translate(-22px, 8px); }
[data-rise="r"] { transform: translate(22px, 8px); }
[data-rise="s"] { transform: scale(.965); }
[data-rise].in  { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-rise] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Skip link ─────────────────────────────────────────────── */
.skip {
  position: absolute; inset-inline-start: 50%; top: 8px; z-index: 200;
  transform: translate(50%, -160%);
  padding: 11px 22px; min-height: 44px;
  display: inline-flex; align-items: center;
  background: var(--red-ink-a); color: #fff; font-weight: 600;
  border-radius: var(--r-ctl);
  transition: transform .18s var(--ease);
}
.skip:focus { transform: translate(50%, 0); outline: 2px solid #fff; outline-offset: 2px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--red-lift); outline-offset: 2px; border-radius: var(--r-tag);
}

/* ─────────────────────────────────────────────── responsive ── */

@media (pointer: coarse) {
  .btn.sm { min-height: 44px; }
  .device-tabs button { min-height: 44px; }
  .ftr-col a { padding: 11px 0; }
  .nav a { padding: 12px 0; }
  .brand { padding: 8px 0; }
  .ftr-btm a { display: inline-block; padding: 11px 0; min-height: 44px; }
}

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }

  .price-wrap { grid-template-columns: 1fr; gap: 38px; }
  .edge { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .readout { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .edge { grid-template-columns: 1fr; }
  .sec { padding: 66px 0; }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 32px); }
  .hero { padding: 44px 0 0; }
  .sec { padding: 54px 0; }
  .readout { grid-template-columns: 1fr; }
  .cta { padding: 40px 22px; }
  .device-stage { height: 400px; }
  .hdr-cta .btn:not(.pri) { display: none; }
}
