:root {
  --bg: #050810;
  --bg-elevated: rgba(16, 22, 40, 0.98);
  --bg-soft: rgba(9, 14, 28, 0.92);
  --accent: #ffb54c;
  --accent-soft: rgba(255, 181, 76, 0.14);
  --accent-strong: #ff7a1a;
  --accent-secondary: #44e0c9;
  --text: #f7f8ff;
  --text-muted: #a5b0d4;
  --border-subtle: rgba(126, 140, 190, 0.22);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.78);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, #10152a 0, transparent 55%),
    radial-gradient(circle at 100% 0%, #191c35 0, transparent 55%),
    radial-gradient(circle at 50% 110%, #1e1f36 0, #050810 55%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  z-index: -1;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 96px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #ffe8c0 11%, #ffb54c 32%, #ff7a1a 65%, #171f38 100%);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 217, 155, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.apple-pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(165, 176, 212, 0.4);
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at 0 0, rgba(255, 181, 76, 0.4), transparent 60%),
    rgba(11, 15, 31, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.apple-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #fff, #ffb54c);
  box-shadow: 0 0 12px rgba(255, 181, 76, 0.9);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-copy {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(99, 227, 199, 0.4);
  background: radial-gradient(circle at 0 0, rgba(68, 224, 201, 0.4), transparent 65%),
    rgba(6, 13, 24, 0.96);
  margin-bottom: 24px;
}

.pill-spark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fff, #44e0c9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02050a;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-kicker span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1 {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}

.hero-title-highlight {
  background: linear-gradient(120deg, #fff7da 0, #ffb54c 28%, #ff7a1a 60%, #ffd889 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 28px;
}

.hero-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-metadata span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.metadata-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 181, 76, 0.7);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 155, 0.45);
  background: radial-gradient(circle at 0 0, rgba(255, 217, 155, 0.75), transparent 60%),
    linear-gradient(120deg, #18121a, #1e1510);
  color: #fefcf6;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 181, 76, 0.18);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.2s ease-out,
    background 0.2s ease-out;
}

.cta-primary::after {
  content: "";
  position: absolute;
  inset: -140%;
  background: conic-gradient(
    from 220deg,
    rgba(255, 255, 255, 0.18),
    transparent 22%,
    transparent 72%,
    rgba(255, 220, 180, 0.24),
    rgba(255, 255, 255, 0.35)
  );
  opacity: 0;
  transform: translate3d(-40%, 30%, 0) rotate(18deg);
  transition: opacity 0.3s ease-out, transform 0.4s ease-out;
  pointer-events: none;
}

.cta-primary span {
  position: relative;
  z-index: 1;
}

.cta-primary svg {
  position: relative;
  z-index: 1;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(255, 181, 76, 0.45);
  background: radial-gradient(circle at 10% -10%, rgba(255, 255, 255, 0.9), transparent 40%),
    linear-gradient(120deg, #201019, #281106);
}

.cta-primary:hover::after {
  opacity: 1;
  transform: translate3d(18%, -14%, 0) rotate(0deg);
}

.cta-secondary {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cta-secondary strong {
  color: #fbe3b8;
  font-weight: 600;
}

.hero-footnote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.visual-panel {
  position: relative;
}

.device-shell {
  border-radius: var(--radius-xl);
  padding: 12px;
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 181, 76, 0.55), transparent 58%),
    radial-gradient(circle at 110% 90%, rgba(68, 224, 201, 0.4), transparent 52%),
    linear-gradient(145deg, rgba(4, 7, 16, 0.96), rgba(6, 12, 26, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(147, 164, 222, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: 16px;
  row-gap: 12px;
}

.device-column {
  background: radial-gradient(circle at 10% -20%, rgba(255, 255, 255, 0.4), transparent 62%),
    radial-gradient(circle at 100% 0, rgba(255, 181, 76, 0.18), transparent 50%),
    rgba(5, 8, 16, 0.9);
  border-radius: 22px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(147, 164, 222, 0.42);
}

.device-frame {
  position: relative;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, #fdf7ea, #f0f3ff 36%, #cad3ff 72%, #7985d4 100%);
  padding: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 26px 50px rgba(0, 0, 0, 0.65);
}

.device-screen {
  border-radius: 16px;
  overflow: hidden;
  background: #050814;
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.chip-row {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  z-index: 2;
}

.chip {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 8, 18, 0.92);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  max-width: fit-content;
}

.chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #fff, #ffb54c);
  box-shadow: 0 0 8px rgba(255, 181, 76, 0.9);
  flex-shrink: 0;
}

.wave-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 8px;
}

.wave-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(67, 85, 144, 0.6);
}

.wave-toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wave-toggle-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.wave-toggle {
  position: relative;
  width: 56px;
  height: 28px;
  background: rgba(68, 85, 140, 0.4);
  border-radius: 999px;
  border: 1px solid rgba(100, 120, 180, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wave-toggle.active {
  background: rgba(255, 122, 26, 0.3);
  border-color: rgba(255, 181, 76, 0.5);
}

.wave-toggle-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wave-toggle.active .wave-toggle-handle {
  left: calc(100% - 25px);
  background: linear-gradient(135deg, #ff7a1a, #ffb54c);
}

.wave-tag {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(99, 227, 199, 0.4);
  color: var(--accent-secondary);
  font-size: 0.7rem;
}

.wave-bars {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 4px;
  align-items: flex-end;
  height: 88px;
  padding-top: 10px;
  padding-bottom: 8px;
}

.wave-bar {
  border-radius: 99px;
  transition: all 0.4s ease;
  transform-origin: center bottom;
}

/* Before state: blue and short - specific heights for each bar */
.wave-panel:not(.active) .wave-bar {
  background: linear-gradient(to top, rgba(74, 144, 226, 0.9), rgba(53, 122, 189, 0.3));
  opacity: 0.85;
  animation: bounceBefore 1.6s ease-in-out infinite;
}

.wave-panel:not(.active) .wave-bar:nth-child(1) { height: 18%; }
.wave-panel:not(.active) .wave-bar:nth-child(2) { height: 22%; }
.wave-panel:not(.active) .wave-bar:nth-child(3) { height: 15%; }
.wave-panel:not(.active) .wave-bar:nth-child(4) { height: 25%; }
.wave-panel:not(.active) .wave-bar:nth-child(5) { height: 20%; }
.wave-panel:not(.active) .wave-bar:nth-child(6) { height: 28%; }
.wave-panel:not(.active) .wave-bar:nth-child(7) { height: 16%; }
.wave-panel:not(.active) .wave-bar:nth-child(8) { height: 24%; }
.wave-panel:not(.active) .wave-bar:nth-child(9) { height: 19%; }
.wave-panel:not(.active) .wave-bar:nth-child(10) { height: 30%; }
.wave-panel:not(.active) .wave-bar:nth-child(11) { height: 21%; }
.wave-panel:not(.active) .wave-bar:nth-child(12) { height: 26%; }
.wave-panel:not(.active) .wave-bar:nth-child(13) { height: 17%; }
.wave-panel:not(.active) .wave-bar:nth-child(14) { height: 23%; }
.wave-panel:not(.active) .wave-bar:nth-child(15) { height: 20%; }
.wave-panel:not(.active) .wave-bar:nth-child(16) { height: 32%; }
.wave-panel:not(.active) .wave-bar:nth-child(17) { height: 22%; }
.wave-panel:not(.active) .wave-bar:nth-child(18) { height: 27%; }
.wave-panel:not(.active) .wave-bar:nth-child(19) { height: 18%; }
.wave-panel:not(.active) .wave-bar:nth-child(20) { height: 25%; }
.wave-panel:not(.active) .wave-bar:nth-child(21) { height: 16%; }
.wave-panel:not(.active) .wave-bar:nth-child(22) { height: 24%; }
.wave-panel:not(.active) .wave-bar:nth-child(23) { height: 14%; }
.wave-panel:not(.active) .wave-bar:nth-child(24) { height: 22%; }

.wave-panel:not(.active) .wave-bar:nth-child(3n) {
  background: linear-gradient(to top, rgba(53, 122, 189, 0.95), rgba(35, 100, 160, 0.25));
  animation-duration: 1.2s;
}

.wave-panel:not(.active) .wave-bar:nth-child(5n) {
  background: linear-gradient(to top, rgba(100, 160, 220, 0.9), rgba(74, 144, 226, 0.4));
  animation-duration: 1.9s;
}

/* After state: red and tall - specific heights for each bar */
.wave-panel.active .wave-bar {
  background: linear-gradient(to top, rgba(255, 122, 26, 0.95), rgba(255, 181, 76, 0.3));
  opacity: 0.95;
  animation: bounceAfter 1.6s ease-in-out infinite;
}

.wave-panel.active .wave-bar:nth-child(1) { height: 65%; }
.wave-panel.active .wave-bar:nth-child(2) { height: 78%; }
.wave-panel.active .wave-bar:nth-child(3) { height: 58%; }
.wave-panel.active .wave-bar:nth-child(4) { height: 82%; }
.wave-panel.active .wave-bar:nth-child(5) { height: 70%; }
.wave-panel.active .wave-bar:nth-child(6) { height: 88%; }
.wave-panel.active .wave-bar:nth-child(7) { height: 62%; }
.wave-panel.active .wave-bar:nth-child(8) { height: 80%; }
.wave-panel.active .wave-bar:nth-child(9) { height: 68%; }
.wave-panel.active .wave-bar:nth-child(10) { height: 92%; }
.wave-panel.active .wave-bar:nth-child(11) { height: 72%; }
.wave-panel.active .wave-bar:nth-child(12) { height: 85%; }
.wave-panel.active .wave-bar:nth-child(13) { height: 64%; }
.wave-panel.active .wave-bar:nth-child(14) { height: 79%; }
.wave-panel.active .wave-bar:nth-child(15) { height: 71%; }
.wave-panel.active .wave-bar:nth-child(16) { height: 95%; }
.wave-panel.active .wave-bar:nth-child(17) { height: 74%; }
.wave-panel.active .wave-bar:nth-child(18) { height: 83%; }
.wave-panel.active .wave-bar:nth-child(19) { height: 67%; }
.wave-panel.active .wave-bar:nth-child(20) { height: 81%; }
.wave-panel.active .wave-bar:nth-child(21) { height: 61%; }
.wave-panel.active .wave-bar:nth-child(22) { height: 77%; }
.wave-panel.active .wave-bar:nth-child(23) { height: 59%; }
.wave-panel.active .wave-bar:nth-child(24) { height: 75%; }

.wave-panel.active .wave-bar:nth-child(3n) {
  background: linear-gradient(to top, rgba(255, 181, 76, 0.98), rgba(255, 122, 26, 0.4));
  animation-duration: 1.2s;
}

.wave-panel.active .wave-bar:nth-child(5n) {
  background: linear-gradient(to top, rgba(255, 217, 155, 0.94), rgba(255, 181, 76, 0.5));
  animation-duration: 1.9s;
}

@keyframes bounceBefore {
  0%,
  100% {
    transform: scaleY(0.9);
  }
  35% {
    transform: scaleY(1.1);
  }
  60% {
    transform: scaleY(1.0);
  }
}

@keyframes bounceAfter {
  0%,
  100% {
    transform: scaleY(0.95);
  }
  35% {
    transform: scaleY(1.15);
  }
  60% {
    transform: scaleY(1.05);
  }
}

.wave-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.wave-footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wave-footer-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 230, 191, 0.9);
}

.wave-footer-text {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.wave-panel.active .wave-footer-text {
  color: #ffe5b9;
}

.wave-footer strong {
  color: #ffe5b9;
}

.sections {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
}

.sections + .sections {
  margin-top: 40px;
}

.card {
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
}

.card h2 {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.card-title span {
  color: var(--accent);
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(136, 152, 203, 0.6);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.steps {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step-number {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 181, 76, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #ffdba2;
}

.step-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding-top: 2px;
}

.card-label {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 20px;
}

.ratings-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4px;
}

.rating-block {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.rating-block strong {
  font-size: 1.12rem;
  font-weight: 600;
  color: #ffe3b6;
}

.rating-stars {
  color: var(--accent);
  font-size: 0.86rem;
}

.audience-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.audience-grid span::before {
  content: "•";
  margin-right: 6px;
  color: rgba(255, 181, 76, 0.9);
}

.geo-summary {
  margin: -40px 0 48px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.65);
}

.geo-summary-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 14px;
}

.geo-summary-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.geo-stats-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.geo-stats-list li {
  display: grid;
  grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(57, 69, 118, 0.35);
}

.geo-stats-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.geo-stat-value {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #ffe3b6;
  letter-spacing: -0.02em;
}

.geo-stat-label {
  color: var(--text-muted);
}

.geo-compare-intro {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.geo-table-wrap {
  overflow-x: auto;
  margin: 0 -4px;
  padding: 4px;
}

.geo-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.geo-compare-table th,
.geo-compare-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(57, 69, 118, 0.45);
}

.geo-compare-table thead th {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 230, 191, 0.85);
  background: rgba(5, 8, 16, 0.35);
}

.geo-compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--text);
  max-width: 11rem;
}

.geo-compare-table tbody tr:last-child th,
.geo-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.geo-faq-section .geo-faq-card {
  grid-column: 1 / -1;
}

.geo-faq-dek {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 24px;
}

.geo-faq-list {
  display: grid;
  gap: 28px;
}

.geo-faq-q {
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.geo-faq-a {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-updated {
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.92;
}

.footer-updated time {
  color: var(--accent-secondary);
  font-variant-numeric: tabular-nums;
}

footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(57, 69, 118, 0.7);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: var(--accent-secondary);
  border-bottom-color: rgba(68, 224, 201, 0.6);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .visual-panel {
    order: -1;
  }

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

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

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 16px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .hero-metadata {
    flex-direction: column;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .geo-stats-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
