:root {
  --bg: #07090d;
  --bg-soft: #0f1319;
  --panel: rgba(11, 14, 20, 0.9);
  --panel-soft: rgba(15, 18, 25, 0.82);
  --panel-strong: rgba(15, 18, 25, 0.96);
  --ink: #f3efe8;
  --muted: #aeb3bd;
  --line: rgba(243, 239, 232, 0.08);
  --line-strong: rgba(243, 239, 232, 0.14);
  --gold: #c6a96b;
  --gold-soft: rgba(198, 169, 107, 0.14);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 14px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(198, 169, 107, 0.1), transparent 30%),
    linear-gradient(180deg, #06070a 0%, var(--bg) 52%, #090b10 100%);
  background-size: 110px 110px, 110px 110px, auto, auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 6px 0 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(243, 239, 232, 0.16);
  background: rgba(245, 241, 234, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.eyebrow,
.micro-meta,
.status,
.price {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.micro-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.header-link,
.primary-button,
.secondary-button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-link,
.secondary-button,
.card-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.primary-button {
  background: var(--gold);
  color: #111;
  box-shadow: 0 12px 28px rgba(198, 169, 107, 0.2);
}

.header-link:hover,
.secondary-button:hover,
.card-link:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow: 0 18px 38px rgba(198, 169, 107, 0.28);
}

.page-stack {
  display: grid;
  gap: 52px;
}

.hero-card {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: #0b0d12;
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.95) 0%, rgba(7, 9, 13, 0.78) 42%, rgba(7, 9, 13, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.12), rgba(7, 9, 13, 0.86)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=82")
      center/cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.42;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(680px, 100%);
  padding: 54px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: 76px;
  line-height: 0.98;
}

.hero-lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-motto {
  color: var(--gold);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.message-card,
.product-card,
.vision-copy,
.vision-facts,
.hiring-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.message-card h2,
.product-card h3,
.legal-card h3 {
  font-size: 1.7rem;
}

.message-card p,
.section-heading p,
.product-copy,
.premium-note,
.card-note,
.vision-copy p,
.hiring-copy,
.vision-facts p,
.legal-card p {
  color: var(--muted);
  line-height: 1.65;
}

.message-panel,
.products-panel,
.vision-panel,
.hiring-panel,
.legal-panel {
  padding: 0;
}

.message-panel {
  max-width: 880px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}

.message-panel p {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 34px;
  line-height: 1.22;
}

.message-grid,
.product-grid,
.vision-grid,
.legal-grid {
  display: grid;
  gap: 18px;
}

.message-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.message-card,
.product-card,
.vision-copy,
.vision-facts,
.hiring-card,
.legal-card {
  padding: 24px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: 46px;
  line-height: 1.02;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.live-card {
  background:
    linear-gradient(180deg, rgba(198, 169, 107, 0.08), rgba(15, 18, 25, 0)),
    var(--panel-strong);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.product-card:hover,
.message-card:hover,
.legal-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.product-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.status,
.price {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.status.live {
  color: var(--gold);
}

.product-tagline {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.product-copy,
.premium-note,
.premium-meta,
.card-note {
  margin-top: 10px;
}

.premium-note {
  color: #d6bb82;
}

.premium-meta {
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.card-link {
  margin-top: auto;
  align-self: flex-start;
  min-width: 0;
  margin-top: 20px;
}

.vision-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-top: 24px;
}

.vision-facts {
  display: grid;
  gap: 18px;
}

.vision-facts span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision-facts p {
  margin-top: 6px;
}

.hiring-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.hiring-copy {
  max-width: 44rem;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.legal-card {
  background: rgba(15, 18, 25, 0.74);
}

.legal-card h3 {
  font-size: 1.25rem;
}

.legal-card p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p:last-child {
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 960px) {
  .message-grid,
  .vision-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    font-size: 58px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--max-width));
    padding-top: 18px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-card {
    min-height: 620px;
    border-radius: 12px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero-copy h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-motto,
  .micro-meta,
  .eyebrow,
  .status,
  .price {
    letter-spacing: 0.12em;
  }

  .hero-actions,
  .header-links {
    flex-direction: column;
    align-items: stretch;
  }

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

  .message-panel {
    padding-left: 18px;
  }

  .message-panel p,
  .section-heading h2 {
    font-size: 32px;
  }

  .hiring-card {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
