@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;800&family=Russo+One&display=swap');

:root {
  color-scheme: light;
  --navy-950: #07131f;
  --navy-900: #0b1d2f;
  --navy-800: #14314d;
  --shield-blue: #2f6fff;
  --shield-blue-soft: #79aaff;
  --guard-green: #19c97a;
  --block-red: #e0575b;
  --soft-white: #f6f9fc;
  --text: #0b1a2b;
  --heading: #081522;
  --muted: #5d6d7d;
  --link: #1d66ff;
  --link-hover: #0f4dcc;
  --bg:
    radial-gradient(circle at top left, rgba(47, 111, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(25, 201, 122, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fa 44%, #f7f9fc 100%);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-muted: #edf3f9;
  --surface-emphasis: #dfeaf5;
  --line: rgba(8, 26, 43, 0.1);
  --line-strong: rgba(8, 26, 43, 0.16);
  --control-bg: rgba(255, 255, 255, 0.84);
  --control-border: rgba(8, 26, 43, 0.1);
  --control-text: #091828;
  --hero-bg:
    radial-gradient(circle at 18% 20%, rgba(121, 170, 255, 0.24), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(25, 201, 122, 0.18), transparent 24%),
    linear-gradient(145deg, #07131f 0%, #0d2134 52%, #14314d 100%);
  --hero-panel: rgba(255, 255, 255, 0.08);
  --hero-panel-border: rgba(255, 255, 255, 0.16);
  --hero-text: #f5f9ff;
  --hero-muted: rgba(245, 249, 255, 0.74);
  --footer-bg: #060f18;
  --footer-text: #c3d2e0;
  --shadow-soft: 0 18px 48px rgba(7, 19, 31, 0.08);
  --shadow-tight: 0 12px 28px rgba(7, 19, 31, 0.12);
  --shadow-panel: 0 30px 90px rgba(7, 19, 31, 0.14);
  --hero-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

html.dark-theme,
body.dark-theme {
  color-scheme: dark;
  --text: #e8f1fb;
  --heading: #f4f9ff;
  --muted: #b4c5d7;
  --link: #8cb4ff;
  --link-hover: #b8d1ff;
  --bg:
    radial-gradient(circle at top left, rgba(47, 111, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(25, 201, 122, 0.08), transparent 22%),
    linear-gradient(180deg, #06111d 0%, #081522 46%, #07111b 100%);
  --surface: rgba(12, 29, 44, 0.86);
  --surface-strong: rgba(10, 24, 38, 0.96);
  --surface-muted: #0f2234;
  --surface-emphasis: #14314a;
  --line: rgba(198, 217, 238, 0.12);
  --line-strong: rgba(198, 217, 238, 0.2);
  --control-bg: rgba(8, 20, 33, 0.82);
  --control-border: rgba(198, 217, 238, 0.12);
  --control-text: #f4f9ff;
  --hero-bg:
    radial-gradient(circle at 18% 20%, rgba(121, 170, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(25, 201, 122, 0.14), transparent 24%),
    linear-gradient(145deg, #06111d 0%, #0a1a2a 50%, #10263d 100%);
  --hero-panel: rgba(255, 255, 255, 0.05);
  --hero-panel-border: rgba(255, 255, 255, 0.1);
  --footer-bg: #040b12;
  --footer-text: #aebfd1;
  --shadow-soft: 0 20px 56px rgba(0, 0, 0, 0.24);
  --shadow-tight: 0 14px 30px rgba(0, 0, 0, 0.26);
  --shadow-panel: 0 34px 100px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

html {
  min-height: 100%;
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: 'Heebo', system-ui, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: -10% 0 auto;
  height: 360px;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 111, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(25, 201, 122, 0.12), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--link);
  text-decoration-color: rgba(47, 111, 255, 0.4);
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

a:hover {
  color: var(--link-hover);
}

p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

::selection {
  background: rgba(47, 111, 255, 0.22);
}

[hidden] {
  display: none !important;
}

.site-main {
  display: block;
}

.page-shell,
.container,
.hero-inner,
.platform-links,
.how-intro,
.how-story,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.page-shell--wide {
  width: min(1240px, calc(100% - 32px));
}

.page-shell--narrow {
  width: min(760px, calc(100% - 32px));
}

.section-panel {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-panel h2,
.how-intro h2,
.final-cta h2,
.page-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  text-wrap: balance;
}

.section-panel > h2 {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Russo One', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shield-blue);
}

button,
.cta-btn,
.utility-cta {
  font: inherit;
}

button:not(#theme-toggle):not(.dropdown-toggle),
.utility-cta {
  appearance: none;
  border: none;
  border-radius: 18px;
  padding: 14px 22px;
  min-height: 54px;
  background: linear-gradient(135deg, var(--shield-blue) 0%, var(--guard-green) 100%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-tight);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

button:not(#theme-toggle):not(.dropdown-toggle):hover,
.utility-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(7, 19, 31, 0.18);
}

button:disabled {
  opacity: 0.64;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cta-btn {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 26px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f2ff 100%);
  color: #0a2135;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(7, 19, 31, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 22px 54px rgba(7, 19, 31, 0.3);
}

.lang-switch {
  position: fixed !important;
  top: max(18px, env(safe-area-inset-top));
  right: 18px;
  z-index: 120;
  max-width: calc(100vw - 96px);
}

#theme-toggle {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  left: 18px;
  z-index: 120;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--control-border);
  border-radius: 16px;
  background: var(--control-bg);
  backdrop-filter: blur(18px);
  color: var(--control-text);
  box-shadow: var(--shadow-tight);
  cursor: pointer;
}

#theme-toggle .sun,
#theme-toggle .moon {
  display: none;
}

#theme-toggle .sun {
  color: #f8c15f;
}

body.light-theme #theme-toggle .moon {
  display: block;
}

body.dark-theme #theme-toggle .sun {
  display: block;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--control-border);
  border-radius: 16px;
  background: var(--control-bg);
  color: var(--control-text);
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-tight);
}

.dropdown-toggle span {
  font-size: 1rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  left: auto;
  margin-top: 10px;
  max-width: calc(100vw - 24px);
  min-width: 168px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-panel);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--surface-muted);
}

.dropdown-menu .flag {
  font-size: 1rem;
}

.show {
  display: block;
}

.page-header {
  padding: calc(max(88px, env(safe-area-inset-top) + 48px)) 0 18px;
}

.page-hero {
  display: grid;
  gap: 14px;
  padding: 8px 0 28px;
  text-align: center;
}

.page-hero--narrow {
  text-align: start;
}

.page-lede,
.page-meta {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.page-hero:not(.page-hero--narrow) .page-lede,
.page-hero:not(.page-hero--narrow) .page-meta {
  margin-inline: auto;
}

.site-home-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  text-decoration: none;
}

.site-home-link__label {
  font-family: 'Russo One', sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-home-link__mark {
  width: 44px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(47, 111, 255, 0.18));
}

body.dark-theme .site-home-link {
  color: #f4f9ff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  min-height: 92svh;
  padding: calc(max(110px, env(safe-area-inset-top) + 72px)) 0 clamp(40px, 6vw, 56px);
  background: var(--hero-bg);
  color: var(--hero-text);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  width: clamp(280px, 36vw, 440px);
  height: clamp(280px, 36vw, 440px);
  inset-inline-start: -8%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 170, 255, 0.18), transparent 72%);
}

.hero::after {
  width: 340px;
  height: 340px;
  inset-inline-end: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 201, 122, 0.14), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 18px;
  max-width: 580px;
}

.hero-copy .eyebrow {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(245, 249, 255, 0.72);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: var(--hero-text);
  text-wrap: balance;
}

.hero-copy > p:last-of-type {
  max-width: 34ch;
  font-size: clamp(1.05rem, 1.9vw, 1.36rem);
  color: var(--hero-muted);
}

.brand-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 520px;
  padding: 2px 0 4px;
  color: rgba(245, 249, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.brand-proof li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-inline-start: 18px;
}

.brand-proof li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--guard-green);
  box-shadow: 0 0 0 5px rgba(25, 201, 122, 0.13);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(340px, 44vw, 560px);
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 12% 10%;
  border-radius: 38px;
  border: 1px solid var(--hero-panel-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--hero-shadow);
  transform: rotate(-7deg);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 18% 18%;
  border-radius: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.brand-mark {
  position: relative;
  width: clamp(220px, 28vw, 350px);
  aspect-ratio: 1;
  z-index: 2;
  display: grid;
  place-items: center;
}

.brand-mark__shield {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.28));
}

.hero-browser-peek {
  position: absolute;
  inset-inline-start: 2%;
  bottom: 8%;
  width: clamp(220px, 24vw, 320px);
  padding: 14px;
  border-radius: 26px;
  border: 1px solid var(--hero-panel-border);
  background: rgba(7, 19, 31, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: var(--hero-shadow);
  transform: rotate(-6deg);
  z-index: 1;
}

.hero-browser-peek__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
}

.hero-browser-peek__bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.hero-browser-peek__search {
  flex: 1;
  height: 12px;
  margin-inline-start: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-browser-peek__body {
  display: grid;
  gap: 10px;
}

.hero-browser-peek__body > span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-browser-peek__body > span:nth-child(1) {
  width: 94%;
}

.hero-browser-peek__body > span:nth-child(2) {
  width: 72%;
}

.hero-browser-peek__body > span:nth-child(3) {
  width: 82%;
}

.hero-browser-peek__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.hero-browser-peek__tiles span {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero-browser-peek__tiles .is-safe {
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(121, 170, 255, 0.24));
}

.hero-browser-peek__tiles .is-blocked {
  background: linear-gradient(180deg, rgba(224, 87, 91, 0.68), rgba(154, 38, 44, 0.54));
}

.platform-links {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: min(1180px, calc(100% - 32px));
  margin-top: clamp(34px, 4.5vw, 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(7, 19, 31, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-links__label {
  flex: 1 1 auto;
  min-width: 116px;
  padding-inline: 14px 8px;
  color: rgba(245, 249, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.platform-link {
  position: relative;
  min-height: 46px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--hero-text);
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.platform-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.platform-link-soon {
  opacity: 0.72;
  cursor: default;
}

.platform-link-soon:hover {
  transform: none;
}

.platform-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.platform-icons .platform-icon-wrap {
  width: 30px;
  height: 30px;
}

.platform-icons .platform-icon {
  width: 22px;
  height: 22px;
}

.platform-icons--triple .platform-icon-wrap {
  width: 28px;
  height: 28px;
  margin-inline-end: -6px;
}

.platform-icons--triple .platform-icon {
  width: 20px;
  height: 20px;
}

.platform-icon-wrap {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.platform-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.coming-soon-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--hero-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.how-it-works {
  padding: clamp(76px, 10vw, 124px) 0 0;
}

.how-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.how-intro p:last-child {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.how-story {
  position: relative;
  min-height: 380vh;
}

.how-story__sticky {
  position: sticky;
  top: calc(max(78px, env(safe-area-inset-top) + 52px));
  min-height: calc(100vh - max(98px, env(safe-area-inset-top) + 72px));
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.how-copy {
  display: grid;
  gap: 14px;
}

.how-copy__step {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 111, 255, 0.12);
  color: var(--shield-blue);
  font-family: 'Russo One', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.how-copy h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 3rem);
  text-wrap: balance;
}

.how-canvas {
  position: relative;
  min-height: clamp(500px, 66vh, 640px);
  border-radius: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-strong), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

body.dark-theme .how-canvas {
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.96), rgba(8, 20, 33, 0.88));
}

.how-canvas::before,
.how-canvas::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.how-canvas::before {
  width: 260px;
  height: 260px;
  inset-inline-start: -80px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 255, 0.14), transparent 72%);
}

.how-canvas::after {
  width: 220px;
  height: 220px;
  inset-inline-end: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 201, 122, 0.12), transparent 70%);
}

.browser-skeleton,
.smartguard-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.browser-skeleton {
  width: min(590px, calc(100% - 56px));
  border-radius: 32px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

body.dark-theme .browser-skeleton {
  background: rgba(8, 20, 33, 0.94);
}

.browser-skeleton__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px;
  background: rgba(8, 26, 43, 0.04);
  border-bottom: 1px solid var(--line);
}

.browser-skeleton__bar > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(8, 26, 43, 0.2);
}

body.dark-theme .browser-skeleton__bar > span {
  background: rgba(244, 249, 255, 0.2);
}

.browser-skeleton__url {
  flex: 1;
  height: 14px;
  margin-inline-start: 10px;
  border-radius: 999px;
  background: rgba(8, 26, 43, 0.08);
}

body.dark-theme .browser-skeleton__url {
  background: rgba(244, 249, 255, 0.08);
}

.browser-skeleton__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(24px, 4vw, 38px);
  align-items: start;
}

.browser-copy {
  display: grid;
  gap: 12px;
}

.browser-copy span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(5, 10, 16, 0.9), rgba(5, 10, 16, 0.56));
}

body.dark-theme .browser-copy span {
  background: linear-gradient(90deg, rgba(244, 249, 255, 0.88), rgba(244, 249, 255, 0.48));
}

.browser-copy span:nth-child(1) {
  width: 94%;
}

.browser-copy span:nth-child(2) {
  width: 82%;
}

.browser-copy span:nth-child(3) {
  width: 88%;
}

.browser-copy span:nth-child(4) {
  width: 74%;
}

.browser-copy--short {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.browser-copy--short span:nth-child(1) {
  width: 100%;
}

.browser-copy--short span:nth-child(2) {
  width: 70%;
}

.browser-copy--short span:nth-child(3) {
  width: 84%;
}

.browser-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: center;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.browser-grid::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(90deg, transparent 0%, rgba(121, 170, 255, 0.82) 46%, rgba(255, 255, 255, 0.72) 58%, transparent 100%);
  transform: translateX(-125%);
  opacity: 0;
  filter: blur(1px);
  pointer-events: none;
  z-index: 3;
}

.how-story[data-stage='1'] .browser-grid::before {
  animation: scan-sweep 1.25s ease-in-out infinite;
  opacity: 1;
}

@keyframes scan-sweep {
  0% {
    transform: translateX(-125%);
  }

  58%,
  100% {
    transform: translateX(125%);
  }
}

.scan-tile {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(8, 26, 43, 0.1);
  background: linear-gradient(180deg, rgba(8, 26, 43, 0.03), rgba(8, 26, 43, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

body.dark-theme .scan-tile {
  border-color: rgba(244, 249, 255, 0.1);
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.06), rgba(244, 249, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.scan-tile::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(8, 26, 43, 0.12);
}

body.dark-theme .scan-tile::before {
  border-color: rgba(244, 249, 255, 0.12);
}

.scan-tile__face {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.72);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scan-tile--blocked .scan-tile__face {
  color: #ffffff;
}

.scan-tile--blocked::after {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 8px, transparent 8px 16px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-story[data-stage='2'] .scan-tile--safe,
.how-story[data-stage='3'] .scan-tile--safe,
.how-story[data-stage='4'] .scan-tile--safe,
.how-story[data-stage='5'] .scan-tile--safe {
  border-color: rgba(47, 111, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(121, 170, 255, 0.24));
}

.how-story[data-stage='2'] .scan-tile--safe .scan-tile__face,
.how-story[data-stage='3'] .scan-tile--safe .scan-tile__face,
.how-story[data-stage='4'] .scan-tile--safe .scan-tile__face,
.how-story[data-stage='5'] .scan-tile--safe .scan-tile__face {
  color: var(--shield-blue);
  opacity: 1;
  transform: scale(1);
}

.how-story[data-stage='3'] .scan-tile--blocked,
.how-story[data-stage='4'] .scan-tile--blocked,
.how-story[data-stage='5'] .scan-tile--blocked {
  border-color: rgba(224, 87, 91, 0.48);
  background: linear-gradient(180deg, rgba(224, 87, 91, 0.24), rgba(224, 87, 91, 0.58));
}

.how-story[data-stage='3'] .scan-tile--blocked .scan-tile__face,
.how-story[data-stage='4'] .scan-tile--blocked .scan-tile__face,
.how-story[data-stage='5'] .scan-tile--blocked .scan-tile__face {
  opacity: 1;
  transform: scale(1);
}

.how-story[data-stage='3'] .scan-tile--blocked::after,
.how-story[data-stage='4'] .scan-tile--blocked::after,
.how-story[data-stage='5'] .scan-tile--blocked::after {
  opacity: 1;
}

.smartguard-mark {
  width: clamp(244px, 35vw, 360px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  pointer-events: none;
}

.smartguard-mark__shield {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(7, 19, 31, 0.28));
}

.how-story[data-stage='4'] .browser-skeleton {
  opacity: 0.38;
  transform: translate(-50%, -50%) scale(0.94);
}

.how-story[data-stage='5'] .browser-skeleton {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
}

.how-story[data-stage='4'] .browser-copy,
.how-story[data-stage='5'] .browser-copy,
.how-story[data-stage='4'] .browser-copy--short,
.how-story[data-stage='5'] .browser-copy--short {
  opacity: calc(1 - ((var(--story-progress) - 0.74) * 6.6));
}

.how-story[data-stage='4'] .browser-grid {
  transform: translate(-14%, -1%) scale(0.9);
}

.how-story[data-stage='5'] .browser-grid {
  opacity: 0;
  transform: translate(-18%, -1%) scale(0.84);
}

.how-story[data-stage='4'] .smartguard-mark {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0.9);
}

.how-story[data-stage='5'] .smartguard-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.how-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: how-step;
}

.how-steps li {
  position: relative;
  min-height: 100%;
  padding: 18px 18px 18px 56px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  counter-increment: how-step;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

html[dir='rtl'] .how-steps li {
  padding: 18px 56px 18px 18px;
}

.how-steps li::before {
  content: counter(how-step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: 'Russo One', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--shield-blue);
}

html[dir='rtl'] .how-steps li::before {
  left: auto;
  right: 18px;
}

.how-steps li.is-active {
  border-color: rgba(47, 111, 255, 0.2);
  background: linear-gradient(180deg, rgba(47, 111, 255, 0.08), rgba(255, 255, 255, 0.8));
  color: var(--heading);
  transform: translateY(-2px);
}

body.dark-theme .how-steps li.is-active {
  background: linear-gradient(180deg, rgba(47, 111, 255, 0.14), rgba(10, 24, 38, 0.96));
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature h4 {
  font-size: 1.25rem;
}

.feature p {
  color: var(--muted);
}

.feature-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-icon::before,
.feature-icon::after {
  content: '';
  position: absolute;
}

.feature-icon--shield::before {
  inset: 8px;
  background: url('resources/icon_1024.png') center / contain no-repeat;
}

.feature-icon--shield::after {
  display: none;
}

.feature-icon--lock::before {
  width: 24px;
  height: 20px;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  border-radius: 8px;
  border: 2px solid var(--shield-blue);
  background: rgba(47, 111, 255, 0.08);
  box-sizing: border-box;
}

.feature-icon--lock::after {
  width: 20px;
  height: 16px;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  border: 2px solid var(--shield-blue);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  box-sizing: border-box;
}

.feature-icon--bolt::before {
  inset: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(47, 111, 255, 0.24);
}

.feature-icon--bolt::after {
  top: 15px;
  left: 50%;
  width: 22px;
  height: 34px;
  background: linear-gradient(180deg, var(--shield-blue), var(--shield-blue-soft));
  clip-path: polygon(44% 0, 84% 0, 63% 38%, 86% 38%, 28% 100%, 42% 57%, 14% 57%);
  transform: translateX(-50%);
}

.feature-icon--custom::before {
  width: 14px;
  height: 14px;
  top: 16px;
  left: 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 18px 0 0 rgba(47, 111, 255, 0.28), 0 18px 0 var(--block-red), 18px 18px 0 var(--shield-blue);
}

.feature-icon--custom::after {
  inset: 12px;
  border-radius: 16px;
  border: 2px solid var(--shield-blue);
  transform: rotate(45deg) scale(0.56);
}

table {
  width: max-content;
  max-width: 100%;
  display: table;
  margin-inline: auto;
  table-layout: auto;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

thead th {
  background: linear-gradient(135deg, rgba(47, 111, 255, 0.96), rgba(18, 49, 77, 0.96));
  color: #ffffff;
}

th,
td {
  min-width: 0;
  padding: 16px 18px;
  text-align: center;
}

tbody td {
  border-top: 1px solid var(--line);
  color: var(--text);
}

tbody tr:nth-child(even) td {
  background: rgba(47, 111, 255, 0.03);
}

body.dark-theme tbody tr:nth-child(even) td {
  background: rgba(47, 111, 255, 0.06);
}

tbody td:nth-child(2) {
  background: rgba(25, 201, 122, 0.08);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 14px;
  width: min(800px, calc(100% - 32px));
  margin-inline: auto;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--shield-blue);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: '-';
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(76px, 10vw, 120px);
  padding: clamp(32px, 5vw, 50px);
  border-radius: 38px;
  background: var(--hero-bg);
  color: var(--hero-text);
  box-shadow: var(--hero-shadow);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: auto auto -120px -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 255, 0.22), transparent 72%);
}

.final-cta__mark {
  width: 94px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(7, 19, 31, 0.28));
  z-index: 1;
}

.final-cta__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.final-cta__copy .eyebrow {
  color: rgba(245, 249, 255, 0.72);
}

.final-cta__copy h2 {
  color: var(--hero-text);
}

.final-cta__copy p:last-child {
  max-width: 36ch;
  color: var(--hero-muted);
}

.final-cta .cta-btn {
  justify-self: end;
  position: relative;
  z-index: 1;
}

.utility-panel {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pricing-shell__embed {
  overflow: hidden;
  border-radius: 24px;
}

stripe-pricing-table {
  display: block;
}

.privacy-layout {
  display: grid;
  gap: 0;
}

.privacy-section {
  display: grid;
  gap: 14px;
}

.privacy-section h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.privacy-section + .privacy-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.privacy-list {
  display: grid;
  gap: 12px;
  padding-inline-start: 1.2rem;
  color: var(--muted);
}

.privacy-layout p {
  max-width: 68ch;
  color: var(--muted);
}

.utility-page main {
  padding-bottom: 12px;
}

.form-shell,
.status-panel {
  display: grid;
  gap: 20px;
}

.status-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.status-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-wrap: balance;
}

.status-hero__mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(47, 111, 255, 0.18));
}

.status-hero__icon {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(47, 111, 255, 0.12), rgba(25, 201, 122, 0.08));
  box-shadow: var(--shadow-soft);
}

.status-hero__icon::before,
.status-hero__icon::after {
  content: '';
  position: absolute;
}

.status-hero__icon--shield::before {
  inset: 18px;
  clip-path: polygon(50% 0%, 88% 12%, 88% 52%, 68% 84%, 50% 100%, 32% 84%, 12% 52%, 12% 12%);
  background: linear-gradient(180deg, rgba(47, 111, 255, 0.96), rgba(20, 49, 77, 0.96));
}

.status-hero__icon--shield::after {
  width: 12px;
  height: 12px;
  top: 24px;
  left: 24px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 16px 0 0 #ffffff, 0 16px 0 var(--block-red), 16px 16px 0 #ffffff;
}

.status-hero__icon--success::before {
  inset: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--guard-green), #0f8c55);
}

.status-hero__icon--success::after {
  width: 22px;
  height: 12px;
  top: 35px;
  left: 31px;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(-45deg);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--heading);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(47, 111, 255, 0.4);
  background: var(--surface-strong);
  box-shadow: 0 0 0 4px rgba(47, 111, 255, 0.12);
}

.form-shell button:not(#theme-toggle):not(.dropdown-toggle) {
  width: 100%;
  justify-content: center;
}

.message-banner {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
}

.message-banner--error {
  background: rgba(224, 87, 91, 0.14);
  border-color: rgba(224, 87, 91, 0.28);
  color: #a7252f;
}

body.dark-theme .message-banner--error {
  color: #ff9da1;
}

.message-banner--success {
  background: rgba(25, 201, 122, 0.14);
  border-color: rgba(25, 201, 122, 0.28);
  color: #0e7d48;
}

body.dark-theme .message-banner--success {
  color: #93f0bf;
}

.utility-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  text-decoration: none;
}

.utility-cta {
  justify-self: center;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  background: linear-gradient(135deg, var(--shield-blue) 0%, var(--guard-green) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-tight);
  text-decoration: none;
}

.utility-cta:hover {
  color: #ffffff;
}

.site-footer {
  margin-top: clamp(64px, 8vw, 96px);
  padding: 34px 0 46px;
  background: linear-gradient(180deg, rgba(6, 15, 24, 0.96), rgba(4, 10, 16, 1));
  color: var(--footer-text);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-home-link--footer {
  color: #ffffff;
}

.site-footer__meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

html[dir='rtl'] .site-footer__meta {
  justify-items: start;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__nav a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: #b7cdfd;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 360px;
  }

  .how-story {
    min-height: 330vh;
  }

  .how-story__sticky {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .how-copy {
    text-align: center;
    justify-items: center;
  }

  .how-copy h3 {
    max-width: 18ch;
  }

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

  .final-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .final-cta .cta-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .page-shell,
  .container,
  .hero-inner,
  .platform-links,
  .how-intro,
  .how-story,
  .final-cta,
  .page-shell--wide,
  .page-shell--narrow {
    width: min(100%, calc(100% - 24px));
  }

  .section-panel > h2 {
    width: min(100%, calc(100% - 24px));
  }

  .lang-switch {
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
  }

  #theme-toggle {
    top: max(12px, env(safe-area-inset-top));
    left: 12px;
    width: 44px;
    height: 44px;
  }

  .dropdown-toggle {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(max(78px, env(safe-area-inset-top) + 54px));
    padding-bottom: 24px;
  }

  .hero-inner {
    gap: 18px;
  }

  .hero-copy {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-copy > p:last-of-type {
    font-size: 1rem;
    line-height: 1.48;
  }

  .brand-proof {
    gap: 8px 16px;
    font-size: 0.9rem;
  }

  .platform-links {
    width: min(100%, calc(100% - 24px));
    max-width: none;
    margin-top: 20px;
    justify-content: flex-start;
    gap: 7px;
    padding: 8px;
    border-radius: 22px;
  }

  .platform-links__label {
    flex-basis: 100%;
    padding: 2px 6px 4px;
    font-size: 0.68rem;
  }

  .platform-link {
    flex: 1 1 108px;
    min-height: 42px;
    padding: 7px 9px;
    border-radius: 999px;
    gap: 7px;
  }

  .platform-icon-wrap,
  .platform-icons .platform-icon-wrap {
    width: 26px;
    height: 26px;
  }

  .platform-icon,
  .platform-icons .platform-icon {
    width: 20px;
    height: 20px;
  }

  .platform-icons--triple .platform-icon-wrap {
    width: 24px;
    height: 24px;
  }

  .platform-icons--triple .platform-icon {
    width: 18px;
    height: 18px;
  }

  .platform-name {
    font-size: 0.76rem;
    line-height: 1.1;
  }

  .hero-visual {
    min-height: 190px;
  }

  .brand-mark {
    width: min(46vw, 176px);
  }

  .hero-browser-peek {
    width: min(42vw, 160px);
    padding: 10px;
    border-radius: 18px;
  }

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

  table {
    width: 100%;
    display: block;
    table-layout: auto;
    overflow-x: auto;
  }

  th,
  td {
    min-width: 180px;
  }

  .how-story {
    min-height: 360vh;
  }

  .how-story__sticky {
    top: calc(max(70px, env(safe-area-inset-top) + 44px));
    min-height: calc(100vh - max(86px, env(safe-area-inset-top) + 56px));
    min-height: calc(100svh - max(86px, env(safe-area-inset-top) + 56px));
    align-content: start;
    gap: 14px;
  }

  .how-copy {
    gap: 10px;
  }

  .how-copy__step {
    min-width: 58px;
    min-height: 30px;
    padding: 0 12px;
  }

  .how-copy h3 {
    max-width: min(17ch, 100%);
    font-size: clamp(1.62rem, 7.2vw, 2.15rem);
    line-height: 1.08;
  }

  .how-canvas {
    width: 100%;
    min-height: clamp(230px, 38vh, 340px);
    min-height: clamp(230px, 38svh, 340px);
    border-radius: 26px;
  }

  .browser-skeleton {
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .browser-skeleton__bar {
    height: 38px;
    padding: 0 12px;
    gap: 7px;
  }

  .browser-skeleton__bar > span {
    width: 7px;
    height: 7px;
  }

  .browser-skeleton__url {
    height: 10px;
  }

  .browser-skeleton__body {
    grid-template-columns: minmax(62px, 0.72fr) minmax(0, 1.28fr);
    gap: 14px;
    padding: 16px;
    align-items: center;
  }

  .browser-copy {
    gap: 8px;
  }

  .browser-copy span {
    height: 7px;
  }

  .browser-copy--short {
    display: none;
  }

  .browser-grid {
    gap: 10px;
    width: 100%;
    max-width: 190px;
    margin-inline: auto;
  }

  .scan-tile {
    border-radius: 14px;
  }

  .scan-tile::before {
    inset: 8px;
    border-radius: 10px;
  }

  .scan-tile__face {
    font-size: clamp(1.2rem, 5vw, 1.55rem);
  }

  .smartguard-mark {
    width: min(220px, 62vw);
  }

  .how-story[data-stage='4'] .browser-skeleton {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0.88);
  }

  .how-story[data-stage='4'] .smartguard-mark {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.94);
  }

  .how-story[data-stage='5'] .smartguard-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .how-steps {
    display: flex;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .how-steps li {
    flex: 0 0 min(82vw, 270px);
    min-height: 102px;
    padding: 16px 16px 16px 48px;
    scroll-snap-align: center;
  }

  html[dir='rtl'] .how-steps li {
    padding: 16px 48px 16px 16px;
  }

  .how-steps li::before {
    top: 16px;
    left: 16px;
  }

  html[dir='rtl'] .how-steps li::before {
    left: auto;
    right: 16px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .final-cta__copy {
    justify-items: center;
  }

  .final-cta__copy p:last-child {
    max-width: 42ch;
  }

  .final-cta .cta-btn {
    justify-self: center;
  }

  .site-footer__inner,
  .site-footer__meta {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .how-steps {
    grid-template-columns: 1fr;
  }

  .browser-skeleton__body {
    grid-template-columns: minmax(54px, 0.64fr) minmax(0, 1.36fr);
    gap: 10px;
    padding: 14px;
  }

  .browser-grid {
    max-width: min(184px, 50vw);
  }

  .how-story[data-stage='4'] .browser-grid,
  .how-story[data-stage='5'] .browser-grid {
    transform: translate(-6%, 0) scale(0.84);
  }

  th,
  td {
    min-width: 152px;
    padding: 14px 12px;
  }
}

@media (max-width: 360px) {
  .features {
    grid-template-columns: 1fr;
  }

  .platform-links {
    grid-template-columns: 1fr;
  }

  .dropdown-toggle {
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-visual::before,
  .hero-visual::after,
  .browser-grid::before {
    display: none;
  }

  .how-story {
    min-height: auto;
  }

  .how-story__sticky {
    position: static;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .how-canvas {
    min-height: auto;
    padding: 28px 0;
  }

  .browser-skeleton,
  .smartguard-mark {
    position: relative;
    top: auto;
    left: auto;
    width: min(590px, calc(100% - 32px));
    margin-inline: auto;
    opacity: 1;
    transform: none;
  }

  .smartguard-mark {
    margin-top: 28px;
  }

  .browser-grid,
  .scan-tile,
  .scan-tile__face {
    transform: none !important;
  }

  .browser-copy,
  .browser-copy--short {
    opacity: 1 !important;
  }

  .scan-tile--safe {
    border-color: rgba(47, 111, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(121, 170, 255, 0.24));
  }

  .scan-tile--safe .scan-tile__face,
  .scan-tile--blocked .scan-tile__face {
    opacity: 1;
  }

  .scan-tile--blocked {
    border-color: rgba(224, 87, 91, 0.48);
    background: linear-gradient(180deg, rgba(224, 87, 91, 0.24), rgba(224, 87, 91, 0.58));
  }

  .scan-tile--blocked::after {
    opacity: 1;
  }
}
