/* Minimal poster-style homepage, dark edition */
:root {
  --bg: #040404;
  --ink: #f8f8f8;
  --muted: #aeb4c4;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --accent: #ff4b6a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

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

.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px 140px;
  position: relative;
}

.demo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 18px;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.logo .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.chip {
  padding: 6px 0;
  background: transparent;
  border: none;
  color: var(--ink);
  font-weight: 500;
}

.chip:hover,
.chip.active {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 60vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-heading {
  font-size: clamp(56px, 11vw, 118px);
  line-height: 0.92;
  margin: 0;
  font-weight: 800;
}

.hero-sub {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}

.signature {
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
}

.signature svg {
  width: 100%;
  height: auto;
  stroke: rgba(255, 255, 255, 0.35);
}

.section {
  margin: 60px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: 0.01em;
}

.section p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px 18px;
}

.panel {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  transform-style: preserve-3d;
}

.panel::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 75, 106, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.panel:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(255, 75, 106, 0.2), 0 8px 24px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 75, 106, 0.4);
}

.panel:hover::after {
  opacity: 1;
}

.panel h3 {
  margin: 0 0 8px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.line-item strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.line-item span {
  color: var(--muted);
}

.contact-stack {
  position: absolute;
  right: 28px;
  bottom: 32px;
  display: grid;
  gap: 8px;
  text-align: right;
}

.contact-stack a {
  font-weight: 500;
  color: var(--ink);
}

.contact-stack a:hover {
  text-decoration: underline;
}

.link-stack {
  display: grid;
  gap: 6px;
}

.link-stack a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.link-stack a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-stack {
    position: static;
    margin-top: 40px;
    text-align: left;
  }
}
.section-grid .line-item {
  margin: 0;
}
