:root {
  --bg: #060708;
  --bg-2: #101214;
  --ink: #edf0e8;
  --muted: #a9afa2;
  --line: rgba(255, 255, 255, 0.1);
  --paper: rgba(15, 17, 19, 0.78);
  --paper-2: rgba(20, 22, 25, 0.86);
  --lime: #b6d243;
  --lime-soft: #d8eb87;
  --graphite: #4a4a4d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  min-height: 100vh;
  position: relative;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(182, 210, 67, 0.1), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(182, 210, 67, 0.18), transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.03), transparent 42%),
    linear-gradient(180deg, #060708 0%, #08090b 42%, #0a0c0e 100%);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-bg::before {
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(182, 210, 67, 0.08) 36.3%, transparent 37%),
    linear-gradient(150deg, transparent 0 73%, rgba(182, 210, 67, 0.05) 73.2%, transparent 74%);
  opacity: 0.9;
}

.page-bg::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.topbar,
main,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-frame {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  padding: 8px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(182, 210, 67, 0.06);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, transparent 42%, rgba(182, 210, 67, 0.7) 43%);
  opacity: 0.85;
  pointer-events: none;
}

.logo-image {
  width: 160px;
  height: auto;
  display: block;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
}

.brand-name strong {
  font-size: 1rem;
  color: #f4f7ef;
}

.brand-name span {
  color: var(--muted);
}

.ghost-link {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(182, 210, 67, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(182, 210, 67, 0.05);
}

.ghost-link:hover {
  background: rgba(182, 210, 67, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 10px;
}

.hero-copy,
.hero-panel,
.visual-story,
.manifesto,
.signature,
.contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(182, 210, 67, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lime);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.92;
  max-width: 12ch;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  color: #f6f9f2;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 54ch;
}

.lead strong {
  color: #eef6d4;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #b6d243, #9bb62f);
  color: #12140f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(182, 210, 67, 0.45);
  background: rgba(182, 210, 67, 0.08);
}

.hero-panel {
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: start;
  background:
    radial-gradient(circle at 82% 8%, rgba(182, 210, 67, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    var(--paper-2);
}

.panel-visual {
  border: 1px solid rgba(182, 210, 67, 0.16);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.panel-visual img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.panel-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 16px;
}

.panel-card.accent {
  background: linear-gradient(145deg, rgba(182, 210, 67, 0.13), rgba(255, 255, 255, 0.01));
  border-color: rgba(182, 210, 67, 0.24);
}

.panel-card p {
  margin: 6px 0 0;
  font-weight: 800;
  font-size: 1.05rem;
}

.panel-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.visual-story {
  margin-top: 20px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(182, 210, 67, 0.1), transparent 42%),
    var(--paper);
}

.section-title h2,
.signature h2,
.contact h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.06;
  color: #f4f6ef;
}

.visual-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f1113;
}

.visual-copy {
  padding: 14px 14px 16px;
}

.visual-copy h3 {
  margin: 0 0 6px;
  color: #f0f4e7;
}

.visual-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.manifesto {
  margin-top: 20px;
  padding: 24px;
}

.manifesto-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.manifesto-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  overflow: hidden;
}

.manifesto-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), rgba(182, 210, 67, 0));
}

.manifesto-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #eff3e7;
}

.manifesto-grid p {
  margin: 0;
  color: var(--muted);
}

.signature {
  margin-top: 20px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(182, 210, 67, 0.06), rgba(182, 210, 67, 0.02)),
    var(--paper);
}

.signature-copy p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.signature-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.badge {
  padding: 18px 14px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 800;
  color: #eff3e7;
}

.badge:nth-child(1) { background: rgba(182, 210, 67, 0.12); color: #11140f; }
.badge:nth-child(2) { background: rgba(255, 255, 255, 0.03); }
.badge:nth-child(3) { background: rgba(255, 255, 255, 0.015); }
.badge:nth-child(4) { background: rgba(182, 210, 67, 0.06); }

.contact {
  margin: 20px 0 26px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.contact > div:first-child p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(182, 210, 67, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.contact-title {
  margin: 0 0 10px;
  font-weight: 800;
  color: #f1f4ea;
}

.contact-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-card li + li {
  margin-top: 6px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p:first-child {
  color: #edf1e5;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .signature,
  .contact {
    grid-template-columns: 1fr;
  }

  .visual-grid,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .hero-panel,
  .visual-story,
  .manifesto,
  .signature,
  .contact {
    padding: 18px;
    border-radius: 16px;
  }

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

  .logo-image {
    width: 132px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 18px;
  }
}
