:root {
  --bg: #050812;
  --bg-2: #080d1a;
  --panel: rgba(255, 255, 255, 0.072);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --border: rgba(255, 255, 255, 0.14);
  --border-soft: rgba(255, 255, 255, 0.085);
  --text: #f8fbff;
  --muted: rgba(232, 240, 255, 0.72);
  --muted-2: rgba(232, 240, 255, 0.54);
  --blue: #5aa7ff;
  --blue-2: #2f75ff;
  --violet: #8b5cf6;
  --cyan: #31d8ff;
  --danger: #ff6b6b;
  --warning: #ffd166;
  --ok: #78f0b2;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: rgba(90, 167, 255, 0.35);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 117, 255, 0.18), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(139, 92, 246, 0.16), transparent 35%),
    linear-gradient(180deg, #050812 0%, #07101e 52%, #060916 100%);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 26px 22px 96px;
  isolation: isolate;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -7;
  opacity: 0.76;
}

.noise-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0 1px, transparent 1px);
  background-size: 28px 28px, 34px 34px;
}

.grid-plane {
  position: absolute;
  inset: -2px;
  z-index: -5;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 25%, black 0%, transparent 70%);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(56px, 56px, 0); }
}

.aurora {
  position: absolute;
  z-index: -6;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.74;
  transform: translate3d(0, 0, 0);
  animation: auroraFloat 12s ease-in-out infinite alternate;
}

.aurora-a {
  width: 440px;
  height: 440px;
  top: 10%;
  left: -160px;
  background: radial-gradient(circle, rgba(49, 216, 255, 0.33), rgba(47, 117, 255, 0.12), transparent 68%);
}

.aurora-b {
  width: 580px;
  height: 580px;
  top: 12%;
  right: -190px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.34), rgba(255, 107, 107, 0.10), transparent 70%);
  animation-delay: -4s;
}

.aurora-c {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: 35%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.13), rgba(49, 216, 255, 0.12), transparent 72%);
  animation-delay: -8s;
}

@keyframes auroraFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(26px, -28px, 0) scale(1.04); }
  100% { transform: translate3d(-18px, 24px, 0) scale(0.96); }
}

.topbar {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(6, 11, 22, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.brand,
.topbar-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.45), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 34px rgba(47, 117, 255, 0.28);
}

.topbar-link {
  padding: 12px 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, background 0.24s ease;
}

.topbar-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding-top: 34px;
}

.hero-copy {
  position: relative;
}

.eyebrow,
.section-label,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  color: rgba(230, 240, 255, 0.82);
}

.eyebrow {
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.55);
  animation: pulseDot 1.8s ease infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.52); }
  70% { box-shadow: 0 0 0 12px rgba(255, 209, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0); }
}

.hero-title {
  margin: 0;
  max-width: 770px;
  font-size: clamp(48px, 7.2vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-title::after {
  content: "";
  display: block;
  width: min(260px, 48vw);
  height: 6px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet));
  box-shadow: 0 0 34px rgba(90, 167, 255, 0.35);
  animation: lineBreath 3.4s ease-in-out infinite;
}

@keyframes lineBreath {
  0%, 100% { transform: scaleX(1); opacity: 0.72; }
  50% { transform: scaleX(1.18); opacity: 1; }
}

.hero-text {
  margin: 26px 0 0;
  max-width: 690px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 850;
  font-size: 15px;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.btn-primary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(135deg, var(--blue-2), var(--violet));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 54px rgba(47, 117, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

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

.btn-primary:hover {
  box-shadow:
    0 30px 70px rgba(47, 117, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(232, 240, 255, 0.78);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

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

.status-orbit {
  position: absolute;
  top: 34px;
  right: 8px;
  width: clamp(290px, 32vw, 450px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
  --rx: 0deg;
  --ry: 0deg;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ring-one {
  inset: 8%;
  border-top-color: rgba(90, 167, 255, 0.72);
  border-left-color: rgba(90, 167, 255, 0.24);
  animation: rotateRing 13s linear infinite;
}

.ring-two {
  inset: 18%;
  border-right-color: rgba(49, 216, 255, 0.64);
  border-bottom-color: rgba(49, 216, 255, 0.26);
  transform: rotate(25deg);
  animation: rotateRingReverse 10s linear infinite;
}

.ring-three {
  inset: 29%;
  border-top-color: rgba(139, 92, 246, 0.72);
  animation: rotateRing 8s linear infinite;
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes rotateRingReverse {
  to { transform: rotate(-360deg); }
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(49, 216, 255, 0.75);
}

.dot-one {
  top: 18%;
  right: 22%;
  animation: dotBlink 2.2s ease-in-out infinite;
}

.dot-two {
  bottom: 19%;
  left: 20%;
  width: 11px;
  height: 11px;
  background: var(--warning);
  box-shadow: 0 0 26px rgba(255, 209, 102, 0.68);
  animation: dotBlink 2.2s ease-in-out infinite 0.8s;
}

@keyframes dotBlink {
  0%, 100% { opacity: 0.42; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

.core-shield {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  color: #89c9ff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.24), transparent 35%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 80px rgba(47, 117, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  animation: shieldFloat 4.5s ease-in-out infinite;
}

.core-shield svg {
  width: 58%;
  height: 58%;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.28));
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}

.glass-card {
  position: relative;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    rgba(6, 11, 22, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(90, 167, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 38%);
  opacity: 0.88;
}

.status-card {
  width: min(100%, 520px);
  margin-top: 150px;
  padding: 26px;
  border-radius: var(--radius-xl);
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
  --rx: 0deg;
  --ry: 0deg;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.card-header,
.status-stack,
.progress-block {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.kicker {
  margin-bottom: 8px;
  color: rgba(184, 207, 255, 0.8);
}

.card-header h2,
.form-panel-header h2,
.restore-info h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.card-header h2 {
  font-size: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffe5ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.24);
}

.status-stack {
  display: grid;
  gap: 12px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  animation: rowLift 0.72s ease both;
}

.status-row:nth-child(2) { animation-delay: 0.08s; }
.status-row:nth-child(3) { animation-delay: 0.16s; }
.status-row:nth-child(4) { animation-delay: 0.24s; }

@keyframes rowLift {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.status-row span {
  color: var(--muted);
  font-size: 14px;
}

.status-row strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.status-row .danger { color: #ffb1b1; }
.status-row .warning { color: #ffe09a; }

.progress-block {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.065);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.progress-track {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
}

.progress-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet), var(--blue));
  background-size: 220% 100%;
  animation: progressFlow 3.2s linear infinite;
}

@keyframes progressFlow {
  to { background-position: 220% 0; }
}

.restore-section {
  position: relative;
  overflow: hidden;
  padding: 96px 22px 112px;
  background:
    radial-gradient(circle at 20% 20%, rgba(90, 167, 255, 0.12), transparent 28%),
    radial-gradient(circle at 75% 62%, rgba(139, 92, 246, 0.12), transparent 30%),
    linear-gradient(180deg, #060916 0%, #08111f 55%, #050812 100%);
}

.section-glow {
  position: absolute;
  inset: auto -20% 10% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,216,255,0.16), transparent 68%);
  filter: blur(40px);
  animation: auroraFloat 14s ease-in-out infinite alternate;
}

.restore-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(32px, 5.6vw, 72px);
  align-items: start;
}

.restore-info {
  position: sticky;
  top: 28px;
}

.section-label {
  color: #a7d5ff;
  margin-bottom: 16px;
}

.restore-info h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
}

.restore-info > p {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.timeline {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.timeline-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  color: #d7ebff;
  background: rgba(90,167,255,0.14);
  border: 1px solid rgba(90,167,255,0.22);
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.55;
  font-size: 14px;
}

.form-panel {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.052)),
    rgba(6, 11, 22, 0.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
  --rx: 0deg;
  --ry: 0deg;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(90, 167, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
}

.form-panel-header,
.restore-form,
.notice {
  position: relative;
  z-index: 1;
}

.form-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.form-panel-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.form-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #d7ebff;
  background: rgba(90,167,255,0.13);
  border: 1px solid rgba(90,167,255,0.22);
  box-shadow: 0 16px 34px rgba(47,117,255,0.16);
}

.notice {
  margin-bottom: 20px;
  padding: 15px 16px;
  border-radius: 18px;
  line-height: 1.55;
  font-weight: 750;
}

.notice.success {
  color: #d7ffe9;
  background: rgba(120, 240, 178, 0.12);
  border: 1px solid rgba(120, 240, 178, 0.24);
}

.notice.error {
  color: #ffd6d6;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.24);
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.field span {
  color: rgba(232, 240, 255, 0.82);
  font-size: 14px;
  font-weight: 780;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  outline: none;
  padding: 16px 16px;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(232, 240, 255, 0.38);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(90, 167, 255, 0.64);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 0 0 4px rgba(90, 167, 255, 0.12);
  transform: translateY(-1px);
}

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

.submit-btn {
  width: 100%;
  margin-top: 18px;
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted-2);
  line-height: 1.6;
  font-size: 13px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}

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

.hero-copy .reveal:nth-child(2) { transition-delay: 0.08s; }
.hero-copy .reveal:nth-child(3) { transition-delay: 0.16s; }
.hero-copy .reveal:nth-child(4) { transition-delay: 0.24s; }
.hero-copy .reveal:nth-child(5) { transition-delay: 0.32s; }

@media (max-width: 1060px) {
  .hero-container,
  .restore-container {
    grid-template-columns: 1fr;
  }

  .hero-container {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .status-orbit {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateX(var(--rx)) rotateY(var(--ry));
  }

  .restore-info {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .hero,
  .restore-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    border-radius: 20px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-container {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-title {
    font-size: clamp(44px, 15vw, 64px);
  }

  .hero-actions,
  .hero-meta {
    flex-direction: column;
  }

  .btn,
  .hero-meta span {
    width: 100%;
  }

  .hero-visual {
    min-height: 530px;
  }

  .status-card {
    margin-top: 138px;
    padding: 22px;
    border-radius: 28px;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .restore-section {
    padding-top: 74px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .form-panel-header {
    flex-direction: column;
  }

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

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

  #particleCanvas {
    display: none;
  }
}
