:root{
  --max: 1120px;

  --text: #0f172a;
  --muted: rgba(15,23,42,.70);
  --border: rgba(15, 23, 42, 0.12);

  --card: rgba(255,255,255,0.86);
  --cardStrong: rgba(255,255,255,0.93);

  --accent: #2563eb;   /* blue */
  --accent2: #06b6d4;  /* teal */

  --shadow: 0 10px 30px rgba(2, 6, 23, 0.10);
  --shadow2: 0 18px 60px rgba(2, 6, 23, 0.14);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 15% 0%, rgba(37,99,235,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(6,182,212,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #ffffff 100%);
}

a{ color:inherit; }
.wrap{ max-width: var(--max); margin:0 auto; padding:0 20px; }

/* ===== Header ===== */
header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 12, 24, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}

.brandlink{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

/* Logo badge so JPEG looks clean */
.brandlogo{
  height: 44px;
  width: auto;
  display:block;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 45px rgba(0,0,0,0.30);
}

/* Desktop links */
.links a{
  text-decoration:none;
  margin-left: 14px;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  letter-spacing: .2px;
}
.links a:hover{ color:#fff; text-decoration: underline; }

.links-desktop{ display:flex; align-items:center; }

/* ===== Mobile menu (CSS-only hamburger) ===== */
.nav-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.nav-burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  align-items:center;
  justify-content:center;
  gap: 5px;
  cursor:pointer;
}
.nav-burger span{
  display:block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
}

/* Mobile links container (hidden by default) */
.links-mobile{
  display:none;
  padding: 8px 20px 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.links-mobile a{
  display:block;
  padding: 10px 0;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  text-decoration:none;
}
.links-mobile a:hover{ text-decoration: underline; }

/* Toggle open */
#nav-toggle:checked ~ .links-mobile{ display:block; }

/* ===== Hero ===== */
.hero{ padding: 22px 0 6px; }

.hero-inner{
  padding: 42px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(37,99,235,.26), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(6,182,212,.20), transparent 60%),
    linear-gradient(180deg, rgba(7,12,24,.92), rgba(7,12,24,.78));
  box-shadow: 0 26px 90px rgba(2,6,23,.22);
  position: relative;
  overflow: hidden;
}

.hero-inner::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.10) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 55%, rgba(255,255,255,.08) 0 1px, transparent 2px);
  background-size: 22px 22px;
  opacity: .25;
  pointer-events:none;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

h1{
  margin: 14px 0 10px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color:#fff;
  position: relative;
  z-index: 1;
}

.sub{
  max-width: 900px;
  font-size: 18px;
  color: rgba(255,255,255,.86);
  position: relative;
  z-index: 1;
}

.cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
}

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

.btn.primary{
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 45px rgba(37,99,235,.22);
}

.btn.ghost{ background: rgba(255,255,255,.08); }

.pillrow{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pill{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

/* ===== Sections / Cards ===== */
section{
  padding: 34px 0;
  border-top: 1px solid rgba(15,23,42,.08);
}

h2{
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.small{ font-size: 13px; color: rgba(15,23,42,.62); }

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

.card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.note{ background: var(--cardStrong); }

.span6{ grid-column: span 6; }
.span12{ grid-column: span 12; }

ul{ margin: 10px 0 0; padding-left: 18px; }
li{ margin: 8px 0; color: rgba(15,23,42,.78); }

/* ===== Screens Gallery ===== */
.shots{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

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

.shot img{ width: 100%; display:block; }

.cap{
  padding: 10px 12px;
  border-top: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.72);
  font-size: 14px;
  font-weight: 700;
}

.contact{ margin-top: 10px; }
.footer{ padding: 26px 0 44px; color: rgba(15,23,42,.55); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  h1{ font-size: 36px; }
  .hero-inner{ padding: 36px 18px; }
}

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

@media (max-width: 720px){
  /* Swap desktop links for burger */
  .links-desktop{ display:none; }
  .nav-burger{ display:flex; }
  .nav-toggle{ position: static; }
  .brandlogo{ height: 40px; padding: 7px 10px; border-radius: 12px; }
}

@media (max-width: 480px){
  h1{ font-size: 30px; }
  .sub{ font-size: 16px; }
  .btn{ width: 100%; justify-content:center; }
  .pill{ width: 100%; text-align:center; }
}
