* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ee;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-border: rgba(13, 59, 92, 0.12);
  --text: #0f3554;
  --muted: #4d6478;
  --brand: #8e0a2a;
  --brand-dark: #720821;
  --accent: #134f78;
  --shadow: 0 28px 80px rgba(11, 46, 73, 0.12);
  --radius: 28px;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(142, 10, 42, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(19, 79, 120, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.background-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.glow-one {
  width: 22rem;
  height: 22rem;
  background: rgba(142, 10, 42, 0.12);
  top: -5rem;
  left: -5rem;
}

.glow-two {
  width: 20rem;
  height: 20rem;
  background: rgba(19, 79, 120, 0.12);
  right: -4rem;
  bottom: -4rem;
}

.card {
  position: relative;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-column,
.content-column {
  position: relative;
  z-index: 1;
}

.brand-column {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 10px;
}

.logo-frame {
  background: #ffffff;
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(15, 53, 84, 0.08);
}

.brand-logo {
  display: block;
  width: min(100%, 470px);
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(15, 53, 84, 0.08));
}

.content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 6px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 9ch;
}

.lead {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.feature-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 79, 120, 0.08);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-callout {
  margin-top: 30px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(142, 10, 42, 0.06), rgba(19, 79, 120, 0.06));
  border: 1px solid rgba(13, 59, 92, 0.08);
}

.contact-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-callout h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.phone-link {
  display: inline-block;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.address {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.launch-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.launch-panel > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(13, 59, 92, 0.08);
}

.panel-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-value {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .brand-logo {
    width: min(100%, 360px);
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 18px;
  }

  .card {
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .launch-panel {
    grid-template-columns: 1fr;
  }

  .contact-callout {
    padding: 20px;
  }
}
