@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

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

:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-mid:    #1a1a1a;
  --mid:         #2e2e2e;
  --muted:       #555555;
  --subtle:      #888888;
  --light-muted: #aaaaaa;
  --light:       #cccccc;
  --off-white:   #e8e8e8;
  --white:       #f5f5f5;
  --accent:      #d4d4d4;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── BACKGROUND ── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
  filter: grayscale(100%) brightness(0.18) contrast(1.1);
  transform: scale(1.04);
}

.bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
    linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── LAYOUT ── */
.wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* ── HEADER ── */
header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2.2rem 3.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--subtle);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}

/* ── MAIN CONTENT ── */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 3.5rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  width: 100%;
  max-width: 1200px;
}

/* LEFT — EYEBROW + HEADLINE */
.left-col {}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.eyebrow-line {
  width: 36px;
  height: 0.5px;
  background: var(--muted);
}

.eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.headline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.headline em {
  font-style: italic;
  color: var(--light-muted);
}

.sub-headline {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--subtle);
  max-width: 380px;
}

/* RIGHT — DIVIDER + CTA */
.right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0.5px solid rgba(255,255,255,0.08);
  padding-left: 5rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--muted);
}

.cta-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--off-white);
  margin-bottom: 3rem;
  max-width: 340px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  text-decoration: none;
  padding: 1.1rem 0;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease;
  group: true;
}

.social-link:last-child {
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.social-link:hover {
  padding-left: 0.5rem;
}

.social-link:hover .link-label {
  color: var(--white);
}

.social-link:hover .link-icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.social-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.link-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--light-muted);
}

.link-meta {
  flex: 1;
}

.link-label {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--light-muted);
  transition: color 0.3s ease;
  display: block;
}

.link-sublabel {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.18rem;
  letter-spacing: 0.04em;
}

.link-arrow {
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0;
  transition: all 0.3s ease;
}

/* ── FOOTER ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.footer-note {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-line {
  width: 60px;
  height: 0.5px;
  background: rgba(255,255,255,0.08);
}

/* ── ENTRANCE ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.15s; }
.fade-up:nth-child(2) { animation-delay: 0.28s; }
.fade-up:nth-child(3) { animation-delay: 0.42s; }
.fade-up:nth-child(4) { animation-delay: 0.56s; }
.fade-up:nth-child(5) { animation-delay: 0.70s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header, main, footer {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .right-col {
    border-left: none;
    border-top: 0.5px solid rgba(255,255,255,0.08);
    padding-left: 0;
    padding-top: 2.5rem;
  }

  .headline {
    font-size: 2.6rem;
  }
}

@media (max-width: 560px) {
  .headline { font-size: 2rem; }
  header { padding: 1.5rem; }
  main { padding: 0 1.5rem; }
  footer { padding: 1.2rem 1.5rem; }
}
