:root {
  --bg: #0f0f10;
  --bg-soft: #151517;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.045);
  --text: #f4f1e8;
  --muted: #c9c0ae;
  --line: rgba(231, 221, 199, 0.14);
  --line-strong: rgba(231, 221, 199, 0.22);
  --accent: #e7ddc7;
  --accent-soft: #b8aa8b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
  --transition: 0.22s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 221, 199, 0.05), transparent 28%),
    linear-gradient(180deg, #101011 0%, #0b0b0c 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 12, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand:hover .brand-name {
  color: #fff;
}

.brand-mark,
.footer-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text,
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name,
.footer-brand-name {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-sub,
.footer-brand-copy,
.hero-note,
.hero-caption,
.panel p,
.card p,
.cta-band-copy p {
  color: var(--muted);
}

.brand-sub {
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-right a {
  font-size: 0.94rem;
  color: var(--muted);
  transition: color var(--transition);
}

.site-nav a:hover,
.footer-right a:hover {
  color: #fff;
}

main {
  overflow: hidden;
}

.hero {
  padding: 86px 0 72px;
}

.hero-grid,
.two-column,
.card-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.panel,
.card,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.panel {
  padding: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-tag,
.card-tag,
.card-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

.eyebrow {
  margin-bottom: 18px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 7ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 14px 0 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-lead {
  max-width: 37rem;
  margin-top: 6px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: transparent;
  font-weight: 700;
}

.btn-primary:hover {
  background: #f1e7d3;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.hero-note {
  font-size: 0.95rem;
}

.hero-panel {
  display: flex;
}

.hero-visual {
  width: 100%;
  min-height: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.055), rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 28px;
}

.hero-wordmark {
  width: min(100%, 520px);
  opacity: 0.95;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.5));
  margin-bottom: 8px;
}

.hero-product-mark {
  width: min(100%, 290px);
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.52));
}

.hero-caption {
  max-width: 29rem;
  text-align: center;
  font-size: 0.98rem;
}

.section {
  padding: 0 0 72px;
}

.two-column {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
}

.stack-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.stack-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.stack-item h3 {
  margin-bottom: 6px;
}

.section-head {
  margin-bottom: 22px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.card {
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.card-tag {
  margin-bottom: 14px;
}

.card-image-frame {
  min-height: 240px;
  margin: 4px 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image {
  width: 100%;
  max-width: 270px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.55));
}

.card-status {
  margin-top: auto;
  color: var(--accent-soft);
  border-color: rgba(184, 170, 139, 0.2);
  background: rgba(184, 170, 139, 0.04);
}

.cta-band {
  margin-top: 26px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-band-title {
  font-size: 1.28rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 38px;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner,
  .footer-left {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 14px;
  }

  .hero {
    padding: 68px 0 58px;
  }

  .hero-copy,
  .hero-panel,
  .panel,
  .card,
  .cta-band {
    padding: 24px;
    border-radius: 20px;
  }

  .hero-visual,
  .card-image-frame,
  .stack-item {
    border-radius: 18px;
  }

  h1 {
    max-width: 8ch;
  }

  .hero-wordmark {
    width: 100%;
  }

  .hero-product-mark {
    width: min(100%, 240px);
  }
}