:root {
  --navy-950: #06152b;
  --navy-900: #0b1f3a;
  --navy-800: #12335f;
  --blue-600: #1479e8;
  --blue-500: #2196f3;
  --blue-100: #dff2ff;
  --blue-50: #f2f9ff;
  --ink: #10233f;
  --muted: #5f7188;
  --line: #dce7f1;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --shadow-sm: 0 12px 30px rgba(11, 31, 58, 0.07);
  --shadow-lg: 0 28px 70px rgba(7, 34, 69, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #62c3ff;
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  color: #fff;
  background: var(--blue-600);
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-180%);
  color: #fff;
  background: var(--navy-950);
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 231, 241, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand strong {
  color: #0d6dce;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--blue-600);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 12px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  box-shadow: 0 12px 28px rgba(20, 121, 232, 0.25), 0 0 0 5px rgba(33, 150, 243, 0.06);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(20, 121, 232, 0.32), 0 0 0 6px rgba(33, 150, 243, 0.09);
}

.button-secondary {
  color: var(--navy-900);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.05);
}

.button-secondary:hover {
  border-color: #a8c8e5;
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 76px;
  background:
    radial-gradient(circle at 84% 14%, rgba(98, 195, 255, 0.15), transparent 28%),
    linear-gradient(180deg, #f9fcff 0%, #fff 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(20, 121, 232, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 20%;
  right: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(54, 167, 255, 0.15);
  filter: blur(80px);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.1);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 9vw, 4.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 6.8vw, 3.25rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-actions .button {
  width: 100%;
}

.hero-note {
  margin: 22px 0 0;
  color: #62758c;
  font-size: 13px;
  font-weight: 650;
}

.hero-note span {
  color: #9bb0c5;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(20, 121, 232, 0.15);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(10, 41, 82, 0.72), rgba(7, 23, 47, 0.92)),
    radial-gradient(circle at 80% 16%, #1479e8, transparent 44%);
  box-shadow: var(--shadow-lg);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(93, 184, 255, 0.28);
}

.bot-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(82%, 330px);
  padding: 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(1, 14, 31, 0.34);
  backdrop-filter: blur(12px);
}

.bot-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.bot-head > span:nth-child(2),
.bot-message > span:last-child {
  display: grid;
  gap: 2px;
}

.bot-head strong,
.bot-message strong {
  color: var(--navy-950);
  font-size: 13px;
  line-height: 1.35;
}

.bot-head small,
.bot-message small {
  color: #73849a;
  font-size: 10px;
  line-height: 1.45;
}

.bot-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--navy-900);
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: #33c881;
  box-shadow: 0 0 0 4px rgba(51, 200, 129, 0.12);
}

.bot-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid #e5edf5;
  border-radius: 14px;
  background: #f7fafc;
}

.message-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, #28bf7f, #61d69f);
  font-weight: 800;
}

.device-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.device-pills span {
  padding: 5px 8px;
  color: #52677e;
  border: 1px solid #dde8f1;
  border-radius: 99px;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
}

.bot-button {
  display: block;
  padding: 10px;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(0, 17, 37, 0.2);
  font-size: 11px;
  font-weight: 750;
}

.floating-chip b {
  color: #31bd7b;
}

.chip-one {
  top: 18%;
  right: 5%;
}

.chip-two {
  bottom: 15%;
  left: 4%;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow),
.explanation-card > p,
.final-inner > p,
.legal-intro {
  color: var(--muted);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.card-grid,
.benefits-grid,
.device-grid,
.steps-list {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #bdd8ed;
  box-shadow: var(--shadow-sm);
}

.info-card p,
.benefit p,
.step-card p,
.device-card p,
.use-cases p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 15px;
  background: var(--blue-50);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.steps-section,
.devices-section,
.faq-section {
  background: var(--surface-soft);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 25px rgba(11, 31, 58, 0.045);
}

.step-card a {
  color: var(--blue-600);
  font-weight: 700;
}

.step-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.center-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin-top: 30px;
  text-align: center;
}

.text-link {
  color: var(--blue-600);
  font-weight: 750;
  text-underline-offset: 5px;
}

.benefit {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-600);
  border-radius: 13px;
  background: var(--blue-50);
  font-size: 19px;
  font-weight: 800;
}

.devices-layout,
.explanation-grid,
.faq-layout {
  display: grid;
  gap: 34px;
}

.devices-layout .section-heading {
  margin-bottom: 0;
}

.muted {
  padding-left: 15px;
  border-left: 2px solid #9ed7ff;
  font-size: 0.9rem;
}

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

.device-card {
  min-width: 0;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.device-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.device-card p {
  font-size: 0.78rem;
}

.device-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--navy-800), var(--blue-600));
  box-shadow: 0 9px 20px rgba(20, 121, 232, 0.18);
  font-size: 20px;
}

.explanation-section {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  background: linear-gradient(135deg, #fff, #f8fbff);
}

.explanation-card p:last-child {
  margin-bottom: 0;
}

.use-cases {
  align-self: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 50%;
  background: var(--blue-50);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: 34px 24px;
  color: #dbeaf9;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(43, 160, 255, 0.5), transparent 32%),
    linear-gradient(135deg, #07172f, #0d376b);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: #bdd0e3;
}

.eyebrow.light {
  color: #80cfff;
}

.cta-network {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(122, 203, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(68, 175, 255, 0.035), 0 0 0 100px rgba(68, 175, 255, 0.02);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 12, 30, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.cta-actions small {
  color: #9fb6cc;
  text-align: center;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

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

.accordion summary span {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #eaf5ff;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  background: var(--blue-600);
  content: "";
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.answer {
  padding: 0 44px 22px 0;
}

.answer p {
  margin: 0;
  color: var(--muted);
}

.final-section {
  padding: 80px 0 88px;
  text-align: center;
}

.final-inner {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: center;
}

.final-inner img {
  margin-bottom: 22px;
  padding: 11px;
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.2);
}

.final-inner .button {
  margin-top: 16px;
}

.site-footer {
  padding-top: 56px;
  color: #9eb1c7;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 34px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand strong {
  color: #62c3ff;
}

.footer-grid > div > p {
  max-width: 340px;
  margin: 0;
  font-size: 14px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #a9bbce;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #cfe8ff;
}

/* Legal and utility pages */
.subpage .site-header {
  position: relative;
}

.legal-main {
  padding: 64px 0 88px;
  background: linear-gradient(180deg, #f8fbff 0, #fff 360px);
}

.legal-container {
  width: min(100% - 36px, 860px);
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--blue-600);
}

.legal-header {
  margin-bottom: 40px;
}

.legal-header h1 {
  max-width: 800px;
  font-size: clamp(1.9rem, 8vw, 4rem);
}

.legal-meta {
  color: #7a8ca0;
  font-size: 13px;
}

.legal-content {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.spaced-content {
  margin-top: 36px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.12rem;
}

.legal-content p,
.legal-content li {
  color: #4e6278;
}

.legal-content a {
  color: var(--blue-600);
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.notice {
  margin: 24px 0;
  padding: 18px;
  border-left: 3px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
  background: var(--blue-50);
}

.notice p {
  margin: 0;
}

.support-cards {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.not-found {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found-code {
  margin: 0;
  color: var(--blue-600);
  font-size: clamp(5rem, 28vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin-top: 30px;
  font-size: clamp(2rem, 9vw, 3.5rem);
}

.not-found p:not(.not-found-code) {
  max-width: 600px;
  margin-inline: auto;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 520px) {
  .hero-actions,
  .center-actions,
  .not-found-actions {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }

  .hero-actions .button {
    width: auto;
  }

  .floating-chip {
    display: flex;
  }

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

@media (min-width: 720px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .main-nav {
    display: flex;
  }

  .button-small {
    padding-inline: 18px;
    font-size: 14px;
  }

  .section {
    padding: 102px 0;
  }

  .three-cols,
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-grid {
    column-gap: 34px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .legal-content {
    padding: 46px;
  }
}

@media (min-width: 980px) {
  .hero {
    padding: 86px 0 100px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: 54px;
  }

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

  .steps-list {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-list::before {
    position: absolute;
    z-index: 0;
    top: 45px;
    right: 7%;
    left: 7%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bdd8ed 12%, #bdd8ed 88%, transparent);
    content: "";
  }

  .step-card {
    z-index: 1;
  }

  .devices-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    align-items: center;
    gap: 72px;
  }

  .explanation-grid {
    grid-template-columns: 1.18fr 0.82fr;
    gap: 80px;
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding: 54px 60px;
  }

  .cta-actions {
    min-width: 270px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
    gap: 80px;
  }

  .faq-layout .section-heading {
    position: sticky;
    top: 118px;
    align-self: start;
  }
}

@media (hover: hover) {
  .device-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .device-card:hover {
    transform: translateY(-4px);
    border-color: #b9d8ee;
    box-shadow: var(--shadow-sm);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(20px);
  }

  .motion-enabled .reveal {
    transition: opacity 600ms ease, transform 600ms ease;
  }

  .network-lines circle:nth-child(3n) {
    animation: network-pulse 3.4s ease-in-out infinite;
  }

  .floating-chip {
    animation: float 4.8s ease-in-out infinite;
  }

  .chip-two {
    animation-delay: -2s;
  }
}

@keyframes network-pulse {
  50% { opacity: 0.35; }
}

@keyframes float {
  50% { transform: translateY(-7px); }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .legal-main {
    padding: 0;
    background: #fff;
  }

  .legal-content {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
