:root{
  --bg: #0b0d12;
  --bg2:#0f1320;
  --text:#e9eef3;
  --muted:#a6b0bb;
  --line: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.04);
  --card2: rgba(255,255,255,.06);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --accent:#66f3c1;
  --accent2:#7aa6ff;
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(122,166,255,.12), transparent 60%),
    radial-gradient(900px 500px at 20% 30%, rgba(102,243,193,.10), transparent 55%),
    radial-gradient(800px 420px at 50% 85%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family: Inter, "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto;height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.7);
  border:1px solid var(--line);
  z-index:9999;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(11,13,18,.62);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand__mark{
  width:10px;height:10px;border-radius:99px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(102,243,193,.09);
}
.brand__text{font-size:15px}

.nav{
  display:flex;
  gap:14px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}
.nav a{
  font-size:13px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
}
.nav a:hover{
  background:rgba(255,255,255,.05);
  color:var(--text);
}

.header__cta{display:none}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:10px 14px;
  font-weight:600;
  font-size:13px;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg, rgba(102,243,193,.95), rgba(122,166,255,.78));
  color:#081016;
  box-shadow: 0 12px 40px rgba(102,243,193,.14);
}
.btn--secondary{
  background:rgba(255,255,255,.05);
  border-color:var(--line);
  color:var(--text);
}
.btn--ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--text);
}

.hero{
  padding:64px 0 34px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.eyebrow{
  color:var(--muted);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin:0 0 12px;
}
.hero__title{
  font-size:52px;
  line-height:1.08;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.hero__lead{
  margin:0 0 20px;
  color:rgba(233,238,243,.86);
  font-size:16px;
  max-width: 44rem;
}
.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 18px;
}
.hero__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  font-size:12px;
  color:rgba(233,238,243,.88);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:7px 10px;
  border-radius:999px;
}

.hero__right{
  position:relative;
  min-height:320px;
}
.glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(420px 240px at 30% 30%, rgba(102,243,193,.20), transparent 60%),
    radial-gradient(520px 280px at 70% 20%, rgba(122,166,255,.18), transparent 65%);
  filter: blur(10px);
  opacity:.9;
}
.card{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  height:100%;
}
.card__top{
  display:flex;
  gap:8px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
}
.dot{width:10px;height:10px;border-radius:99px; opacity:.9}
.dot--r{background:#ff5c62}
.dot--y{background:#ffbd2e}
.dot--g{background:#28c840}

.card__body{padding:18px 18px 20px}
.card__kicker{
  margin:0;
  color:rgba(233,238,243,.70);
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.card__headline{
  margin:8px 0 10px;
  font-size:32px;
  letter-spacing:-.02em;
}
.card__text{
  margin:0 0 16px;
  color:rgba(233,238,243,.80);
  font-size:14px;
}
.card__stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
.stat{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:10px 10px;
}
.stat__label{
  margin:0;
  color:rgba(233,238,243,.70);
  font-size:12px;
}
.stat__value{
  margin:4px 0 0;
  font-weight:700;
  letter-spacing:-.01em;
}

.section{
  padding:54px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.section--last{padding-bottom:70px}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.section__title{
  font-size:22px;
  margin:0;
  letter-spacing:-.01em;
}
.section__desc{
  margin:0;
  color:var(--muted);
  max-width: 46rem;
  font-size:14px;
}

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

.panel{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px 18px;
}
.panel--contact{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.panel__title{
  margin:0 0 10px;
  font-size:16px;
}
.panel__text{
  margin:0;
  color:rgba(233,238,243,.82);
  font-size:14px;
}
.list{
  margin:0;
  padding-left: 18px;
  color:rgba(233,238,243,.82);
}
.list li{margin:8px 0}
.list li::marker{color:rgba(102,243,193,.70)}

.callout{
  margin-top:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 280px at 20% 20%, rgba(102,243,193,.12), transparent 55%),
    radial-gradient(900px 280px at 80% 20%, rgba(122,166,255,.12), transparent 55%),
    rgba(255,255,255,.03);
  padding:20px 18px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.callout__title{
  margin:0 0 8px;
  font-size:16px;
}
.callout__text{
  margin:0;
  color:rgba(233,238,243,.82);
  font-size:14px;
  max-width: 56rem;
}
.callout__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.label{
  margin:0;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.value{
  margin:8px 0 0;
  font-weight:700;
  font-size:18px;
  letter-spacing:-.01em;
}
.hint{
  margin:8px 0 0;
  color:rgba(233,238,243,.62);
  font-size:12px;
}
.link{
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-color: rgba(102,243,193,.35);
}

.contact__right{min-width: 220px}
.contact__links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.footer{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(233,238,243,.62);
  font-size:13px;
}

/* Responsive */
.br-sm{display:none}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr; gap:16px}
  .hero__right{min-height:260px}
  .grid--3{grid-template-columns:1fr}
  .grid--2{grid-template-columns:1fr}
  .panel--contact{flex-direction:column}
  .contact__right{min-width:auto}
  .header__cta{display:inline-flex}
  .nav{display:none}
  .br-sm{display:inline}
  .hero__title{font-size:42px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important}
}
