
:root{
  --bg:#070707;
  --bg2:#0c0d0f;
  --panel:#111216;
  --panel2:#16181c;
  --text:#f4f1ec;
  --muted:#aaa7a2;
  --silver:#c7c7c7;
  --orange:#f36a16;
  --orange2:#ff8b35;
  --line:#2b2d31;
  --max:1180px;
  --radius:20px;
  --shadow:0 24px 70px rgba(0,0,0,.42);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 82% 10%, rgba(243,106,22,.11), transparent 25%),
    radial-gradient(circle at 15% 50%, rgba(243,106,22,.05), transparent 22%),
    linear-gradient(180deg,#060606,#0a0a0b 52%,#060606);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.wrap{width:min(calc(100% - 32px),var(--max));margin:auto}
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(7,7,7,.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid #202124;
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:900;letter-spacing:.03em;
}
.brand img{
  width:58px;height:58px;object-fit:contain;
}
.brand-copy strong{display:block;font-size:1rem;line-height:1}
.brand-copy span{display:block;color:var(--muted);font-size:.72rem;letter-spacing:.18em;margin-top:4px}
.nav-links{display:flex;align-items:center;gap:26px;color:#d4d1cd;font-size:.94rem}
.nav-links a:hover{color:var(--orange2)}
.menu-btn{
  display:none;border:1px solid #37383b;background:#111214;color:#fff;
  border-radius:10px;padding:9px 12px;
}
.hero{
  position:relative;
  overflow:hidden;
  padding:82px 0 58px;
  border-bottom:1px solid #17181b;
}
.hero:before{
  content:"";position:absolute;inset:auto -120px -130px auto;
  width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle,rgba(243,106,22,.17),transparent 66%);
  filter:blur(6px);
}
.hero-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:54px;
  align-items:center;
}
.eyebrow{
  color:var(--orange);
  font-size:.83rem;font-weight:850;letter-spacing:.17em;text-transform:uppercase;
}
h1,h2,h3{margin-top:0}
h1{
  font-size:clamp(3.1rem,7vw,6rem);
  line-height:.95;letter-spacing:-.055em;
  margin:16px 0 20px;
  color:#dedede;
}
h1 span{color:#f3c4a3;text-shadow:0 0 28px rgba(243,106,22,.22)}
h2{
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.08;letter-spacing:-.035em;
  margin-bottom:16px;
}
h3{font-size:1.17rem;margin-bottom:8px}
.lead{font-size:1.18rem;color:#b9b6b1;max-width:650px}
.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.btn{
  min-height:50px;padding:0 22px;border-radius:11px;
  border:1px solid #3b3d42;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;transition:.2s ease;
}
.btn-primary{
  color:#111;background:linear-gradient(180deg,var(--orange2),var(--orange));
  border-color:var(--orange);
  box-shadow:0 0 28px rgba(243,106,22,.18);
}
.btn-primary:hover{transform:translateY(-1px);filter:brightness(1.04)}
.btn-secondary{background:#111214;color:#f0efec}
.tagline-row{
  display:flex;gap:18px;flex-wrap:wrap;
  margin-top:34px;color:#d7d3cf;font-size:.9rem
}
.tag{display:flex;align-items:center;gap:8px}
.tag:before{content:"◆";color:var(--orange);font-size:.75rem}
.hero-art{position:relative;min-height:560px;display:grid;place-items:center}
.brand-halo{
  position:absolute;width:470px;height:470px;border-radius:50%;
  background:radial-gradient(circle,rgba(243,106,22,.16),transparent 65%);
  filter:blur(10px);
}
.brand-logo{
  width:min(520px,88%);
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  filter:drop-shadow(0 20px 45px rgba(0,0,0,.5));
}
.app-card{
  position:absolute;right:1%;bottom:0;
  width:260px;padding:15px;
  background:linear-gradient(180deg,#121317,#0b0c0e);
  border:1px solid #44464b;border-radius:26px;
  box-shadow:var(--shadow);
}
.app-card img{display:block;border-radius:18px;background:#090909}
.app-card .label{
  margin-top:12px;font-size:.84rem;color:var(--muted);text-align:center
}
.section{padding:76px 0}
.section.alt{
  background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.006));
  border-top:1px solid #1a1b1d;border-bottom:1px solid #1a1b1d
}
.section-head{max-width:760px;margin-bottom:34px}
.section-head p{color:var(--muted)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  background:linear-gradient(180deg,#121316,#0d0e10);
  border:1px solid #34363b;border-radius:var(--radius);
  padding:24px;box-shadow:var(--shadow)
}
.card-icon{
  width:46px;height:46px;border-radius:13px;
  display:grid;place-items:center;
  color:var(--orange2);
  border:1px solid rgba(243,106,22,.4);
  background:rgba(243,106,22,.06);
  font-weight:900;margin-bottom:16px
}
.card p{color:#aaa7a2;margin-bottom:0}
.product{
  display:grid;grid-template-columns:240px 1fr;gap:36px;align-items:center
}
.product-icon{
  background:#0a0a0b;border:1px solid #3c3e43;border-radius:28px;
  padding:16px;box-shadow:var(--shadow)
}
.product-icon img{display:block;border-radius:20px}
.badge{
  display:inline-flex;border:1px solid rgba(243,106,22,.5);
  border-radius:999px;padding:5px 10px;color:#ff9c59;
  font-size:.73rem;font-weight:800;letter-spacing:.08em
}
.feature-list{
  display:grid;grid-template-columns:1fr 1fr;gap:10px 22px;
  list-style:none;padding:0;margin:24px 0 0
}
.feature-list li{
  position:relative;padding-left:24px;color:#c8c5c1
}
.feature-list li:before{
  content:"→";position:absolute;left:0;color:var(--orange)
}
.philosophy{
  max-width:900px;margin:auto;text-align:center
}
.philosophy .quote{
  font-size:clamp(1.35rem,2.8vw,2.1rem);
  color:#d8d5d0;line-height:1.35
}
.future-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start}
.future-note{
  padding:24px;border-radius:18px;border:1px solid #38393d;
  background:#101114;color:#c5c2be
}
.social-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px}
.social-link{
  padding:12px 16px;border:1px solid #36383c;border-radius:10px;
  background:#101113;color:#ddd
}
.social-link:hover{border-color:var(--orange);color:#fff}
.footer{
  border-top:1px solid #202124;background:#050506;
  padding:34px 0 44px;color:#92908c
}
.footer-row{
  display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center
}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-brand img{width:66px;height:66px;object-fit:contain}
.footer-links{display:flex;gap:16px;justify-content:flex-end;flex-wrap:wrap}
.footer a{color:#b9b6b1}
.small{font-size:.9rem}
@media(max-width:900px){
  .hero-grid,.future-grid,.product{grid-template-columns:1fr}
  .hero-art{min-height:520px}
  .brand-logo{width:min(480px,90%)}
  .app-card{right:7%;width:230px}
  .grid-3{grid-template-columns:1fr}
  .feature-list{grid-template-columns:1fr}
  .nav-links{
    display:none;position:absolute;left:16px;right:16px;top:70px;
    flex-direction:column;align-items:flex-start;
    padding:18px;background:#0a0b0c;border:1px solid #333;border-radius:14px
  }
  .nav-links.open{display:flex}
  .menu-btn{display:block}
}
@media(max-width:560px){
  .wrap{width:min(calc(100% - 22px),var(--max))}
  .hero{padding-top:54px}
  .hero-art{min-height:430px}
  .brand-logo{width:92%}
  .app-card{width:180px;right:2%}
  .footer-row{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
  h1{font-size:clamp(2.7rem,14vw,4.2rem)}
}
