/* Serious, minimal, non-cartoon look */
:root{
  --bg:#0b0e12;
  --bg2:#0f141b;
  --card:#121826;
  --text:#e7ecf3;
  --muted:#aeb7c6;
  --line:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --wa:#25D366;
  --wa2:#1fb75a;
  --focus: rgba(37,211,102,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(88,112,180,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(37,211,102,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  letter-spacing:-0.01em;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:20px; top:14px; width:auto; height:auto; padding:10px 12px;
  background:#0f141b; border:1px solid var(--line); border-radius:12px; z-index:50;
}

.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,14,18,.55);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:14px; height:14px; border-radius:50%;
  background: linear-gradient(135deg, #3b82f6, #ef4444);
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}
.brand__name{font-weight:700; letter-spacing:-0.02em}

.nav{display:flex; gap:18px; color:var(--muted); font-weight:500}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.04); color:var(--text)}

.header__actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:600;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.05)}
.btn:active{transform: translateY(0px)}
.btn--lg{padding:12px 16px; border-radius:16px}
.btn--ghost{background: rgba(255,255,255,.02)}
.btn--wa{
  background: linear-gradient(180deg, var(--wa), var(--wa2));
  border-color: rgba(37,211,102,.55);
  color:#06120b;
}
.btn--wa:hover{background: linear-gradient(180deg, #2be06f, #1fb75a); border-color: rgba(37,211,102,.75)}
.btn:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px var(--focus);
}

.burger{
  display:none;
  width:44px; height:40px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.burger span{display:block; height:2px; margin:7px 12px; background: rgba(231,236,243,.85); border-radius:2px}

.mobile{border-bottom:1px solid var(--line); background: rgba(11,14,18,.75)}
.mobile__inner{padding:14px 0; display:grid; gap:10px}
.mobile__link{
  padding:12px 12px; border-radius:14px;
  background: rgba(255,255,255,.03); border:1px solid var(--line);
  color:var(--muted); font-weight:600;
}
.mobile__link:hover{color:var(--text); background: rgba(255,255,255,.05)}
.mobile__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:4px}

.hero{position:relative; padding:54px 0 28px}
.hero__inner{display:grid; grid-template-columns: 1.15fr .85fr; gap:28px; align-items:center}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color:var(--muted); font-weight:600; font-size:13px;
  border:1px solid var(--line);
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.02);
}
.hero__title{font-size:44px; line-height:1.05; margin:14px 0 10px; letter-spacing:-0.03em}
.hero__lead{color:var(--muted); font-size:16px; line-height:1.6; max-width:58ch}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.hero__meta{
  margin-top:18px;
  display:grid; grid-template-columns: 1fr 1fr; gap:12px;
}
.meta{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:12px 14px;
}
.meta__label{color:var(--muted); font-size:12px; font-weight:600}
.meta__value{margin-top:6px; font-weight:600; line-height:1.25}

.hero__media{position:relative; display:grid; gap:12px}
.shot{
  border-radius: 22px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.shot img{width:100%; height:auto; display:block}
.shot--sub{opacity:.95; transform: translateX(14px)}
.hero__fade{
  position:absolute; inset:auto 0 0 0; height:80px;
  background: linear-gradient(180deg, transparent, rgba(11,14,18,.92));
  pointer-events:none;
}

.section{padding:48px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0; font-size:28px; letter-spacing:-0.02em}
.section__head p{margin:8px 0 0; color:var(--muted); line-height:1.6}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:16px 16px 14px;
  min-height: 120px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55; font-size:14px}

.notice{
  margin-top:18px;
  border:1px solid rgba(37,211,102,.25);
  background: rgba(37,211,102,.07);
  border-radius: var(--radius);
  padding:14px 14px;
  display:flex; gap:12px; align-items:flex-start;
}
.notice__icon{
  width:26px; height:26px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(37,211,102,.16);
  color: #bdf6d1;
  font-weight:800;
  border:1px solid rgba(37,211,102,.25);
}
.notice__body{color:rgba(231,236,243,.92); line-height:1.5}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.split p{color:var(--muted); line-height:1.7; margin-top:10px}
.list{margin:14px 0 0; padding-left:18px; color:rgba(231,236,243,.90)}
.list li{margin:8px 0; color:rgba(231,236,243,.86)}
.mini-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.panel__tag{
  display:inline-block;
  font-size:11px; font-weight:700; letter-spacing:.08em;
  color:rgba(231,236,243,.65);
  border:1px solid var(--line);
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.02);
}
.panel__title{margin:14px 0 12px; font-size:18px}
.panel__row{
  display:flex; justify-content:space-between; gap:14px;
  padding:10px 0; border-top:1px solid var(--line);
}
.panel__label{color:var(--muted); font-weight:600; font-size:13px}
.panel__value{font-weight:600}
.panel__value a{color:rgba(231,236,243,.95); text-decoration:underline; text-decoration-color: rgba(231,236,243,.25)}
.panel__value a:hover{text-decoration-color: rgba(231,236,243,.6)}

.contact{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 22px;
  padding:16px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.contact__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:14px;
}
.contact__label{color:var(--muted); font-weight:700; font-size:12px; letter-spacing:.02em}
.contact__value{margin-top:8px; font-weight:700}
.footnote{margin-top:20px; color:rgba(231,236,243,.65); font-size:13px}

.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease}
.reveal.is-in{opacity:1; transform:none}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; gap:18px}
  .hero__title{font-size:38px}
  .shot--sub{transform:none}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .nav{display:none}
  .burger{display:inline-block}
}
@media (max-width: 560px){
  .hero__title{font-size:32px}
  .container{width:min(var(--max), calc(100% - 28px))}
  .grid{grid-template-columns: 1fr}
  .header__actions .btn--ghost{display:none}
}
