:root {
  --bg: #020204;
  --panel: rgba(12, 12, 16, 0.72);
  --panel-strong: rgba(20, 20, 27, 0.82);
  --red: #ff0f2f;
  --red-soft: rgba(255, 15, 47, 0.24);
  --red-faint: rgba(255, 15, 47, 0.1);
  --white: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.12);
  --shadow: 0 34px 90px rgba(0,0,0,0.72);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 15, 47, 0.18), transparent 34%),
    radial-gradient(circle at 20% 85%, rgba(255, 15, 47, 0.13), transparent 30%),
    linear-gradient(135deg, #050506 0%, #09090d 46%, #020204 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  animation: gridMove 18s linear infinite;
}

.glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(32px);
  background: var(--red-soft);
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.glow-one { top: -110px; right: 12%; }
.glow-two { bottom: -160px; left: 10%; animation-delay: -3s; }

.page-shell {
  width: min(100%, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 18px;
  display: grid;
  place-items: center;
}

.card {
  width: min(100%, 860px);
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015)),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(22px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent, rgba(255,15,47,.62), transparent 34%, transparent 70%, rgba(255,255,255,.18), transparent);
  animation: rotateBorder 8s linear infinite;
  opacity: .78;
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 33px;
  background: linear-gradient(145deg, rgba(18,18,24,.94), rgba(5,5,8,.88));
}

.logo-wrap {
  position: relative;
  width: clamp(158px, 28vw, 245px);
  aspect-ratio: 1 / .75;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
}

.logo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 34px;
  background: radial-gradient(circle, rgba(255,15,47,.28), transparent 62%);
  animation: breathe 2.8s ease-in-out infinite;
}

.logo {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255,15,47,.38));
  animation: logoIn .9s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .82rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.45rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
  font-weight: 900;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff 0%, #d7d7dc 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 54px rgba(255,15,47,.14);
}

.status-pill {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 26px;
  padding: 12px 18px;
  border: 1px solid rgba(255,15,47,.42);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,15,47,.18), rgba(255,15,47,.06));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 38px rgba(255,15,47,.14);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 rgba(255,15,47,.7);
  animation: pulse 1.7s infinite;
  flex: 0 0 auto;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.38rem);
  line-height: 1.58;
  color: rgba(255,255,255,.88);
  text-wrap: balance;
}

.lead strong, .signature strong { color: #fff; }

.services {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.services span {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.message {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.signature {
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: 6px;
  color: var(--muted);
}
.signature strong {
  font-size: 1.2rem;
  letter-spacing: .02em;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,15,47,.72); }
  70% { box-shadow: 0 0 0 12px rgba(255,15,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,15,47,0); }
}
@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .62; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes rotateBorder { to { transform: rotate(1turn); } }
@keyframes floatGlow { to { transform: translate3d(42px, 34px, 0) scale(1.12); } }
@keyframes gridMove { to { background-position: 78px 78px; } }
@keyframes logoIn {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .page-shell { padding: 20px 12px; }
  .card { border-radius: 26px; padding: 28px 18px; }
  .card::after { border-radius: 25px; }
  .status-pill { font-size: .92rem; }
  .services { gap: 8px; }
  .services span { font-size: .9rem; padding: 9px 12px; }
}

.contact-panel {
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid rgba(255,15,47,.24);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,15,47,.13), rgba(255,255,255,.035)),
    rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.24);
}

.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.22rem, 2.5vw, 1.72rem);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-item {
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.26);
  color: #fff;
  text-decoration: none;
  display: grid;
  gap: 7px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,15,47,.54);
  background: rgba(255,15,47,.1);
}

.contact-label {
  color: rgba(255,255,255,.58);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.contact-item strong {
  font-size: clamp(.9rem, 1.7vw, 1.05rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-footer {
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  color: rgba(255,255,255,.64);
  font-size: .86rem;
  line-height: 1.7;
  text-align: left;
}

.legal-footer p {
  margin: 10px 0 0;
}

.legal-badge {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255,15,47,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,15,47,.11);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 18px; }
  .legal-footer { text-align: center; }
  .legal-badge { margin: 0 auto; }
}
