:root {
  --bg: #f6f2ea;
  --bg-soft: #fffaf1;
  --bg-violet: #f0ecff;
  --surface: rgba(255, 250, 241, 0.78);
  --surface-solid: #fffaf1;
  --surface-violet: rgba(240, 236, 255, 0.78);
  --border: rgba(35, 29, 51, 0.12);
  --border-strong: rgba(109, 93, 252, 0.28);
  --accent: #6d5dfc;
  --accent-deep: #4f3bea;
  --accent-soft: #efeaff;
  --accent-2: #a855f7;
  --teal: #0f927b;
  --amber: #c47a19;
  --text: #11121a;
  --text-2: #565268;
  --text-3: #827b91;
  --danger: #b42318;
  --shadow: 0 28px 80px rgba(33, 24, 56, 0.14);
  --radius: 8px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(125deg, #f8f3ea 0%, #fffaf1 28%, #ece8ff 55%, #f8efe7 76%, #f3f6ff 100%);
  background-size: 190% 190%;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  animation: pageGradient 24s ease-in-out infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(35, 29, 51, 0.11);
  background: rgba(255, 250, 241, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-logo {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
}

.site-nav a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 14px 42px rgba(109, 93, 252, 0.24);
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

section {
  position: relative;
  padding-block: clamp(72px, 10vw, 118px);
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background:
    linear-gradient(115deg, rgba(109, 93, 252, 0.06), transparent 34%),
    linear-gradient(245deg, rgba(15, 146, 123, 0.04), transparent 42%);
}

section > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  padding-block: 116px 80px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(109, 93, 252, 0.14), transparent 44%),
    linear-gradient(205deg, rgba(15, 146, 123, 0.08), transparent 52%),
    #f8f3ea;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(246, 242, 234, 0.92));
  pointer-events: none;
}

.hero-grid,
.two-col,
.uralsk-grid,
.story-grid,
.shelter-apply-grid {
  display: grid;
  gap: clamp(30px, 7vw, 82px);
}

.hero-grid {
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 9.5vw, 94px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 6vw, 62px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 3.4vw, 30px);
}

p {
  margin-top: 0;
}

.hero-text {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--text-2);
  font-size: clamp(19px, 2.8vw, 24px);
  font-weight: 300;
  line-height: 1.72;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 14px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 54px rgba(109, 93, 252, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9c78ff, #6d5dfc);
  box-shadow: 0 22px 62px rgba(109, 93, 252, 0.4);
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.42);
  color: var(--text-2);
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 700;
}

.launch-card,
.city-panel,
.choice-card,
.step-card,
.check-list,
.why-panel,
.story-card,
.city-table,
.capabilities,
.final-panel,
.faq-item,
.modal-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.78), rgba(240, 236, 255, 0.58)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.launch-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  animation: floatPanel 7s ease-in-out infinite;
}

.launch-card::before,
.final-panel::before,
.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.68;
  background:
    linear-gradient(120deg, rgba(109, 93, 252, 0.14), transparent 42%),
    linear-gradient(250deg, rgba(15, 146, 123, 0.08), transparent 50%);
  pointer-events: none;
}

.launch-card > *,
.final-panel > *,
.why-panel > * {
  position: relative;
  z-index: 1;
}

.launch-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(109, 93, 252, 0.12);
  animation: pulse 2s ease-in-out infinite;
}

.launch-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(46px, 9vw, 78px);
  font-weight: 800;
  line-height: 1;
}

.launch-card p,
.section-heading p,
.copy-block p,
.check-list p,
.why-panel p,
.story-card p,
.capabilities li,
.faq-item p,
.final-panel p {
  color: var(--text-2);
}

.launch-metrics {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.launch-metrics span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 800;
}

.launch-metrics b {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 24px;
}

.project-section,
.participation-section,
.story-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.62), rgba(246, 242, 234, 0.88)),
    transparent;
}

.uralsk-section,
.how-section,
.trust-section,
.cities-section,
.shelter-apply-section {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(240, 236, 255, 0.86), rgba(248, 243, 234, 0.92)),
    var(--bg-violet);
}

.section-heading {
  max-width: 720px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-bottom: clamp(32px, 6vw, 58px);
}

.copy-block {
  max-width: 760px;
  font-size: 18px;
}

.key-thought {
  display: inline-flex;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text) !important;
  font-weight: 800;
}

.city-panel {
  overflow: hidden;
  min-height: 330px;
  padding: clamp(24px, 5vw, 42px);
  background:
    radial-gradient(circle at 72% 20%, rgba(109, 93, 252, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(17, 18, 26, 0.92), rgba(59, 43, 93, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.city-label {
  display: inline-flex;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-panel strong {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 96px);
  font-weight: 800;
  line-height: 0.95;
}

.city-panel p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.steps-grid,
.participation-grid {
  display: grid;
  gap: 14px;
}

.step-card,
.choice-card,
.capabilities,
.check-list,
.story-card {
  padding: clamp(22px, 4vw, 32px);
}

.step-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.step-card span,
.choice-mark {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.step-card p,
.choice-card p {
  color: var(--text-2);
}

.choice-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 70px rgba(33, 24, 56, 0.12);
}

.choice-card .btn {
  margin-top: auto;
}

.check-list ul,
.capabilities ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.capabilities li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.capabilities li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(109, 93, 252, 0.1);
}

.why-panel,
.final-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(22px, 5vw, 56px);
  padding: clamp(28px, 6vw, 58px);
  box-shadow: var(--shadow);
}

.why-panel .btn,
.final-panel .btn {
  margin-top: 8px;
}

.story-grid {
  grid-template-columns: 1fr;
}

.city-table {
  overflow: hidden;
  align-self: start;
}

.city-table div {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 15px 16px;
}

.city-table div:last-child {
  border-bottom: 0;
}

.city-table div:first-child {
  background: rgba(109, 93, 252, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-table span:nth-child(2) {
  color: var(--text-2);
}

.capabilities h3 {
  margin-bottom: 20px;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  margin-left: 16px;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  border-top: 1px solid var(--border);
  padding: 0 22px 22px;
}

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

.final-panel {
  text-align: left;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 28px clamp(16px, 4vw, 48px);
  color: var(--text-3);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--text-2);
  font-weight: 800;
  text-decoration: none;
}

.form-modal[hidden] {
  display: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 14px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 18, 26, 0.48), rgba(79, 59, 234, 0.28)),
    rgba(17, 18, 26, 0.42);
  backdrop-filter: blur(14px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  max-height: min(860px, calc(100svh - 28px));
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.97), rgba(244, 240, 255, 0.97)),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.modal-scroll {
  --modal-pad: clamp(20px, 5vw, 34px);
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: var(--modal-pad);
}

.modal-actions[hidden] {
  display: none;
}

.modal-actions {
  flex: 0 0 auto;
  border-top: 1px solid var(--border);
  padding: 14px clamp(20px, 5vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.99) 48%),
    var(--surface-solid);
  box-shadow: 0 -18px 42px rgba(33, 24, 56, 0.08);
  backdrop-filter: blur(14px);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-header {
  padding-right: 44px;
}

.modal-header h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 7vw, 48px);
}

.modal-header p:last-child {
  color: var(--text-2);
}

.generated-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

fieldset.field {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.field label,
.field legend {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  padding: 13px 14px;
  font-size: 16px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(109, 93, 252, 0.12);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.field.has-error .chip-list,
.field.has-error .radio-list,
.field.has-error .single-check {
  border-color: rgba(180, 35, 24, 0.5);
}

.error-text,
.form-status {
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  min-height: 20px;
}

.chip-list,
.radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.44);
}

.chip,
.radio-option,
.single-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.chip input,
.radio-option input,
.single-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--accent);
}

.chip:has(input:checked),
.radio-option:has(input:checked),
.single-check:has(input:checked) {
  border-color: var(--border-strong);
  background: rgba(109, 93, 252, 0.1);
  color: var(--text);
}

.single-check {
  width: 100%;
}

.privacy-link {
  color: var(--accent);
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.form-actions .btn {
  flex: 1 1 280px;
  min-width: min(100%, 280px);
}

.thank-you {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
  background:
    linear-gradient(135deg, rgba(109, 93, 252, 0.1), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.66);
}

.thank-you h3 {
  margin-bottom: 0;
}

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

.share-actions a,
.share-actions button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s ease var(--reveal-delay, 0ms);
}

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

@media (min-width: 700px) {
  .shell {
    width: min(1180px, calc(100% - 48px));
  }

  .site-nav {
    display: flex;
  }

  .nav-cta {
    padding-inline: 18px;
  }

  .two-col,
  .uralsk-grid,
  .shelter-apply-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

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

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

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

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

  .why-panel,
  .final-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }

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

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

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

  .step-card {
    min-height: 330px;
  }
}

@media (max-width: 699px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-actions .btn,
  .final-panel .btn {
    width: 100%;
  }

  .city-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

@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;
  }

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

@keyframes pageGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.52;
    transform: scale(0.82);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

.launch-date-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(109, 93, 252, 0.22);
  border-radius: var(--radius);
  background: rgba(109, 93, 252, 0.07);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.launch-date-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
