*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:     #080808;
  --panel:  #141414;
  --border: #222;
  --dim:    #888;
  --fg:     #f0ede6;
  --amber:  #e8a020;
  --mono:   'Share Tech Mono', monospace;
  --disp:   'Teko', sans-serif;
  --body:   'Crimson Pro', Georgia, serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px
  );
}
.mono {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
a { color: inherit; text-decoration: underline; }
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(6px);
}
nav a.logo { color: var(--amber); text-decoration: none; font-family: var(--mono); font-size: 1rem; letter-spacing: 0.1em; }
nav ul { display: flex; gap: 36px; list-style: none; }
nav ul a { text-decoration: none; transition: color 0.2s; }
nav ul a:hover { color: var(--amber); }
section {
  position: relative;
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}
.label::after { content: ''; width: 40px; height: 1px; background: #6b480e; }
h2 {
  font-family: var(--disp);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 24px;
}
h2 em { font-style: normal; color: var(--amber); }
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-cells {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
}
.cell { background: var(--panel); padding: 28px; }
#hero {
  min-height: 100vh;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: center;
}
#hero .left { display: flex; flex-direction: column; }
#hero h1 {
  font-family: var(--disp);
  font-size: clamp(80px, 10vw, 180px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 16px 0 24px;
}
#hero p.sub {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--dim);
  font-style: italic;
  margin-bottom: 36px;
}
.actions { display: flex; gap: 16px; }
.btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: 2px solid var(--amber);
}
.btn-fill { color: var(--bg); background: var(--amber); }
.btn-fill:hover { background: transparent; color: var(--amber); }
.btn-outline { color: var(--dim); background: transparent; border-color: var(--border); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
#hero .shot-box {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}
#about .layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; }
#about p { color: var(--dim); font-size: 1.05rem; margin-bottom: 1em; }
#about strong { color: var(--fg); font-weight: 400; }
.stat-grid { grid-template-columns: 1fr 1fr; margin-top: 32px; }
.stat-val { font-family: var(--disp); font-size: 3rem; font-weight: 600; color: var(--amber); line-height: 1; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.cell:hover { background: #181818; }
.cell-title { font-family: var(--disp); font-size: 1.5rem; color: var(--fg); margin: 10px 0 8px; }
.shot-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; }
.shot-grid .cell { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
.shot-grid .cell.large { grid-row: span 2; aspect-ratio: unset; }
#download { text-align: center; }
#download .label { justify-content: center; }
#download .label::after { display: none; }
#download h2 { font-size: clamp(48px, 8vw, 110px); font-weight: 600; max-width: 900px; margin: 0 auto 16px; }
#download p.sub { color: #444; font-style: italic; margin-bottom: 36px; }
#download .actions { justify-content: center; }
.req {
  display: inline-block;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px 28px;
  margin-bottom: 36px;
  text-align: left;
}
.req p { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--dim); line-height: 1.9; }
.req p::before { content: '> '; color: var(--amber); }
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
