:root{
  --bg0:#0f0f12;
  --bg1:#14131a;
  --paper:#fff7ea;
  --paper2:#fff2d9;
  --ink:#141414;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.58);
  --gold:#d7b24a;
  --gold2:#f1d27a;
  --accent:#ffdf9a;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:26px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:#fff;
  background:
    radial-gradient(1200px 600px at 30% -10%, rgba(215,178,74,.35), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(241,210,122,.22), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(255,223,154,.16), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  line-height:1.55;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(15,15,18,.82), rgba(15,15,18,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
/*.brand-badge{
  width:36px;
  height:36px;
  border:0;
  border-radius:0;
  box-shadow:none;
  background-color:transparent;
  background-image:url("assets/key_icon.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
}
*/
/*.brand-badge{
  width:36px;
  height:36px;
  border:0;
  border-radius:0;
  box-shadow:none;
  background-color:transparent;
  background-image:url("assets/key_icon.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
}
*/

.brand-badge{
  width:36px;
  height:36px;
  border:0;
  border-radius:0;
  box-shadow:none;
  background-color:transparent;
  background-image:url("assets/key_icon.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
}
.brand-title{font-weight:700; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted2); margin-top:1px}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.navlinks{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.navlinks a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:#fff}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn.primary{
  background: linear-gradient(180deg, rgba(241,210,122,.95), rgba(215,178,74,.92));
  color:#1b1406;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 40px rgba(215,178,74,.22);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{border:1px solid rgba(255,255,255,.14);}

.hero{
  padding:56px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:30px;
  align-items:center;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-size:12px;
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--gold));
  box-shadow:0 0 18px rgba(241,210,122,.5);
}
h1{
  margin:16px 0 10px;
  font-size:52px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.lede{
  margin:12px 0 20px;
  font-size:16px;
  color:var(--muted);
  max-width:56ch;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.meta{
  margin-top:18px; display:flex; gap:14px; flex-wrap:wrap; color:var(--muted2); font-size:13px;
}
.meta span{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.phone-stack{
  position:relative;
  display:flex; justify-content:center;
}
.phone-stack .glow{
  position:absolute; inset:-12%;
  background:
    radial-gradient(closest-side, rgba(241,210,122,.25), transparent 70%),
    radial-gradient(closest-side at 60% 40%, rgba(215,178,74,.22), transparent 70%);
  filter: blur(22px);
  z-index:0;
}
.phone{
  position:relative; z-index:1;
  width:min(420px, 92vw);
  border-radius:28px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background:rgba(0,0,0,.2);
}
.phone img{display:block; width:100%; height:auto}

.section{padding:34px 0}
.section h2{
  margin:0 0 12px;
  font-size:26px;
  letter-spacing:-.2px;
}
.section p{color:var(--muted); margin:0 0 14px; max-width:78ch}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.card{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.card h3{margin:0 0 8px; font-size:15px}
.card p{margin:0; color:var(--muted); font-size:14px}

.screens{
  margin-top:18px;
  display:flex; gap:14px;
  overflow:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
}
.screens::-webkit-scrollbar{height:10px}
.screens::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18); border-radius:10px}
.screens figure{
  margin:0;
  min-width:260px;
  scroll-snap-align:start;
}
.screens img{
  width:100%;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.screens figcaption{
  font-size:12px; color:var(--muted2);
  margin-top:8px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:16px;
}
.paper{
  border-radius:var(--radius2);
  padding:18px 18px 14px;
  background:linear-gradient(180deg, rgba(255,247,234,.98), rgba(255,242,217,.96));
  color:var(--ink);
  border:1px solid rgba(255,255,255,.10);
}
.paper h3{margin:0 0 8px; font-size:16px}
.paper p, .paper li{color:#2a2a2a}
.paper ul{margin:10px 0 0; padding-left:18px}

footer{
  padding:26px 0 34px;
  color:var(--muted2);
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:26px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.small{font-size:12px; color:var(--muted2)}
.footer-links{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.footer-links a{color:var(--muted); text-decoration:none; padding:8px 10px; border-radius:12px}
.footer-links a:hover{background:rgba(255,255,255,.06); color:#fff}

.page{
  padding:34px 0 48px;
}
.page .paper{
  max-width:860px;
  margin:0 auto;
}
hr{
  border:none; height:1px;
  background:rgba(0,0,0,.10);
  margin:16px 0;
}

@media (max-width: 940px){
  .hero-grid{grid-template-columns: 1fr; gap:18px}
  h1{font-size:44px}
  .cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
}