:root {
  --bg: #10151c;
  --bg-soft: #171e26;
  --panel: rgba(28, 36, 45, 0.88);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f1f3f5;
  --muted: #b5bec8;
  --steel: #536372;
  --red: #e31f2b;
  --red-bright: #ff3441;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 22%, rgba(83, 99, 114, 0.42), transparent 34rem),
    linear-gradient(180deg, #121820 0%, #0e1319 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 43%, rgba(255,255,255,0.018) 50%, transparent 57% 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: rgba(17, 23, 30, 0.74);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red-bright), transparent);
}

.hero-glow {
  position: absolute;
  width: 32rem;
  height: 32rem;
  left: 50%;
  top: 15%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(92, 111, 126, 0.21);
  filter: blur(70px);
  z-index: -1;
}

.brand-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px 28px 0 0;
}

.hero-copy {
  padding: 30px clamp(22px, 5vw, 54px) 38px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--red-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(34, 43, 53, 0.94), rgba(20, 27, 34, 0.94));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.card h2 {
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  line-height: 1.2;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--red-bright), var(--red), transparent 90%);
}

.contact-list {
  margin: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row dt {
  color: #d9dee3;
  font-weight: 700;
}

.contact-row dd {
  margin: 0;
  color: var(--muted);
}

a {
  color: #f1f3f5;
  text-decoration-color: rgba(255, 52, 65, 0.7);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--red-bright);
  text-decoration-color: var(--red-bright);
}

.message-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.message-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.dot {
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 7px rgba(227, 31, 43, 0.12), 0 0 24px rgba(227, 31, 43, 0.55);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid rgba(255, 52, 65, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227, 31, 43, 0.20), rgba(227, 31, 43, 0.08));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.cta:hover,
.cta:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 52, 65, 0.32), rgba(227, 31, 43, 0.16));
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: #7f8a94;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 14px;
  }

  .hero,
  .brand-image {
    border-radius: 20px 20px 0 0;
  }

  .hero {
    border-radius: 20px;
  }

  .brand-image {
    min-height: 220px;
    object-fit: cover;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .card {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 24px 18px 28px;
  }

  .brand-image {
    min-height: 180px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .card {
    padding: 24px 20px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
