:root{
  --bg: #0A0A0C;
  --surface: #131316;
  --surface-2: #1A1A1F;
  --border: #26262D;
  --text: #F2F2F0;
  --muted: #9A9AA3;
  --accent: #3D5FFF;
  --accent-dim: rgba(61,95,255,0.14);
  --accent-glow: rgba(61,95,255,0.35);
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, .display{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.03;
}

.mono{ font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.04em; }
a{ color: inherit; text-decoration: none; }
.wrap{ max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav .wrap{ display:flex; align-items:center; justify-content:space-between; height: 76px; }
nav img{ height: 60px; }
.brand-mark{ display:flex; align-items:center; gap:10px; }
.brand-mark img{ height: 36px; width:auto; display:block; }
.brand-name{
  font-family:'Space Grotesk', sans-serif; font-weight:700;
  font-size:20px; letter-spacing:-0.01em; color: var(--text);
}
footer .brand-mark img{ height:28px; }
footer .brand-name{ font-size:16px; }
.nav-links{ display:flex; align-items:center; gap: 32px; }
.nav-links a{
  font-size: 14px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--accent); }
.nav-cta-group{ display:flex; align-items:center; gap: 28px; }

.btn-work{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--bg);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-work:hover{ transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.18); }
.btn-work .arrow-circle{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 760px){
  .nav-links{ display:none; }
}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 600; font-family:'Inter',sans-serif;
  cursor:pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn-primary{ background: var(--accent); color:#fff; }
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 6px 24px var(--accent-glow); }
.btn-ghost{ background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover{ border-color: var(--accent); }

/* NEW HERO - M3-inspired bold layout */
.new-hero{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 90px 32px 60px;
  min-height: 640px;
}
.hero-headline{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--text);
}
.hero-headline em{
  font-style: normal;
  display: inline-block;
  color: var(--text);
  transform: skewX(-8deg);
  font-style: italic;
}
.hero-desc{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 28px 0 0;
}
.hero-desc strong{ color: var(--text); font-weight: 600; }
.hero-text .cta-row{ margin-top: 36px; }
.hero-graphic{
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-graphic img{
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}
@media (max-width: 900px){
  .new-hero{ grid-template-columns: 1fr; text-align: left; padding-top: 60px; }
  .hero-graphic{ order: -1; margin-bottom: 20px; }
  .hero-graphic img{ max-width: 260px; }
}

.page-hero{ padding: 100px 0 80px; }
.page-hero .eyebrow{
  display:inline-block; font-size:12px; color: var(--accent);
  text-transform: uppercase; margin-bottom: 28px;
  padding: 6px 14px; border:1px solid var(--accent-dim);
  border-radius: 999px; background: var(--accent-dim);
}
.page-hero h1{
  font-size: clamp(48px, 8.5vw, 108px);
  max-width: 900px;
}
.page-hero h1 .muted{ color: var(--muted); }
.page-hero p.lead{
  max-width: 560px; margin-top: 28px;
  color: var(--muted); font-size: 19px;
}
.page-hero .cta-row{ margin-top: 40px; display:flex; gap:14px; flex-wrap:wrap; }

/* Statement band */
.statement{ padding: 90px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background: var(--surface); }
.statement .wrap{ max-width: 880px; }
.statement p{
  font-family:'Space Grotesk',sans-serif; font-weight:500;
  font-size: clamp(24px, 3.4vw, 38px); letter-spacing:-0.01em;
  color: var(--text); line-height:1.25;
}
.statement p .accent{ color: var(--accent); }

/* Sections generic */
section{ padding: 100px 0; }
.section-head{ max-width: 640px; margin-bottom: 64px; }
.section-head .eyebrow{
  display:inline-block; font-size:12px; color: var(--accent);
  text-transform:uppercase; margin-bottom:18px;
}
.section-head h2{ font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 16px; }
.section-head p{ color: var(--muted); font-size:17px; }

/* Split (For Brands / For Creators) */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border:1px solid var(--border); border-radius: 20px; overflow:hidden; }
.split-col{ background: var(--bg); padding: 48px; }
.split-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  display: block;
}
.split-col .tag{ font-size:12px; color:var(--accent); text-transform:uppercase; margin-bottom:16px; display:block; }
.split-col h3{ font-size: 26px; margin-bottom: 14px; }
.split-col p{ color: var(--muted); font-size:15px; margin-bottom: 22px; }
@media (max-width: 760px){ .split{ grid-template-columns: 1fr; } }

/* Process steps */
.process{ display:grid; grid-template-columns: repeat(3,1fr); gap:0; position:relative; }
.process::before{ content:''; position:absolute; top:26px; left:calc(100%/6); right:calc(100%/6); height:1px; background:var(--border); }
.step{ position:relative; padding:0 28px; }
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:50%;
  background: var(--bg); border:1px solid var(--border); color: var(--accent);
  font-size:15px; margin-bottom:24px; position:relative; z-index:2;
}
.step h3{ font-size:20px; margin-bottom:10px; }
.step p{ color: var(--muted); font-size:15px; }
@media (max-width:760px){ .process{ grid-template-columns:1fr; gap:48px;} .process::before{display:none;} }

/* CULTURE SECTION with photo collage */
.culture-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.culture-headline{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 20px 0 24px;
}
.gradient-text{
  background: linear-gradient(90deg, var(--accent) 0%, #8fb3ff 60%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.culture-text p{ color: var(--muted); font-size: 15px; margin-bottom: 16px; max-width: 480px; }
.social-btn{ margin-top: 16px; display: inline-flex; align-items: center; gap: 10px; }
.social-icon{
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.culture-photos{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}
.culture-photos img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.photo-slot{
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px dashed var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.photo-a{ grid-row: 1 / 3; grid-column: 1; }
.photo-b{ grid-row: 1; grid-column: 2; }
.photo-c{ grid-row: 2; grid-column: 2; }
@media (max-width: 860px){
  .culture-grid{ grid-template-columns: 1fr; }
  .culture-photos{ height: 340px; order: -1; margin-bottom: 20px; }
}

.values-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card{ background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:32px; }
.value-card .mono{ color: var(--accent); font-size:12px; display:block; margin-bottom:16px; }
.value-card h3{ font-size:19px; margin-bottom:10px; }
.value-card p{ color:var(--muted); font-size:14px; }
@media (max-width:760px){ .values-grid{ grid-template-columns:1fr; } }

/* Photo strip (Home) */
.photo-strip{ padding: 20px 0 100px; }
.photo-strip-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-strip-grid img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
@media (max-width: 860px){
  .photo-strip-grid{ grid-template-columns: repeat(2, 1fr); }
}

.cta-band{ text-align:center; padding: 110px 0; }
.cta-band h2{ font-size: clamp(32px,5vw,56px); margin-bottom:24px; }
.cta-band p{ color:var(--muted); font-size:17px; max-width:480px; margin:0 auto 36px; }

/* Model note */
.model-note{
  margin-top: 56px; padding: 32px; border:1px solid var(--border);
  border-radius:16px; background: var(--bg); display:flex; gap:24px; align-items:flex-start;
}
.model-note .mono{ color: var(--accent); font-size:13px; white-space:nowrap; padding-top:3px; }
.model-note p{ color: var(--muted); font-size:15px; }
@media (max-width:760px){ .model-note{ flex-direction:column; gap:12px; } }

/* Contact form */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:start; }
.contact-copy h1{ font-size: clamp(40px,6vw,64px); margin-bottom:18px; }
.contact-copy p{ color: var(--muted); font-size:16px; margin-bottom:28px; }
.contact-copy .mono{ font-size:13px; color:var(--muted); display:block; margin-top:6px; }
form{ display:flex; flex-direction:column; gap:18px; }
.field label{ display:block; font-size:13px; color:var(--muted); margin-bottom:8px; text-transform:uppercase; letter-spacing:.04em; }
.field input, .field textarea{
  width:100%; background: var(--surface); border:1px solid var(--border);
  border-radius:10px; padding:13px 16px; color:var(--text);
  font-family:'Inter',sans-serif; font-size:15px; transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus{ outline:none; border-color: var(--accent); }
.field textarea{ resize:vertical; min-height:120px; }
form .btn-primary{ align-self:flex-start; margin-top:8px; border:none; font-size:15px; }
@media (max-width:760px){ .contact-grid{ grid-template-columns:1fr; } }

/* FOOTER */
footer{ padding: 48px 0; border-top:1px solid var(--border); }
footer .wrap{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
footer img{ height:48px; }
footer .tagline{ color: var(--muted); font-size:13px; }
footer .foot-links{ display:flex; gap:24px; font-size:13px; color:var(--muted); }
footer .foot-links a:hover{ color: var(--accent); }

/* COOKIE CONSENT BANNER */
.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner.visible{ display: flex; }
.cookie-banner p{ color: var(--muted); font-size: 14px; margin: 0; max-width: 600px; }
.cookie-banner p a{ color: var(--accent); }
.cookie-actions{ display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions button{
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
}
@media (max-width: 640px){
  .cookie-banner{ flex-direction: column; align-items: flex-start; }
}
