* { box-sizing: border-box; }

:root{
  --bg:#0b0b0b;
  --fg:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.60);
  --line:rgba(255,255,255,.16);
  --chip:rgba(255,255,255,.10);
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--fg);
}

/* HEADER */
header{
  position: sticky;
  top: 0;
  background: rgba(11,11,11,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  z-index: 10;
}

nav{
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display:flex;
  flex-wrap:wrap;
  gap: 22px;
  align-items:center;
}

nav a{
  color:var(--fg);
  text-decoration:none;
  font-size:.95rem;
  opacity:.82;
  padding-bottom:4px;
}

nav a:hover,
nav a.active{
  opacity:1;
  border-bottom:1px solid var(--fg);
}

/* GLOBAL PAGE WRAPPER */
.page{
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px;
}

.section{
  margin-top: 72px;
}

.kicker{
  margin: 0 0 14px;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* DIVIDER */
.divider{
  width:100%;
  height:1px;
  background: rgba(255,255,255,0.12);
  margin: 48px 0;
}

/* HERO */
.hero{
  max-width:1280px;
  margin:0 auto;
  padding: 40px 32px;
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: stretch;
  min-height: 100vh;
}

.hero-title{
  font-size: clamp(72px, 7.5vw, 120px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero-name{
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
  margin: 0 0 10px;
}

.hero-desc{
  font-size: 1.22rem;
  max-width: 580px;
  color: rgba(255,255,255,0.78);
  margin: 12px 0 18px;
  line-height: 1.55;
}

.hero-meta{
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 26px;
}

/* BUTTONS */
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight: 600;
  font-size: .98rem;
  transition: transform .08s ease, opacity .2s ease, background .2s ease;
}

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

.btn-primary{
  background: #ffffff;
  color: #0b0b0b;
  border-color: #ffffff;
}

.btn-ghost{
  background: transparent;
  color: var(--fg);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.05);
}

/* IMAGE */
.hero-image{
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--chip);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center top;
  display:block;
}

/* PROOF STRIP */
.proof{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 18px;
}

.proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
}

/* QUOTE */
.quote{
  text-align:center;
  margin: 68px 0 44px;
  position: relative;
}

.quote h1{
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.12;
  color: rgba(255,255,255,0.95);
}

.quote:after{
  content:"";
  display:block;
  width: 120px;
  height: 1px;
  margin: 22px auto 0;
  background: rgba(255,255,255,0.18);
}

/* GRID CARDS */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.card p{
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
}

.card small{
  display:block;
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
}

/* FEATURED LIST */
.featured{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.featured a{
  text-decoration:none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  gap: 14px;
  align-items:center;
}

.featured a:hover{
  background: rgba(255,255,255,0.08);
}

.featured span{
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

/* STORY LAYOUT */
.story-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.story-image{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  overflow: hidden;
  background: var(--chip);
}

.story-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.story-copy h2{
  font-size: clamp(30px, 2.6vw, 46px);
  line-height: 1.08;
  margin: 0 0 10px;
}

.story-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
}

.story-copy p{
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 62ch;
}

/* CONTACT */
.contact-box{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px;
}

.contact-box p{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.contact-links{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 12px;
}

.contact-links a{
  text-decoration:none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 10px 14px;
}

.contact-links a:hover{
  background: rgba(255,255,255,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px){
  nav{
    padding: 14px 24px;
    gap: 16px;
  }

  .hero{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 24px 32px;
    min-height: auto;
  }

  .hero-image{
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 16px;
  }

  .page{
    padding: 40px 24px;
  }

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

  .story-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .quote{
    margin: 44px 0 28px;
  }
}
