:root{
  --bg: #0b0f14;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --border: rgba(255,255,255,.14);
  --accent: #67d9ff;
  --accent2: #b8ffda;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

@media (prefers-color-scheme: light){
  :root{
    --bg: #f7f7fb;
    --panel: rgba(0,0,0,.04);
    --panel2: rgba(0,0,0,.06);
    --text: rgba(5,10,16,.92);
    --muted: rgba(5,10,16,.72);
    --muted2: rgba(5,10,16,.56);
    --border: rgba(5,10,16,.12);
    --shadow: 0 16px 42px rgba(0,0,0,.12);
  }
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 800px at 10% 0%, rgba(103,217,255,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 15%, rgba(184,255,218,.12), transparent 55%),
    var(--bg);
  color: var(--text);
}

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

.top{
  position: sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(12px);
  background:
    linear-gradient(90deg, rgba(103,217,255,.08), rgba(184,255,218,.06)),
    color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 18px;
}

.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.mark{
  width: 14px; height:14px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(103,217,255,.10);
}
.name{ font-weight: 750; letter-spacing: .2px; }

.nav{ display:flex; gap: 10px; align-items:center; }
.nav a{
  padding:8px 10px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav__icon{
  width: 18px;
  height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  line-height: 1;
  opacity: .85;
}
.nav a:hover{
  background: linear-gradient(135deg, rgba(103,217,255,.12), rgba(184,255,218,.10));
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  color: var(--text);
  text-decoration:none;
}
.nav a.nav__cta{
  color: var(--text);
  background: linear-gradient(135deg, rgba(103,217,255,.22), rgba(184,255,218,.18));
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  font-weight: 700;
}

main{ max-width: var(--max); margin: 0 auto; padding: 28px 18px 46px; }

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 10px;
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}

.hero__copy{
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(700px 220px at 15% 0%, rgba(103,217,255,.14), transparent 60%),
    radial-gradient(700px 260px at 85% 10%, rgba(184,255,218,.10), transparent 55%),
    linear-gradient(180deg, var(--panel), transparent);
  box-shadow: var(--shadow);
}
.hero__copy h1{
  background: linear-gradient(90deg, var(--text), color-mix(in srgb, var(--accent) 55%, var(--text)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__copy ::selection{ background: rgba(103,217,255,.25); }
.kicker{ margin:0 0 10px; color: var(--muted); font-size: 14px; letter-spacing:.3px; }
.hero h1{ margin: 0 0 12px; font-size: 46px; line-height:1.08; }
@media (max-width: 520px){ .hero h1{ font-size: 38px; } }

.lead{ margin:0 0 16px; font-size: 18px; color: var(--text); }

.ctaRow{ display:flex; flex-wrap:wrap; gap: 10px; margin: 18px 0 6px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(103,217,255,.22), rgba(184,255,218,.18));
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border));
  text-decoration:none;
  font-weight: 720;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transform: translateY(0);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{ text-decoration:none; filter: brightness(1.06); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn--ghost{
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  border: 1px solid var(--border);
  color: var(--muted);
  box-shadow: none;
}
.btn--ghost:hover{ color: var(--text); background: color-mix(in srgb, var(--panel2) 70%, transparent); }

.fineprint{ margin: 14px 0 0; color: var(--muted2); font-size: 13px; }

.hero__image{
  margin:0;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel2), transparent);
  box-shadow: var(--shadow);
}
.hero__image img{
  width:100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.hero__image figcaption{ margin-top: 10px; color: var(--muted2); font-size: 13px; }

.section{ padding: 34px 0 8px; }
.section h2{ margin:0 0 12px; font-size: 26px; }
.sectionLead{ margin:0 0 18px; color: var(--muted); }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px){
  .grid2{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
}

.card{
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}
.card h3{ margin:0 0 8px; font-size: 18px; }
.card p{ margin: 10px 0; color: var(--muted); }

.pillCard{
  padding: 16px 16px 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(103,217,255,.10), rgba(184,255,218,.08));
  border: 1px solid var(--border);
}
.pillCard h3{ margin: 0 0 6px; font-size: 18px; }
.pillCard p{ margin: 0; color: var(--muted); }

.bullets{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin: 6px 0; }

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.shot{
  grid-column: span 6;
  margin:0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
}

@media (max-width: 900px){
  .shot{ grid-column: span 12; }
}

.shot img{
  display:block;
  width:100%;
  height: 340px;
  object-fit: cover;
}

.shot figcaption{
  padding: 12px 12px 14px;
  color: var(--muted);
}

.footer{
  padding: 30px 0 10px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(103,217,255,.22), rgba(184,255,218,.18));
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
  color: var(--text);
  text-decoration:none;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, filter .16s ease;
}
.toTop:hover{ filter: brightness(1.07); }
.toTop--show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.muted{ color: var(--muted); }
.dot{ margin: 0 10px; color: var(--muted2); }
