:root {
  color-scheme: light;
  --bg: #f5f5f2;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: #fff5f4;
  --text: #161513;
  --muted: #68635c;
  --line: rgba(22, 21, 19, 0.08);
  --shadow: 0 18px 45px rgba(26, 22, 18, 0.08);
  --shadow-strong: 0 24px 60px rgba(168, 32, 32, 0.12);
  --accent: #df3e33;
  --accent-soft: #ffe2dc;
  --accent-strong: #b72d24;
  --warning: #f0a534;
  --success: #238b5c;
  --radius: 28px;
  --radius-sm: 18px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter Tight", "SF Pro Display", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(223, 62, 51, 0.14), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(240, 165, 52, 0.12), transparent 18%),
    linear-gradient(180deg, #fafaf8 0%, #f5f5f2 40%, #f0efeb 100%);
  color: var(--text);
}

img {
  max-width: 100%;
}

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

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

.page-shell {
  min-height: 100vh;
  padding: 24px 16px 112px;
}

.site-header {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.site-header-with-nav,
.seo-subpage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.landing-subnav,
.seo-subpage-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 244, 0.92));
  border: 1px solid rgba(22, 21, 19, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 34px rgba(26, 22, 18, 0.08);
  backdrop-filter: blur(14px);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.landing-subnav::-webkit-scrollbar,
.seo-subpage-nav::-webkit-scrollbar {
  display: none;
}

.landing-subnav .nav-pill,
.seo-subpage-nav .nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 21, 19, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.landing-subnav .nav-pill:hover,
.landing-subnav .nav-pill:focus-visible,
.seo-subpage-nav .nav-pill:hover,
.seo-subpage-nav .nav-pill:focus-visible {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(22, 21, 19, 0.12);
  box-shadow: 0 6px 16px rgba(26, 22, 18, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.landing-subnav .nav-pill[aria-current="page"],
.seo-subpage-nav .nav-pill[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  border-color: var(--accent-strong);
  box-shadow: 0 8px 20px rgba(183, 45, 36, 0.32);
}

.nav-pill-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.nav-pill[data-key="status"] .nav-pill-dot {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(35, 139, 92, 0.16);
}

.nav-pill[data-key="awarie"] .nav-pill-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 62, 51, 0.18);
  animation: navPillPulse 1.8s ease-in-out infinite;
}

.nav-pill[data-key="utrudnienia"] .nav-pill-dot {
  background: var(--warning);
  box-shadow: 0 0 0 3px rgba(240, 165, 52, 0.2);
}

.nav-pill[aria-current="page"] .nav-pill-dot {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
  animation: none;
}

.nav-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.nav-pill-badge--m1 {
  background: #c0272d;
}

.nav-pill-badge--m2 {
  background: #f0a534;
  color: #2a1d05;
}

.nav-pill[aria-current="page"] .nav-pill-badge {
  outline: 1.5px solid rgba(255, 255, 255, 0.85);
  outline-offset: 1px;
}

.nav-pill-text {
  display: inline-block;
}

@keyframes navPillPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(223, 62, 51, 0.18);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(223, 62, 51, 0.08);
  }
}

@media (max-width: 559px) {
  .landing-subnav,
  .seo-subpage-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .landing-subnav .nav-pill .nav-pill-text,
  .seo-subpage-nav .nav-pill .nav-pill-text {
    font-size: 0.84rem;
  }

  /* Compact long labels on narrow screens */
  .nav-pill[data-key="m1"] .nav-pill-text,
  .nav-pill[data-key="m2"] .nav-pill-text {
    display: none;
  }

  .nav-pill[data-key="m1"],
  .nav-pill[data-key="m2"] {
    padding: 6px 8px;
  }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 54px rgba(26, 22, 18, 0.11);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: contain;
  background: #ffffff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.brand-name {
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--text);
}

.brand-city {
  margin-top: 4px;
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 40px 0;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding-top: 16px;
}

.section-copy,
.section-heading {
  max-width: 620px;
}

.eyebrow,
.section-kicker,
.floating-label,
.stack-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.section-kicker {
  color: var(--accent-strong);
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(223, 62, 51, 0.12);
}

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

h1 {
  margin-top: 14px;
  font-size: clamp(2.45rem, 9vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.01rem;
}

h2 {
  margin-top: 12px;
  font-size: clamp(1.95rem, 8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.01rem;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.lead {
  margin-top: 18px;
  font-size: 1.05rem;
  max-width: 32rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 56px;
  border-radius: 12px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(26, 22, 18, 0.12));
}

.store-badge-image {
  display: block;
  height: 100%;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #ea4c40 0%, #d7392e 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid rgba(22, 21, 19, 0.08);
  box-shadow: var(--shadow);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-stat {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mini-stat strong {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-orbit-left {
  width: 180px;
  height: 180px;
  top: 22px;
  left: 10px;
  background: radial-gradient(circle, rgba(223, 62, 51, 0.16), transparent 68%);
}

.hero-orbit-right {
  width: 210px;
  height: 210px;
  right: 8px;
  bottom: 62px;
  background: radial-gradient(circle, rgba(240, 165, 52, 0.16), transparent 68%);
}

.phone-frame {
  position: relative;
  width: min(100%, 340px);
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1f1f22 0%, #0f1012 100%);
  box-shadow: 0 38px 90px rgba(21, 18, 18, 0.2);
}

.phone-frame-hero {
  transform: rotate(-5deg);
}

.phone-frame-small {
  width: min(100%, 230px);
  padding: 12px;
  border-radius: 34px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 36%;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 16, 18, 0.95);
  transform: translateX(-50%);
  z-index: 2;
}

.screen {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 610px;
  padding: 22px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 248, 245, 0.98) 100%),
    linear-gradient(135deg, rgba(223, 62, 51, 0.08), transparent 45%);
}

.screen-map {
  position: relative;
  padding: 0;
  min-height: 0;
  aspect-ratio: 1206 / 2622;
  background: #eef2fb;
}

.screen-map::before {
  display: none;
}

.hero-screen-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.screen-alt {
  min-height: 420px;
}

.screen-alt-image {
  position: relative;
  padding: 0;
  min-height: 0;
  aspect-ratio: 1206 / 2622;
  background: #f3f1ec;
}

.screen-alt-image::before {
  display: none;
}

.showcase-screen-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-screen-image-map {
  object-position: center center;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 25%);
  pointer-events: none;
}

.screen-topbar,
.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.screen-time {
  font-size: 0.85rem;
  font-weight: 700;
}

.screen-chip,
.route-status,
.status-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.chip-live,
.status-danger {
  color: var(--accent-strong);
  background: rgba(223, 62, 51, 0.12);
}

.chip-neutral {
  background: rgba(22, 21, 19, 0.06);
}

.chip-warning,
.status-warning {
  color: #905f12;
  background: rgba(240, 165, 52, 0.18);
}

.route-panel,
.alert-card,
.incident-card,
.route-check-card,
.route-answer {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 21, 19, 0.07);
  box-shadow: 0 12px 30px rgba(24, 20, 17, 0.06);
}

.route-panel,
.alert-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.route-panel {
  margin-top: 20px;
}

.route-panel p,
.alert-card p {
  font-size: 0.78rem;
}

.metro-map {
  position: relative;
  height: 320px;
  margin: 18px 0;
  border-radius: 28px;
  background:
    linear-gradient(0deg, rgba(22, 21, 19, 0.04), rgba(22, 21, 19, 0.04)),
    linear-gradient(90deg, rgba(22, 21, 19, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(22, 21, 19, 0.03) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

.line {
  position: absolute;
  border-radius: 999px;
}

.line-red {
  width: 70%;
  height: 8px;
  background: linear-gradient(90deg, #d7362c 0%, #f06c5c 100%);
  top: 42%;
  left: 14%;
  transform: rotate(-18deg);
}

.line-blue {
  width: 78%;
  height: 8px;
  background: linear-gradient(90deg, #5e90ff 0%, #1f64ff 100%);
  top: 46%;
  left: 12%;
  transform: rotate(72deg);
}

.station,
.mini-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(24, 20, 17, 0.15);
}

.station-safe,
.ok-a,
.ok-b {
  background: var(--success);
}

.station-warning,
.warn-a {
  background: var(--warning);
}

.station-danger,
.bad-a {
  background: var(--accent);
}

.station-1 {
  top: 28%;
  left: 24%;
}

.station-2 {
  top: 36%;
  left: 38%;
}

.station-3 {
  top: 44%;
  left: 51%;
}

.station-4 {
  top: 53%;
  left: 63%;
}

.station-5 {
  top: 62%;
  left: 53%;
}

.station-6 {
  top: 72%;
  left: 42%;
}

.alert-card-main {
  align-items: center;
}

.floating-card {
  position: absolute;
  max-width: 180px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card p {
  margin-top: 6px;
  font-size: 0.88rem;
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.floating-card-map {
  top: 56px;
  left: 0;
}

.floating-card-time {
  right: 0;
  bottom: 30px;
}

.split-section,
.feature-grid,
.workflow-list,
.screens-row,
.dual-grid {
  display: grid;
  gap: 18px;
}

.section-heading {
  margin-bottom: 18px;
}

.card-stack {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stack-title {
  color: var(--text);
  margin-bottom: 14px;
}

.stack-title-success {
  color: var(--success);
}

.info-card,
.feature-card,
.workflow-step,
.screen-showcase,
.final-cta-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.info-card,
.feature-card,
.workflow-step {
  padding: 18px;
}

.info-card + .info-card {
  margin-top: 12px;
}

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

.info-card p,
.feature-card p,
.workflow-step p,
.screen-showcase h3,
.screen-showcase p {
  font-size: 0.96rem;
}

.info-card-problem {
  background: linear-gradient(180deg, rgba(255, 247, 246, 0.98), rgba(255, 255, 255, 0.9));
}

.info-card-solution {
  background: linear-gradient(180deg, rgba(243, 255, 249, 0.98), rgba(255, 255, 255, 0.9));
}

.icon-badge,
.feature-icon,
.step-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

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

.icon-badge span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.icon-problem {
  background: rgba(223, 62, 51, 0.12);
}

.icon-problem span {
  background: var(--accent);
}

.icon-solution {
  background: rgba(35, 139, 92, 0.12);
}

.icon-solution span {
  background: var(--success);
}

.feature-card {
  padding: 22px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(223, 62, 51, 0.12), rgba(223, 62, 51, 0.06));
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.workflow-step h3,
.screen-showcase h3 {
  margin-bottom: 8px;
}

.workflow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(223, 62, 51, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
}

.screens-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.screens-row::-webkit-scrollbar {
  height: 8px;
}

.screens-row::-webkit-scrollbar-thumb {
  background: rgba(22, 21, 19, 0.14);
  border-radius: 999px;
}

.screen-showcase {
  flex: 0 0 min(78vw, 270px);
  min-width: 0;
  padding: 18px;
  scroll-snap-align: start;
}

.screen-showcase .phone-frame-small {
  margin: 0 auto 18px;
}

.mini-map-grid {
  position: relative;
  height: 290px;
  margin-top: 20px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(22, 21, 19, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(22, 21, 19, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mini-line {
  position: absolute;
  border-radius: 999px;
  height: 6px;
}

.red-a {
  width: 72%;
  top: 44%;
  left: 14%;
  background: #df3e33;
  transform: rotate(-12deg);
}

.blue-a {
  width: 64%;
  top: 48%;
  left: 18%;
  background: #226cff;
  transform: rotate(66deg);
}

.ok-a {
  top: 30%;
  left: 24%;
}

.warn-a {
  top: 42%;
  left: 46%;
}

.bad-a {
  top: 53%;
  left: 58%;
}

.ok-b {
  top: 66%;
  left: 43%;
}

.alert-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.alert-row {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border-radius: 15px;
  background: rgba(22, 21, 19, 0.04);
}

.alert-row strong,
.incident-card h4,
.route-answer strong {
  color: var(--text);
}

.alert-row-danger {
  background: rgba(223, 62, 51, 0.11);
}

.alert-row-warning {
  background: rgba(240, 165, 52, 0.14);
}

.incident-card,
.route-check-card,
.route-answer {
  padding: 18px;
  margin-top: 18px;
}

.incident-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(223, 62, 51, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.incident-card h4 {
  margin-top: 12px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.incident-card p,
.route-answer p {
  margin-top: 10px;
}

.incident-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.route-check-card {
  display: grid;
  gap: 10px;
}

.route-check-card span {
  display: block;
  padding: 13px 14px;
  border-radius: 13px;
  background: rgba(22, 21, 19, 0.04);
  font-weight: 600;
}

.route-answer {
  background: linear-gradient(180deg, rgba(243, 255, 249, 0.98), rgba(255, 255, 255, 0.94));
}

.final-cta {
  padding-bottom: 12px;
}

.final-cta-card {
  padding: 32px 22px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(223, 62, 51, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 249, 248, 0.96));
}

.final-cta-card p {
  max-width: 32rem;
  margin: 14px auto 0;
}

.seo-section-card,
.search-link-card,
.faq-card,
.seo-summary-card,
.seo-side-card,
.seo-signal-card,
.seo-note-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.seo-section-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 28px 22px;
  background:
    radial-gradient(circle at top right, rgba(223, 62, 51, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 249, 248, 0.96));
}

.seo-section-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -100px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 62, 51, 0.16), transparent 68%);
  pointer-events: none;
}

.seo-section-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 108, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.seo-section-main {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.seo-heading {
  margin-bottom: 0;
  max-width: 34rem;
}

.seo-heading h2 {
  max-width: 9ch;
  text-wrap: balance;
}

.seo-lead {
  margin-top: 0;
}

.seo-content {
  max-width: 38rem;
}

.seo-content p {
  max-width: 34rem;
}

.seo-content p + p {
  margin-top: 14px;
}

.seo-support-copy {
  position: relative;
  padding-left: 18px;
}

.seo-support-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ea4c40 0%, #d7392e 100%);
  box-shadow: 0 0 0 6px rgba(223, 62, 51, 0.1);
}

.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 21, 19, 0.07);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(26, 22, 18, 0.06);
}

.seo-chip-red {
  background: rgba(223, 62, 51, 0.1);
}

.seo-chip-amber {
  background: rgba(240, 165, 52, 0.14);
}

.seo-chip-blue {
  background: rgba(34, 108, 255, 0.1);
}

.seo-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.seo-button {
  margin-top: 22px;
  width: fit-content;
}

.seo-inline-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 21, 19, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.seo-quick-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-self: stretch;
  width: 100%;
}

.seo-signal-card,
.seo-note-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.seo-signal-card {
  background:
    radial-gradient(circle at top right, rgba(223, 62, 51, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(254, 248, 247, 0.96));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.seo-signal-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.seo-live-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seo-live-item,
.seo-status-row,
.seo-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(22, 21, 19, 0.04);
  border: 1px solid rgba(22, 21, 19, 0.04);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.seo-live-item span,
.seo-status-row span,
.seo-related-link span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.seo-live-item strong,
.seo-status-row strong,
.seo-related-link strong {
  margin-top: 0;
  font-size: 0.83rem;
}

.seo-live-item-warning {
  background: rgba(240, 165, 52, 0.12);
}

.seo-live-item-blue {
  background: rgba(34, 108, 255, 0.09);
}

.seo-live-item:hover,
.seo-live-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(22, 21, 19, 0.08);
}

.seo-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 6px rgba(22, 21, 19, 0.04);
}

.seo-live-dot-red {
  background: var(--accent);
}

.seo-live-dot-amber {
  background: var(--warning);
}

.seo-live-dot-blue {
  background: #226cff;
}

.seo-note-card {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, background-color 220ms ease;
}

.seo-note-card p {
  margin-top: 12px;
}

.seo-signal-card:hover,
.seo-note-card:hover {
  transform: translateY(-3px);
}

.popular-searches-grid,
.faq-grid,
.seo-summary-grid {
  display: grid;
  gap: 18px;
}

.search-link-card,
.faq-card,
.seo-summary-card,
.seo-side-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.search-link-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.search-link-card::before,
.faq-card::after,
.seo-summary-card::before,
.seo-side-card::before {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.search-link-card::before {
  width: 150px;
  height: 150px;
  top: -55px;
  right: -55px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 62, 51, 0.12), transparent 70%);
}

.search-link-card:hover,
.search-link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(26, 22, 18, 0.12);
}

.search-link-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.search-link-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.search-link-card p,
.faq-card p,
.seo-summary-card p {
  margin-top: 10px;
}

.search-link-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.search-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(223, 62, 51, 0.1);
  color: var(--accent-strong);
}

.faq-grid {
  counter-reset: faq-counter;
}

.faq-card h3,
.seo-summary-card h2 {
  margin-top: 0;
}

.faq-card {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  background:
    radial-gradient(circle at top right, rgba(223, 62, 51, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 249, 246, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(26, 22, 18, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-card::before {
  counter-increment: faq-counter;
  content: "0" counter(faq-counter);
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(223, 62, 51, 0.1);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-card::after {
  width: 150px;
  height: 150px;
  right: -50px;
  bottom: -55px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 165, 52, 0.1), transparent 70%);
}

.faq-card:hover,
.faq-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(26, 22, 18, 0.12);
  border-color: rgba(223, 62, 51, 0.14);
}

.faq-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-right: 54px;
}

.faq-tag,
.faq-answer-label,
.faq-highlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq-tag {
  background: rgba(223, 62, 51, 0.1);
  color: var(--accent-strong);
  text-transform: uppercase;
}

.faq-answer-label {
  background: rgba(22, 21, 19, 0.05);
  color: var(--text);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(223, 62, 51, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(223, 62, 51, 0.1);
  box-shadow: 0 10px 24px rgba(26, 22, 18, 0.06);
}

.faq-card h3 {
  max-width: 20ch;
  line-height: 1.04;
}

.faq-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.faq-highlight {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(22, 21, 19, 0.06);
  color: var(--muted);
}

.seo-page-main {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.seo-page-hero {
  display: grid;
  gap: 18px;
}

.seo-side-card {
  background:
    radial-gradient(circle at top right, rgba(34, 108, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

.seo-side-card::before,
.seo-summary-card::before {
  width: 180px;
  height: 180px;
  top: -65px;
  right: -75px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 62, 51, 0.08), transparent 70%);
}

.seo-status-stack,
.seo-related-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.status-pill-danger {
  background: rgba(223, 62, 51, 0.12);
  color: var(--accent-strong);
}

.status-pill-blue {
  background: rgba(34, 108, 255, 0.1);
  color: #184fbc;
}

.status-pill-warning {
  background: rgba(240, 165, 52, 0.18);
  color: #905f12;
}

.seo-side-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 21, 19, 0.06);
  color: var(--text);
}

.summary-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-related-link {
  color: inherit;
  transition: transform 180ms ease, background-color 180ms ease;
}

.seo-related-link:hover,
.seo-related-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(223, 62, 51, 0.08);
}

.seo-summary-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.seo-summary-card li + li {
  margin-top: 10px;
}

.site-footer {
  padding-top: 8px;
  padding-bottom: 0;
}

.site-footer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-footer-copy {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--accent-strong);
}

.site-footer-link:hover,
.site-footer-link:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-page-shell {
  padding-bottom: 72px;
}

.privacy-main {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.legal-hero {
  padding-top: 20px;
}

.legal-hero-card,
.legal-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.legal-hero-card {
  padding: 28px 22px;
  background:
    radial-gradient(circle at top right, rgba(223, 62, 51, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 249, 248, 0.96));
}

.legal-hero-card p {
  max-width: 42rem;
}

.legal-meta {
  margin-top: 16px;
  font-size: 0.94rem;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 24px 22px;
}

.legal-card h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 5vw, 2rem);
}

.legal-card h3 {
  margin-top: 20px;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card p + ol,
.legal-card ul + p,
.legal-card ol + p,
.legal-card ul + ul,
.legal-card ol + ol,
.legal-card hr + p,
.legal-card h3 + ul,
.legal-card h3 + p {
  margin-top: 14px;
}

.legal-card ul,
.legal-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-card li + li {
  margin-top: 10px;
}

.legal-card hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.legal-contact {
  display: grid;
  gap: 4px;
  margin-top: 14px;
}

.legal-contact strong {
  color: var(--text);
}

.legal-contact a {
  color: var(--accent-strong);
}

.legal-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(223, 62, 51, 0.06);
  border: 1px solid rgba(223, 62, 51, 0.12);
}

.legal-card .legal-note p {
  color: var(--text);
}

.cta-group-centered {
  justify-content: center;
  align-items: center;
}

.mobile-download-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 45px rgba(26, 22, 18, 0.12);
  backdrop-filter: blur(16px);
}

.store-badge-link-mobile {
  width: 100%;
  justify-content: center;
}

.mobile-download-bar .store-badge-image {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

.reveal-delay-1 {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 719.98px) {
  .hero .cta-group,
  .final-cta .cta-group {
    display: none;
  }

  .hero .hero-points {
    margin-top: 10px;
  }
}

@media (min-width: 720px) {
  .page-shell {
    padding: 28px 24px 36px;
  }

  .site-header {
    padding-top: 4px;
  }

  .section {
    padding: 56px 0;
  }

  .cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    min-width: 196px;
  }

  .hero-points,
  .feature-grid,
  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .mobile-download-bar {
    display: none;
  }

  .site-footer-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .seo-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .seo-page-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: stretch;
  }

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

  .seo-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .legal-card-compact {
    height: 100%;
  }
}

@media (min-width: 960px) {
  .screens-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 36px;
    min-height: calc(100vh - 72px);
  }

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

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

  .screen-showcase {
    min-width: 0;
  }

  .final-cta-card {
    padding: 40px;
  }

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

  .seo-section-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: center;
    gap: 32px;
    padding: 38px 34px;
  }

  .seo-section-main {
    padding-right: 10px;
  }

  .seo-quick-panel {
    max-width: 360px;
    justify-self: end;
  }

  .faq-card {
    min-height: 280px;
  }

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

.seo-content-page {
  color: var(--text);
}

.seo-breadcrumbs {
  width: min(100%, var(--content-width));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-breadcrumbs a {
  color: var(--accent-strong);
}

.seo-landing-lite {
  display: grid;
  gap: 18px;
  align-items: stretch;
  padding-top: 34px;
}

.seo-landing-lite h1 {
  max-width: 820px;
}

.seo-hero-copy,
.seo-side-panel,
.seo-summary-card {
  border-radius: 8px;
}

.seo-side-panel,
.seo-summary-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 21, 19, 0.08);
  box-shadow: 0 12px 30px rgba(24, 20, 17, 0.06);
}

.seo-side-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.seo-mini-status {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 21, 19, 0.08);
}

.seo-mini-status span {
  color: var(--muted);
  font-weight: 700;
}

.seo-mini-status strong {
  text-align: right;
}

.seo-summary-grid,
.seo-entity-grid {
  display: grid;
  gap: 12px;
}

.seo-summary-card h2 {
  font-size: clamp(1.55rem, 5vw, 2.25rem);
}

.seo-summary-card p {
  margin-top: 12px;
}

.seo-summary-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.seo-related-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.seo-related-link,
.seo-entity-link {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 21, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.seo-related-link span,
.seo-entity-link span {
  font-weight: 850;
  color: var(--text);
}

.seo-related-link strong,
.seo-entity-link strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(223, 62, 51, 0.1);
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.seo-entity-section,
.seo-article-body {
  padding-top: 24px;
}

.seo-article-body .seo-summary-card {
  max-width: 820px;
  margin: 0 auto;
}

.seo-article-body p + p {
  margin-top: 16px;
}

@media (min-width: 720px) {
  .seo-landing-lite {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

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

@media (min-width: 960px) {
  .seo-entity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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