:root {
  --blue-950: #061b3a;
  --blue-900: #08285a;
  --blue-800: #0a3678;
  --blue-700: #0d4ea6;
  --blue-600: #1168d8;
  --blue-100: #eaf3ff;
  --cyan-400: #35c7f4;
  --ink: #102033;
  --muted: #637085;
  --line: #dce8f6;
  --white: #ffffff;
  --soft: #f6faff;
  --shadow: 0 24px 70px rgba(8, 40, 90, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 232, 246, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  box-shadow: 0 14px 40px rgba(8, 40, 90, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(142px, 18vw, 220px);
  min-width: 132px;
  gap: 10px;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: 0;
}

.brand img {
  width: 100%;
  height: 54px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  box-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #314156;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a[aria-current="page"] {
  color: var(--blue-700);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
}

.section,
.hero {
  padding: 112px clamp(20px, 6vw, 84px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: 86vh;
  padding-top: 132px;
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding: 148px clamp(20px, 6vw, 84px) 78px;
  overflow: hidden;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

.section-blue {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(53, 199, 244, 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800) 58%, #0e66c4);
}

.section-blue::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.hero__content,
.hero__visual,
.section > *,
.split,
.cta__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-blue .eyebrow,
.hero .eyebrow {
  color: #aee8ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.25rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-blue h2,
.section-blue h3,
.section-blue p,
.hero p {
  color: var(--white);
}

.hero__slogan {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 800;
}

.hero__text {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
}

.hero__actions,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: 0 18px 38px rgba(17, 104, 216, 0.28);
}

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

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary-light {
  color: var(--blue-900);
  border-color: var(--line);
  background: var(--white);
}

.btn-danger {
  color: var(--white);
  background: linear-gradient(135deg, #d92d4a, #ff6b64);
  box-shadow: 0 18px 38px rgba(217, 45, 74, 0.22);
}

.btn-outline {
  color: var(--blue-900);
  border-color: rgba(17, 104, 216, 0.22);
  background: var(--white);
}

.network-map {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(35deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.23);
}

.map-compact {
  min-height: 480px;
}

.route {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(174, 232, 255, 0.1), #aee8ff, rgba(174, 232, 255, 0.2));
  transform-origin: left center;
  animation: routeGlow 3s ease-in-out infinite;
}

.route-one {
  top: 50%;
  left: 20%;
  width: 54%;
  transform: rotate(-18deg);
}

.route-two {
  top: 34%;
  left: 34%;
  width: 42%;
  transform: rotate(28deg);
  animation-delay: 0.4s;
}

.route-three {
  top: 68%;
  left: 24%;
  width: 48%;
  transform: rotate(8deg);
  animation-delay: 0.8s;
}

.map-node {
  cursor: pointer;
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.map-node:hover,
.map-node.is-selected {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.safe-node::before {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(53, 199, 244, 0.55);
  border-radius: inherit;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

.map-node span,
.safe-node small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.node-home {
  left: 10%;
  top: 45%;
}

.node-one {
  right: 14%;
  top: 18%;
}

.node-two {
  right: 18%;
  bottom: 17%;
}

.node-three {
  left: 42%;
  top: 30%;
}

.safe-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  width: min(250px, calc(100% - 52px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.safe-badge span {
  color: var(--blue-600);
  font-weight: 900;
  text-transform: uppercase;
}

.safe-badge strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.hero-survey-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(35deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.23);
}

.hero-survey-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero-survey-card p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-survey-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.survey-share-box {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.survey-share-box img {
  width: 150px;
  height: 150px;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
}

.survey-share-box label {
  color: var(--white);
  font-weight: 900;
}

.survey-share-box input {
  color: var(--blue-950);
  font-size: 0.9rem;
  background: var(--white);
}

.survey-copy-status {
  margin: 12px 0 0;
  color: #aee8ff;
  font-weight: 900;
}

.section-head {
  max-width: 960px;
  margin: 0 auto 44px;
  text-align: center;
}

.city-map {
  position: relative;
  max-width: 1120px;
  min-height: 520px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(17, 104, 216, 0.12), transparent 24%),
    radial-gradient(circle at 78% 74%, rgba(53, 199, 244, 0.18), transparent 26%),
    linear-gradient(135deg, #f7fbff, #eaf3ff);
  box-shadow: var(--shadow);
}

.city-map::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(17, 104, 216, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 104, 216, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
}

.city-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(17, 104, 216, 0.13);
}

.city-road.r1 { left: -8%; top: 24%; width: 118%; transform: rotate(-14deg); }
.city-road.r2 { left: 8%; top: 55%; width: 92%; transform: rotate(18deg); }
.city-road.r3 { left: 44%; top: -8%; width: 16%; height: 122%; transform: rotate(14deg); background: rgba(53, 199, 244, 0.16); }
.city-road.r4 { left: -10%; bottom: 16%; width: 124%; transform: rotate(4deg); }

.city-point {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 5px solid var(--white);
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(17, 104, 216, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-point:hover,
.city-point.is-selected {
  transform: scale(1.18);
  box-shadow: 0 16px 36px rgba(17, 104, 216, 0.38);
}

.city-point span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 180px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 40, 90, 0.12);
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.city-point:hover span,
.city-point.is-selected span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.c1 { left: 18%; top: 28%; }
.c2 { left: 38%; top: 58%; }
.c3 { right: 22%; top: 34%; }
.c4 { right: 14%; bottom: 18%; }
.c5 { left: 22%; bottom: 20%; }

.section-head p {
  max-width: 780px;
  margin-inline: auto;
}

.concern-grid,
.card-grid,
.impact-grid,
.steps,
.protocol-steps,
.contact-grid,
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mini-card,
.feature-card,
.impact-card,
.step-card,
.solution-panel,
.protocol-note,
.join-form,
.admin-card,
.admin-panel,
.contact-card,
.creator-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-card {
  min-height: 132px;
  padding: 28px;
  color: var(--blue-950);
  font-size: 1.15rem;
  font-weight: 800;
}

.section-soft {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -14px auto 28px;
}

.help-tabs {
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.tab-button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 12px 26px rgba(17, 104, 216, 0.2);
}

.tab-panel {
  display: none;
  padding: 22px 16px 10px;
  color: var(--muted);
  line-height: 1.7;
}

.tab-panel.is-active {
  display: block;
}

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

.contact-card {
  min-height: 210px;
  padding: 24px;
}

.contact-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-950);
  font-size: 1.1rem;
}

.contact-card p {
  margin-bottom: 8px;
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.solution-panel {
  position: relative;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
}

.pulse-dot {
  width: 74px;
  height: 74px;
  margin-bottom: 34px;
  border: 18px solid var(--blue-100);
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 0 0 16px rgba(17, 104, 216, 0.08);
}

.solution-panel p {
  color: var(--blue-950);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
}

.safepoint-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: stretch;
}

.window-sticker {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
  box-shadow: var(--shadow);
}

.sticker-shield {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 28px;
  color: var(--blue-700);
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--white);
  clip-path: polygon(50% 0, 88% 16%, 82% 72%, 50% 100%, 18% 72%, 12% 16%);
}

.window-sticker span,
.window-sticker strong {
  display: block;
  color: var(--white);
}

.window-sticker span {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
}

.window-sticker strong {
  max-width: 280px;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.45;
}

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

.protocol-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

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

.protocol-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-950);
  font-weight: 800;
  line-height: 1.45;
  background: var(--white);
}

.protocol-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
}

.protocol-note {
  padding: 30px;
}

.protocol-note strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 1.4rem;
}

.protocol-note .btn {
  margin-top: 10px;
}

.feature-card,
.step-card {
  padding: 28px;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
}

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

.calm-steps .step-card {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.calm-steps .step-card h3 {
  margin-bottom: 0;
}

.calm-steps .step-card span {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
}

.step-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.step-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--blue-950);
  font-weight: 900;
  background: var(--white);
}

.step-card p {
  color: rgba(255, 255, 255, 0.78);
}

.phone-mockup {
  position: relative;
  width: min(350px, 100%);
  min-height: 620px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(8, 40, 90, 0.12);
  border-radius: 42px;
  background: linear-gradient(145deg, #061b3a, #113d83);
  box-shadow: 0 34px 90px rgba(8, 40, 90, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phone-mockup:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 42px 110px rgba(8, 40, 90, 0.28);
}

.phone-shell {
  min-height: 598px;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.phone-top {
  width: 96px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #d8e4f3;
}

.phone-map {
  position: relative;
  height: 285px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 0 37%, rgba(17, 104, 216, 0.13) 37% 43%, transparent 43%),
    linear-gradient(108deg, transparent 0 58%, rgba(53, 199, 244, 0.13) 58% 64%, transparent 64%),
    linear-gradient(120deg, #eaf3ff, #ffffff);
}

.app-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.app-title strong {
  color: var(--blue-950);
  font-size: 1.15rem;
}

.app-title span {
  max-width: 130px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid var(--white);
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 8px 18px rgba(17, 104, 216, 0.24);
  cursor: pointer;
}

.phone-map .pin {
  border: 5px solid var(--white);
  transition: transform 0.2s ease;
}

.phone-map .pin:hover {
  transform: scale(1.12);
}

.map-street {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 104, 216, 0.12);
}

.street-one {
  left: -10%;
  top: 35%;
  width: 125%;
  transform: rotate(-18deg);
}

.street-two {
  left: 8%;
  top: 64%;
  width: 96%;
  transform: rotate(18deg);
}

.street-three {
  left: 34%;
  top: -6%;
  width: 78%;
  transform: rotate(76deg);
}

.p1 {
  left: 38%;
  top: 25%;
}

.p2 {
  right: 22%;
  top: 52%;
}

.p3 {
  left: 20%;
  bottom: 22%;
}

.sos-button {
  display: block;
  width: 98px;
  height: 98px;
  margin: -42px auto 18px;
  border: 8px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ef3d55, #ff7c6f);
  box-shadow: 0 18px 38px rgba(239, 61, 85, 0.26);
}

.nearest-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(8, 40, 90, 0.12);
}

.center-link {
  text-align: center;
}

.nearest-card span {
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nearest-card strong {
  display: block;
  margin-top: 7px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.nearest-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.phone-list span,
.tag-list span,
.innovation-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--white);
}

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

.impact-card {
  min-height: 150px;
  padding: 26px;
  color: var(--blue-950);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.innovation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.creator-grid--three {
  max-width: 920px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creator-card {
  padding: 26px;
}

.creator-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.2rem;
}

.creator-card span {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--blue-950);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.viability {
  padding-top: 70px;
}

.join-form {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

label,
fieldset {
  min-width: 0;
}

.join-form label,
.join-form legend,
.admin-form label,
.admin-panel label {
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17, 104, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(17, 104, 216, 0.1);
}

.form-wide {
  grid-column: 1 / -1;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.radio-group legend {
  padding: 0 8px;
}

.radio-group label,
.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.radio-group input,
.checkbox-field input {
  width: auto;
  margin-top: 0;
}

.form-status {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 104, 216, 0.22);
  border-radius: var(--radius);
  color: var(--blue-950);
  font-weight: 700;
  background: var(--blue-100);
}

.form-status.is-error {
  border-color: rgba(239, 61, 85, 0.26);
  color: #8b1830;
  background: #fff0f2;
}

.survey-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(53, 199, 244, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--soft));
}

.survey-page-section {
  padding-top: 118px;
}

.survey-page-hero {
  min-height: auto;
}

.survey-page-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.survey-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.survey-intro {
  position: sticky;
  top: 104px;
}

.survey-intro h2 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
}

.survey-intro-top {
  position: static;
  margin-bottom: 30px;
}

.survey-intro-top h2 {
  max-width: 1120px;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
}

.survey-intro-top p {
  max-width: 980px;
}

.survey-page-layout .survey-form {
  width: 100%;
}

.survey-page-layout .survey-step {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 40px);
}

.survey-page-layout .survey-step__icon {
  width: 64px;
  height: 64px;
}

.survey-page-layout .survey-step h3 {
  max-width: 880px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.survey-page-layout .survey-options {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.survey-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.survey-icon-row span {
  padding: 10px 12px;
  border: 1px solid rgba(17, 104, 216, 0.18);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--white);
}

.survey-replace-notice {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #061b3a, #0d4ea6);
  box-shadow: 0 18px 42px rgba(8, 40, 90, 0.22);
}

.survey-replace-notice strong {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.survey-replace-notice span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.survey-replace-notice button {
  justify-self: start;
  margin-top: 4px;
  padding: 0;
  border: 0;
  color: #aee8ff;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  background: transparent;
  cursor: pointer;
}

.survey-confirm {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 21, 45, 0.62);
}

.survey-confirm__dialog {
  width: min(460px, 100%);
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.survey-confirm__dialog h3 {
  color: var(--blue-950);
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.survey-confirm__dialog p {
  color: var(--muted);
}

.survey-confirm__dialog div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.survey-form {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.survey-progress {
  position: sticky;
  top: 82px;
  z-index: 5;
  display: grid;
  gap: 12px;
  margin: -8px -8px 20px;
  padding: 14px;
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.survey-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue-950);
  font-weight: 900;
}

.survey-progress span {
  color: var(--blue-700);
}

.survey-progress__track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--blue-100);
}

.survey-progress__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  transition: width 0.28s ease;
}

.survey-steps {
  display: grid;
  gap: 16px;
}

.survey-step,
.survey-info-card,
.survey-extra,
.survey-identity-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.survey-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.survey-step:focus-within,
.survey-step:hover {
  border-color: rgba(17, 104, 216, 0.32);
  box-shadow: 0 18px 44px rgba(8, 40, 90, 0.1);
  transform: translateY(-2px);
}

.survey-step__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-600));
  box-shadow: 0 14px 28px rgba(17, 104, 216, 0.22);
}

.survey-step__number {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.survey-step h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.survey-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.survey-option,
.shield-rating button {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-950);
  font: inherit;
  font-weight: 850;
  background: var(--soft);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.survey-option {
  min-height: 48px;
  padding: 12px 14px;
  text-align: left;
}

.survey-option:hover,
.survey-option.is-selected {
  border-color: rgba(17, 104, 216, 0.42);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  transform: translateY(-2px);
}

.survey-slider__value {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.survey-slider__value strong {
  color: var(--blue-700);
  font-size: 1.6rem;
}

.survey-slider input {
  accent-color: var(--blue-600);
}

.survey-slider__support,
.rating-labels {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.shield-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shield-rating button {
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
}

.shield-rating button:hover,
.shield-rating button.is-selected {
  border-color: rgba(17, 104, 216, 0.44);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-400));
  transform: translateY(-2px);
}

.rating-labels {
  display: flex;
  justify-content: space-between;
}

.survey-info-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  border-color: rgba(17, 104, 216, 0.26);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.96), rgba(13, 78, 166, 0.92)),
    var(--blue-950);
  box-shadow: 0 22px 56px rgba(8, 40, 90, 0.18);
}

.survey-info-card span {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #aee8ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
}

.survey-info-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.survey-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.survey-extra {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.survey-identity-card {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: clamp(18px, 3vw, 26px);
  border-color: rgba(17, 104, 216, 0.2);
  background: linear-gradient(135deg, #eef7ff, #ffffff);
}

.survey-identity-card p,
.survey-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.survey-extra small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.survey-consent {
  align-items: flex-start;
}

.survey-form .btn {
  width: 100%;
  margin-top: 16px;
}

.survey-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.54;
  transform: none;
}

.is-hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 21, 45, 0.68);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 1.55rem;
  background: var(--white);
  cursor: pointer;
}

.modal-protocol {
  display: grid;
  gap: 12px;
}

.modal-protocol p,
.modal-protocol li {
  color: var(--muted);
  line-height: 1.75;
}

.modal-protocol ol {
  margin: 0;
  padding-left: 22px;
}

.admin-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.admin-header {
  position: sticky;
}

.admin-nav {
  position: static;
  display: flex;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.admin-main {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding: 72px clamp(18px, 5vw, 72px);
  overflow-x: hidden;
}

.admin-login {
  display: grid;
  min-height: calc(100vh - 190px);
  place-items: center;
}

.admin-card {
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 48px);
}

.admin-card h1,
.admin-dashboard-head h1 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
}

.admin-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-note {
  margin: -4px 0 4px;
  padding: 14px;
  border: 1px solid rgba(17, 104, 216, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  background: var(--blue-100);
}

.admin-form,
.admin-panel {
  display: grid;
  gap: 18px;
}

.admin-dashboard {
  min-width: 0;
}

.admin-dashboard-head,
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-dashboard-head > *,
.admin-panel-head > * {
  min-width: 0;
}

.admin-section-menu {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(8, 40, 90, 0.08);
  backdrop-filter: blur(14px);
}

.admin-section-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.88rem;
  font-weight: 900;
  background: var(--blue-100);
}

.admin-section-menu a:hover {
  color: var(--white);
  background: var(--blue-700);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
}

.admin-panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}

.admin-panel h2 {
  margin-bottom: 4px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.requests-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.requests-table th,
.requests-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.requests-table th {
  color: var(--blue-950);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.requests-table select {
  min-width: 130px;
  margin: 0;
  padding: 9px 10px;
}

.survey-admin-panel {
  margin-top: 22px;
  max-width: 100%;
}

.survey-admin-panel > section {
  scroll-margin-top: 150px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
}

.admin-actions .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.btn-danger {
  border-color: rgba(239, 61, 85, 0.28);
  color: #9b1730;
  background: #fff0f2;
}

.btn-danger:hover {
  color: var(--white);
  background: #c92543;
}

.survey-kpi-grid,
.presentation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
  min-width: 0;
}

.survey-kpi,
.survey-chart-card,
.presentation-cards article,
.question-edit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.survey-kpi {
  min-height: 146px;
  min-width: 0;
  padding: 20px;
}

.survey-kpi span,
.presentation-cards span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.survey-kpi strong,
.presentation-cards strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.survey-kpi p,
.presentation-cards p {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.survey-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
  min-width: 0;
}

.admin-share-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(17, 104, 216, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, var(--blue-100));
  min-width: 0;
}

.admin-share-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.admin-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-share-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 40, 90, 0.1);
  min-width: 0;
}

.admin-share-card img {
  width: min(230px, 100%);
  margin-inline: auto;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(8, 40, 90, 0.12);
}

.survey-chart-card {
  padding: 20px;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(120px, 1fr) 38px;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.chart-row div,
.admin-progress div {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--blue-100);
}

.chart-row i,
.admin-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400));
}

.admin-progress span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 2rem;
  font-weight: 900;
}

.admin-shields {
  display: flex;
  gap: 8px;
  color: #c7d6e8;
  font-size: 2rem;
}

.admin-shields .is-active {
  color: var(--blue-600);
}

.presentation-summary {
  margin-bottom: 22px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 248, 255, 0.9)),
    #ffffff;
}

.presentation-summary h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.presentation-summary > p {
  margin: 0;
  padding-top: 4px;
  color: var(--blue-950);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.presentation-summary .presentation-cards {
  grid-template-columns: minmax(230px, 0.74fr) repeat(2, minmax(260px, 1fr));
  align-items: stretch;
}

.presentation-total-card,
.person-stat-card {
  min-width: 0;
  padding: 20px;
  box-shadow: 0 18px 42px rgba(8, 40, 90, 0.08);
}

.presentation-summary .presentation-cards .presentation-total-card {
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  place-items: center;
  gap: 14px;
  align-content: center;
  background: linear-gradient(160deg, #08285a, #1168d8) !important;
  color: #ffffff !important;
  text-align: center;
}

.presentation-summary .presentation-total-circle {
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: min(190px, 72vw);
  aspect-ratio: 1;
  border: 10px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.presentation-summary .presentation-total-circle .presentation-total-number {
  display: block;
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.9;
}

.presentation-summary .presentation-total-circle .presentation-total-label,
.presentation-summary .presentation-cards .presentation-total-card p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 800;
}

.person-stat-card {
  display: grid;
  gap: 14px;
}

.person-stat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.person-stat__head strong {
  color: var(--blue-950);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.person-stat__head span {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.95rem;
  font-weight: 900;
}

.person-stat__figures {
  display: grid;
  grid-template-columns: repeat(10, minmax(18px, 1fr));
  gap: 8px;
  align-items: end;
}

.person-stat__figure {
  --person-color: var(--blue-600);
  --person-empty: #dce8f6;
  --fill: 0;
  position: relative;
  display: block;
  height: 76px;
  background: transparent;
  filter: drop-shadow(0 7px 10px rgba(8, 40, 90, 0.1));
}

.person-stat__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--person-color) calc(var(--fill) * 100%), var(--person-empty) 0);
  transform: translateX(-50%);
}

.person-stat__figure::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 50px;
  background:
    linear-gradient(90deg, var(--person-color) calc(var(--fill) * 100%), var(--person-empty) 0);
  transform: translateX(-50%);
  clip-path: polygon(
    36% 0,
    64% 0,
    76% 12%,
    98% 16%,
    90% 34%,
    75% 27%,
    70% 55%,
    82% 100%,
    58% 100%,
    50% 68%,
    42% 100%,
    18% 100%,
    30% 55%,
    25% 27%,
    10% 34%,
    2% 16%,
    24% 12%
  );
}

.person-stat__figure.tone-red {
  --person-color: #ef3d55;
}

.person-stat__figure.tone-orange {
  --person-color: #f59e0b;
}

.person-stat__figure.tone-blue {
  --person-color: #1168d8;
}

.person-stat__figure.tone-cyan {
  --person-color: #14b8c9;
}

.question-manager {
  margin-bottom: 22px;
}

.question-edit {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 18px;
}

.survey-responses-table {
  min-width: 1040px;
  table-layout: fixed;
}

.survey-responses-table th,
.survey-responses-table td {
  overflow-wrap: anywhere;
  vertical-align: top;
}

.response-card-list {
  display: none;
  gap: 12px;
}

.response-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.response-card p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.response-card strong {
  color: var(--blue-950);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.response-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.urban-game-section {
  background: linear-gradient(180deg, #ffffff, #f2f8ff);
}

.urban-game {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.urban-game__hud,
.urban-game__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.urban-game__hud {
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-weight: 800;
}

.urban-game__hud span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--blue-100);
}

.urban-game__board {
  display: grid;
  grid-template-columns: repeat(var(--game-size), 1fr);
  gap: 5px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 8px;
  background: #dce9f8;
}

.urban-cell {
  border-radius: 6px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 104, 216, 0.08);
}

.urban-cell.is-block {
  background: #9fb3ca;
}

.urban-cell.is-risk {
  background: #ffb35c;
}

.urban-cell.is-goal {
  background: #2fca90;
}

.urban-cell.is-player {
  background: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(17, 104, 216, 0.16);
}

.urban-game__message,
.game-context {
  max-width: 760px;
  margin: 16px auto;
  color: var(--blue-950);
  font-weight: 800;
  text-align: center;
}

.urban-game__controls {
  display: grid;
  grid-template-columns: repeat(3, 54px);
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.urban-game__controls button {
  min-height: 48px;
  border: 1px solid rgba(17, 104, 216, 0.2);
  border-radius: 8px;
  color: var(--blue-950);
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--blue-100);
}

.urban-game__controls [data-move="up"],
.urban-game__controls [data-move="down"] {
  grid-column: 2;
}

.urban-game__controls [data-move="left"] {
  grid-column: 1;
}

.urban-game__controls [data-move="right"] {
  grid-column: 3;
}

.empty-state {
  margin: 18px 0 0;
}

.cta {
  padding: 96px clamp(20px, 6vw, 84px);
  background: var(--blue-950);
}

.cta__content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(53, 199, 244, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  max-width: 740px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: #04152d;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.25rem;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer .footer-meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.footer-admin {
  color: rgba(255, 255, 255, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes routeGlow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .split-reverse,
  .safepoint-layout,
  .protocol-layout,
  .admin-grid,
  .admin-share-section,
  .survey-shell {
    grid-template-columns: 1fr;
  }

  .survey-intro {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .network-map {
    min-height: 420px;
  }

  .concern-grid,
  .impact-grid,
  .protocol-steps,
  .contact-grid,
  .creator-grid,
  .survey-kpi-grid,
  .presentation-cards,
  .creator-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1180px) {
  .survey-admin-panel .admin-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-actions .btn {
    flex: 1 1 220px;
  }

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

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

  .presentation-total-card {
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 14px;
  }

  .admin-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: min(156px, 58vw);
    min-width: 128px;
  }

  .brand img {
    height: 46px;
  }

  .main-nav {
    inset: 64px 12px auto 12px;
  }

  .section,
  .hero {
    padding: 66px 16px;
  }

  .hero {
    padding-top: 104px;
    gap: 28px;
  }

  .page-hero {
    padding: 112px 16px 56px;
  }

  h1 {
    font-size: clamp(3.55rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__actions .btn,
  .cta .btn {
    width: 100%;
  }

  .network-map {
    min-height: 340px;
  }

  .map-node {
    min-width: 76px;
    min-height: 76px;
    font-size: 0.78rem;
  }

  .hero-survey-card__actions .btn {
    width: 100%;
  }

  .survey-share-box {
    grid-template-columns: 1fr;
  }

  .survey-share-box img {
    width: min(190px, 100%);
    height: auto;
    margin-inline: auto;
  }

  .safe-badge {
    left: 16px;
    bottom: 16px;
    width: min(220px, calc(100% - 32px));
    padding: 18px;
  }

  .city-map {
    min-height: 390px;
  }

  .city-road {
    height: 12px;
  }

  .city-point span {
    display: none;
  }

  .concern-grid,
  .card-grid,
  .impact-grid,
  .steps,
  .protocol-steps,
  .form-grid,
  .contact-grid,
  .creator-grid,
  .creator-grid--three,
  .tab-list {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-head,
  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .survey-options,
  .survey-admin-grid,
  .survey-kpi-grid,
  .presentation-cards {
    grid-template-columns: 1fr;
  }

  .presentation-summary .presentation-cards {
    grid-template-columns: 1fr;
  }

  .person-stat__figures {
    grid-template-columns: repeat(5, minmax(28px, 1fr));
    gap: 10px;
  }

  .person-stat__figure {
    height: 72px;
  }

  .survey-step,
  .survey-page-layout .survey-step,
  .survey-info-card {
    grid-template-columns: 1fr;
  }

  .survey-page-layout .survey-options {
    grid-template-columns: 1fr;
  }

  .chart-row {
    grid-template-columns: 1fr 1fr 34px;
  }

  #survey-responses .table-wrap {
    display: none;
  }

  .response-card-list {
    display: grid;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-main {
    padding: 42px 18px 72px;
  }

  .phone-mockup {
    width: min(330px, 100%);
    min-height: auto;
  }

  .phone-shell {
    min-height: 540px;
    padding: 16px;
  }

  .phone-map {
    height: 245px;
  }

  .sos-button {
    width: 88px;
    height: 88px;
    margin-top: -36px;
    font-size: 1.25rem;
  }

  .quick-actions .btn {
    width: 100%;
  }

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

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