:root {
  --bg: #f4eee4;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #fffaf2;
  --ink: #1c2430;
  --muted: #59616c;
  --line: rgba(28, 36, 48, 0.1);
  --brand: #b24d14;
  --brand-deep: #8d3710;
  --accent: #125b78;
  --shadow: 0 24px 48px rgba(28, 36, 48, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(178, 77, 20, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(18, 91, 120, 0.16), transparent 22%),
    linear-gradient(180deg, #f7f2e9 0%, #ede2d1 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, serif;
  line-height: 1.04;
}

p {
  margin: 0;
  line-height: 1.68;
}

.launcher-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 120px;
  position: relative;
  z-index: 1;
}

.brand-watermark {
  width: min(1320px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(28, 36, 48, 0.12);
  background: rgba(255, 250, 242, 0.58);
  box-shadow: none;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-watermark__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.brand-watermark__name {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.1;
}

.brand-watermark__line {
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

.launcher-hero,
.launcher-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.launcher-hero {
  padding: 32px;
}

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

.launcher-hero h1 {
  font-size: clamp(40px, 6vw, 78px);
}

.launcher-lead {
  max-width: 72ch;
  margin-top: 16px;
  font-size: 19px;
  color: var(--muted);
}

.launcher-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.launcher-meta span,
.launcher-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 91, 120, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launcher-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.launcher-card {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  padding: 22px;
  align-items: center;
}

.launcher-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 36, 48, 0.08);
  background: var(--surface-strong);
}

.launcher-media img {
  width: 100%;
  height: auto;
}

.launcher-copy {
  display: grid;
  gap: 14px;
}

.launcher-copy h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.launcher-copy p {
  max-width: 58ch;
  font-size: 18px;
  color: var(--muted);
}

.launcher-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 4px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  color: #fffaf1;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 12px 24px rgba(141, 55, 16, 0.2);
  transition: transform 160ms ease;
}

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

.launcher-contact {
  margin-top: 24px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.launcher-contact h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.launcher-contact__lead {
  max-width: 70ch;
  margin-top: 12px;
  font-size: 18px;
  color: var(--muted);
}

.launcher-contact__grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launcher-contact__card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.launcher-contact__card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-family: Georgia, serif;
}

.launcher-contact__card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .launcher-card {
    grid-template-columns: 1fr;
  }

  .launcher-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .launcher-shell {
    width: min(100% - 18px, 1320px);
    padding-bottom: 24px;
  }

  .launcher-hero,
  .launcher-card,
  .launcher-contact {
    padding: 20px;
    border-radius: 22px;
  }

  .launcher-lead,
  .launcher-copy p {
    font-size: 16px;
  }

  .brand-watermark {
    width: min(100% - 18px, 1320px);
    margin: 12px auto 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-watermark__line {
    text-align: left;
  }
}
