:root {
  --primary: #1d93ff;
  --primary-dark: #0b6fd4;
  --secondary: #ff361d;
  --secondary-hover: #e42b16;
  --navy: #1d2939;
  --navy-deep: #101828;
  --ink: #1d2939;
  --muted: #475467;
  --muted-2: #667085;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --paper: #ffffff;
  --mist: #f2f4f7;
  --mist-2: #eaecf0;
  --success: #12b76a;
  --white: #ffffff;
  --overlay: rgba(16, 24, 40, 0.58);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
  --header-h: 84px;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 8vw, 112px);
  --gap: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Onest, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.accent {
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, outline-offset 0.2s ease;
}

.btn:hover {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  outline-color: var(--secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  outline-color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  outline-color: var(--primary);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-lede {
  max-width: 52ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.section-head.center {
  text-align: center;
}

.section-head.center .section-heading,
.section-head.center .section-lede {
  margin-inline: auto;
}

/* Header */
.topbar {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
}

.topbar a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 3px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(29, 41, 57, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-header.is-scrolled::before {
  background: rgba(16, 24, 40, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden),
.nav-toggle span:not(.visually-hidden)::before,
.nav-toggle span:not(.visually-hidden)::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav-toggle span:not(.visually-hidden) {
  position: relative;
  margin: 0 auto;
}

.nav-toggle span:not(.visually-hidden)::before,
.nav-toggle span:not(.visually-hidden)::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span:not(.visually-hidden)::before {
  top: -7px;
}

.nav-toggle span:not(.visually-hidden)::after {
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  margin-top: calc(var(--header-h) * -1);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 16, 28, 0.78) 0%, rgba(10, 16, 28, 0.42) 58%, rgba(10, 16, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.2), rgba(10, 16, 28, 0.55));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 28px) 0 64px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 38ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-device {
  position: absolute;
  right: -20px;
  bottom: 18px;
  width: min(100%, 560px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

/* Features */
.features {
  padding: var(--section) 0;
  background: var(--mist);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Banner */
.shield-banner {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.shield-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.82), rgba(16, 24, 40, 0.45)),
    url("../assets/backgrounds/section-banner-01.webp") center / cover no-repeat;
}

.shield-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.shield-banner h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.shield-banner p {
  max-width: 36ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.shield-banner .hero-actions {
  margin-top: 28px;
}

.shield-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.shield-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Speed */
.speed {
  padding: var(--section) 0;
  background: linear-gradient(180deg, #1d2939 0%, #8a94a6 100%);
  color: var(--white);
  text-align: center;
}

.speed h2 {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.speed p {
  max-width: 46ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.88);
}

.speed .btn {
  margin-top: 28px;
}

/* Markets */
.markets {
  padding: var(--section) 0;
  background: var(--mist);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.market-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius);
}

.market-card img.market-photo {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.market-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px;
}

.market-copy img {
  width: 40px;
  height: 40px;
}

.market-copy h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.market-copy p {
  color: var(--muted);
  font-size: 0.95rem;
}

.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.chip img {
  width: 22px;
  height: 22px;
}

/* Why */
.why {
  padding: var(--section) 0;
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--mist);
}

.why-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 28px;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.why-card p {
  margin-top: 10px;
  color: var(--muted);
}

/* Stats */
.stats {
  padding: var(--section) 0 calc(var(--section) - 16px);
  background: var(--mist);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
}

.stat-card strong {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  margin-top: 10px;
  font-size: 0.95rem;
}

.stat-orange {
  background: var(--secondary);
  color: var(--white);
}

.stat-orange strong {
  color: var(--navy-deep);
}

.stat-navy {
  background: var(--navy-deep);
  color: var(--white);
}

.stat-navy strong {
  color: var(--secondary);
}

.stat-blue {
  background: var(--primary);
  color: var(--white);
}

.stat-photo {
  grid-column: 3;
  grid-row: 1 / 3;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 24, 40, 0.45), rgba(16, 24, 40, 0.45)),
    url("../assets/backgrounds/stats-datacenter.webp") center / cover no-repeat;
  color: var(--white);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-photo p {
  max-width: 16ch;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

/* News */
.news {
  padding: var(--section) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px var(--gap);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.news-card picture {
  display: block;
}

.news-card h3 {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.news-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f4ff;
  color: #1570bf;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Contact */
.contact {
  padding: 0 0 var(--section);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.contact-copy {
  padding: clamp(32px, 5vw, 56px);
}

.contact-copy h2 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.contact-copy p {
  max-width: 38ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-list p {
  margin: 0;
}

.js-mail {
  cursor: pointer;
}

.contact-list a:hover {
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(32px, 5vw, 56px);
  background: var(--paper);
  color: var(--ink);
}

.contact-form .btn {
  justify-self: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--mist);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  background: var(--paper);
}

.form-note a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal {
  padding: var(--section) 0 calc(var(--section) + 24px);
  min-height: 58vh;
}

.legal h1 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.legal h2 {
  margin: 32px 0 12px;
  font-size: 1.35rem;
}

.legal p {
  max-width: 70ch;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.legal a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal .btn {
  margin: 12px 12px 0 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 36ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-brand .logo img {
  width: 150px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
}

.footer-nav h2 {
  margin-bottom: 16px;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav p {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 4px;
}

.subfooter {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.62);
}

.subfooter .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-size: 0.82rem;
}

.subfooter a:hover {
  color: var(--white);
}

/* Inner pages */
.page-inner .site-header::before {
  background: rgba(16, 24, 40, 0.94);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: 56px 0 72px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 16, 28, 0.82), rgba(10, 16, 28, 0.55)),
    url("../assets/parental/hero-banner.jpg") center / cover no-repeat;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero .lede {
  max-width: 46ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.page-hero-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.btn-outline {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.btn-outline:hover {
  outline-color: var(--paper);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--secondary);
}

a.feature-card {
  color: inherit;
}

.feature-card .more {
  display: inline-block;
  margin-top: 14px;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.deploy {
  padding: var(--section) 0;
  background: var(--mist);
}

.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.deploy-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.deploy-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}

.deploy-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.deploy-card p {
  margin-top: 10px;
  color: var(--muted);
}

.deploy-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.deploy-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--ink);
}

.deploy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.categories {
  padding: var(--section) 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-chip {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
  font-weight: 600;
}

.split {
  padding: 0 0 var(--section);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split-photo {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 8px;
}

.mini-stat {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--secondary);
}

.mini-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  padding: var(--section) 0;
  background: var(--mist);
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: none;
  color: var(--secondary);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "–";
}

.faq-item .faq-answer {
  display: none;
  padding: 0 36px 18px 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 1100px) {
  .deploy-grid,
  .split-grid,
  .mini-stats {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .deploy-grid,
  .split-grid,
  .mini-stats,
  .category-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .shield-grid,
  .stats-grid,
  .contact-panel,
  .footer-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .why-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-device {
    position: relative;
    right: auto;
    bottom: auto;
    margin-inline: auto;
  }

  .stat-photo {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .stats-grid {
    grid-template-rows: auto;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 20px;
    background: rgba(16, 24, 40, 0.96);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav .btn {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
  }

  .site-nav .btn {
    margin-top: 8px;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 16px);
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .market-grid,
  .market-card,
  .form-row,
  .footer-nav,
  .topbar .container,
  .subfooter .container {
    grid-template-columns: 1fr;
  }

  .market-card img.market-photo {
    min-height: 180px;
  }

  .feature-grid,
  .why-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }
}
