@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

@font-face {
  font-family: 'AtomX Display';
  src: url('./fonts/1.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: 'Manrope', sans-serif;
  background: #061018;
  color: #eaf3ff;
  --page-bg: #061018;
  --page-bg-deep: #03080d;
  --panel: rgba(10, 20, 29, 0.84);
  --panel-strong: rgba(12, 23, 33, 0.96);
  --panel-border: rgba(126, 194, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text-main: #f4f8ff;
  --text-muted: #95a9be;
  --text-soft: #71849a;
  --accent: #43c8ff;
  --accent-strong: #1295ec;
  --accent-soft: rgba(67, 200, 255, 0.14);
  --accent-glow: rgba(40, 164, 247, 0.28);
  --max-width: 1180px;
  --shadow-panel: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-glow: 0 24px 90px rgba(18, 149, 236, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 146, 228, 0.22), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(34, 122, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #08131d 0%, #04090f 52%, #02060a 100%);
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-shell,
.info-page {
  min-height: 100vh;
  overflow-x: clip;
}

.site-shell-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  vertical-align: middle;
}

.icon-16 {
  font-size: 16px;
}

.icon-18 {
  font-size: 18px;
}

.icon-20 {
  font-size: 20px;
}

.icon-22 {
  font-size: 22px;
}

.icon-24 {
  font-size: 24px;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar-row,
.subnav,
.brand,
.nav-links,
.footer-links,
.download-pill,
.menu-toggle,
.primary-button,
.ghost-button,
.mobile-menu,
.eyebrow,
.hero-title,
.hero-actions,
.hero-meta,
.hero-showcase,
.hero-preview-card,
.trust-strip,
.section-kicker,
.section-header h2,
.feature-icon,
.access-card,
.access-copy h2,
.check-list,
.stats-grid,
.security-card,
.cta-shell,
.back-link,
.info-card-title {
  user-select: none;
  -webkit-user-select: none;
}

.topbar,
.subnav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.topbar {
  padding: 20px 0;
  transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.topbar-scrolled,
.subnav {
  background: rgba(4, 9, 14, 0.72);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-text {
  font-family: 'AtomX Display', 'Sora', sans-serif;
  font-size: 1.52rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text-small {
  font-size: 1.2rem;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
}

.nav-links a,
.footer-links a,
.back-link {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.back-link:hover {
  color: white;
}

.download-pill,
.menu-toggle,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
}

.download-pill,
.primary-button {
  position: relative;
  overflow: hidden;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #39c6ff 0%, #1295ec 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(18, 149, 236, 0.28);
}

.download-pill {
  padding: 12px 18px;
}

.primary-button {
  padding: 16px 24px;
}

.primary-button::after,
.download-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.primary-button:hover::after,
.download-pill:hover::after {
  transform: translateX(140%);
}

.primary-button:hover,
.download-pill:hover,
.ghost-button:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
}

.primary-button-content,
.download-pill > * {
  position: relative;
  z-index: 1;
}

.primary-button-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.primary-button-glow {
  position: absolute;
  inset: auto auto -70% -10%;
  width: 68%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.ghost-button,
.menu-toggle {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.ghost-button {
  padding: 16px 22px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 84px 16px auto;
  z-index: 45;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: rgba(8, 15, 22, 0.96);
  box-shadow: var(--shadow-panel);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.05rem;
}

.mobile-menu-download {
  margin-top: 8px;
}

.hero-section,
.section,
.info-hero {
  position: relative;
}

.hero-section {
  padding: 116px 0 56px;
}

.hero-backdrop,
.access-glow,
.info-hero-glow,
.cta-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
}

.hero-backdrop {
  width: min(40vw, 520px);
  height: min(40vw, 520px);
  opacity: 0.9;
  animation: drift 12s ease-in-out infinite;
}

.hero-backdrop-left {
  top: 60px;
  left: -6vw;
  background: rgba(34, 142, 255, 0.22);
}

.hero-backdrop-right {
  top: 120px;
  right: -8vw;
  background: rgba(64, 202, 255, 0.16);
  animation-delay: -6s;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 80%);
  opacity: 0.35;
}

.hero-layout,
.access-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.hero-copy,
.section-header,
.security-summary,
.cta-shell {
  position: relative;
}

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

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow,
.panel-label {
  padding: 10px 14px;
  border-radius: 999px;
  color: #83ddff;
  background: rgba(67, 200, 255, 0.1);
  border: 1px solid rgba(131, 221, 255, 0.14);
}

.section-kicker {
  color: #7bd6ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-title,
.section-header h2,
.access-copy h2,
.cta-shell h2,
.info-hero h1,
.security-summary h2 {
  margin: 0;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(3.4rem, 7.6vw, 6.1rem);
}

.access-copy .eyebrow {
  margin-bottom: 24px;
}

.hero-title span {
  color: #74d7ff;
}

.hero-description,
.section-header p,
.access-copy p,
.cta-shell p,
.info-hero p,
.feature-card p,
.security-card p,
.info-card-body p,
.policy-note,
.security-summary > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-description {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #86deff;
  background: rgba(67, 200, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbeeff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.hero-preview-card,
.floating-panel,
.feature-card,
.access-card,
.stat-card,
.security-card,
.info-card,
.cta-shell {
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(11, 21, 31, 0.92), rgba(6, 14, 21, 0.98));
  box-shadow: var(--shadow-panel), var(--shadow-glow);
}

.hero-preview-card {
  position: relative;
  max-width: 520px;
  margin: 40px 0 0 auto;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
}

.hero-preview-card::before {
  content: '';
  position: absolute;
  inset: -30% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 200, 255, 0.18) 0%, rgba(67, 200, 255, 0) 70%);
}

.preview-head,
.preview-contact,
.preview-footer,
.floating-panel,
.security-card,
.info-card-title,
.policy-list li {
  display: flex;
  align-items: center;
}

.preview-head,
.preview-footer {
  justify-content: space-between;
  gap: 16px;
}

.preview-contact {
  gap: 14px;
}

.preview-contact strong,
.preview-contact span {
  display: block;
}

.preview-contact strong,
.floating-panel strong,
.server-city,
.feature-card h3,
.access-card h3,
.security-card h3,
.info-card h2 {
  color: white;
}

.preview-contact span,
.preview-badge,
.server-country,
.server-status,
.footer-copy,
.info-card-body p,
.policy-list span {
  color: var(--text-muted);
}

.preview-avatar,
.preview-send,
.floating-panel-icon,
.security-card-icon,
.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.preview-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: white;
  font-family: 'AtomX Display', 'Sora', sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, rgba(67, 200, 255, 0.26), rgba(18, 149, 236, 0.82));
}

.preview-badge,
.server-status,
.server-flag {
  font-weight: 700;
}

.preview-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(67, 200, 255, 0.1);
  color: #8de1ff;
}

.preview-messages {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.message-bubble {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 22px;
  line-height: 1.6;
}

.message-bubble-incoming {
  background: rgba(255, 255, 255, 0.04);
  border-top-left-radius: 10px;
  color: #deebf8;
}

.message-bubble-outgoing {
  justify-self: end;
  background: linear-gradient(135deg, rgba(61, 191, 255, 0.24), rgba(18, 149, 236, 0.62));
  border-top-right-radius: 10px;
  color: white;
}

.preview-input {
  flex: 1 1 auto;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  display: flex;
  align-items: center;
}

.preview-send,
.floating-panel-icon,
.security-card-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #8de1ff;
  background: rgba(67, 200, 255, 0.12);
}

.preview-send {
  border-radius: 50%;
  background: linear-gradient(135deg, #39c6ff 0%, #1295ec 100%);
  color: white;
}

.floating-panel {
  position: absolute;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  max-width: 250px;
}

.floating-panel span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  line-height: 1.5;
}

.floating-panel-access {
  left: -16px;
  bottom: 94px;
}

.floating-panel-security {
  right: -8px;
  top: 18px;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.trust-item {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}

.trust-item strong,
.stat-card strong {
  display: block;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.trust-item strong {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.trust-item span,
.stat-card span,
.cta-note {
  color: var(--text-muted);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-header,
.security-summary,
.cta-shell {
  text-align: center;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-header-tight {
  margin-bottom: 42px;
}

.section-header h2,
.access-copy h2,
.cta-shell h2,
.info-hero h1,
.security-summary h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.section-header h2,
.security-summary h2,
.cta-shell h2,
.info-hero h1 {
  margin-top: 18px;
}

.section-header p,
.security-summary > p,
.cta-shell p,
.info-hero p {
  max-width: 720px;
  margin: 18px auto 0;
}

.feature-grid,
.stats-grid,
.security-grid,
.info-content {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.info-card {
  border-radius: 28px;
  padding: 28px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.security-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 194, 255, 0.26);
}

.feature-icon {
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.access-section {
  overflow: hidden;
}

.access-glow,
.info-hero-glow {
  background: rgba(26, 140, 224, 0.2);
}

.access-glow {
  width: 520px;
  height: 520px;
  right: -140px;
  top: -40px;
}

.access-card-wrap {
  position: relative;
}

.access-card-shadow {
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(67, 200, 255, 0.3), rgba(67, 200, 255, 0));
  filter: blur(28px);
}

.access-card {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  padding: 30px;
}

.access-card-header,
.access-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-label {
  margin-bottom: 14px;
}

.access-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.access-switch {
  width: 62px;
  height: 36px;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #39c6ff 0%, #1295ec 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.access-switch-knob {
  width: 28px;
  height: 28px;
  margin-left: auto;
  border-radius: 50%;
  background: white;
}

.server-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.server-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.server-row-active {
  border-color: rgba(126, 194, 255, 0.28);
  background: rgba(67, 200, 255, 0.08);
}

.server-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.server-flag {
  min-width: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: center;
  color: #9fe6ff;
  background: rgba(67, 200, 255, 0.08);
}

.server-city {
  font-weight: 700;
}

.server-status {
  font-size: 0.94rem;
}

.server-status-active,
.access-metric-right strong {
  color: #8de1ff;
}

.access-metrics {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.access-metrics span {
  color: var(--text-muted);
}

.access-metrics strong {
  display: block;
  margin-top: 6px;
  color: white;
}

.check-list,
.policy-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list li,
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dce8f6;
  line-height: 1.6;
}

.check-list li .icon,
.policy-list li .icon {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #7cd8ff;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 42px;
}

.stat-card {
  border-radius: 24px;
  padding: 26px 20px;
}

.stat-card strong {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.security-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 24px;
}

.security-card {
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 26px;
  text-align: left;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.security-card > div:last-child {
  flex: 1 1 auto;
}

.security-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.security-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.cta-section {
  padding-top: 88px;
}

.cta-shell {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  padding: 54px 34px;
  border-radius: 34px;
}

.cta-shell h2,
.cta-shell p,
.cta-actions,
.cta-note,
.cta-shell .section-kicker {
  position: relative;
  z-index: 1;
}

.cta-actions {
  justify-content: center;
  margin-top: 32px;
}

.cta-note {
  margin-top: 20px;
}

.cta-orb {
  width: 280px;
  height: 280px;
}

.cta-orb-left {
  left: -90px;
  top: -80px;
  background: rgba(66, 199, 255, 0.16);
}

.cta-orb-right {
  right: -110px;
  bottom: -100px;
  background: rgba(27, 120, 228, 0.22);
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid var(--line-soft);
}

.site-footer-plain {
  margin-top: 60px;
}

.footer-row {
  flex-wrap: wrap;
}

.footer-copy-centered {
  width: 100%;
  text-align: center;
}

.subnav {
  padding: 18px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-weight: 700;
}

.info-hero {
  padding: 72px 0 28px;
}

.info-hero-glow {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 0;
}

.info-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.info-content {
  padding-top: 20px;
}

.info-card-title {
  gap: 16px;
  margin-bottom: 18px;
}

.info-card-title .feature-icon {
  margin-bottom: 0;
}

.info-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.15;
}

.info-card-body {
  display: grid;
  gap: 14px;
}

.policy-list {
  display: grid;
  gap: 14px;
}

.policy-note {
  margin-top: 22px;
  color: white;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 0.1s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.float-card {
  animation: floatCard 6s ease-in-out infinite;
}

.float-panel-slow {
  animation: floatPanelSlow 7s ease-in-out infinite;
}

.float-panel-fast {
  animation: floatPanelFast 5.8s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.06);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes floatPanelSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-4px, 12px, 0);
  }
}

@keyframes floatPanelFast {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(6px, -12px, 0);
  }
}

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

  .hero-showcase {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-preview-card {
    margin: 24px auto 0;
  }

  .floating-panel-access {
    left: 8px;
    bottom: 18px;
  }

  .floating-panel-security {
    right: 8px;
    top: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .footer-row {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 104px;
  }

  .section {
    padding: 76px 0;
  }

  .topbar-row,
  .footer-row,
  .access-card-header,
  .access-metrics {
    gap: 14px;
  }

  .hero-preview-card,
  .feature-card,
  .security-card,
  .info-card,
  .access-card,
  .cta-shell {
    padding: 24px;
  }

  .hero-preview-card {
    border-radius: 28px;
  }

  .floating-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
  }

  .hero-showcase {
    display: grid;
    gap: 16px;
  }

  .hero-actions,
  .cta-actions,
  .hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    justify-content: center;
  }

  .server-row,
  .access-card-header,
  .access-metrics,
  .security-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
