:root{
  --bg:#f8fafc;
  --bg2:#f1f5f9;
  --surface:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --muted2:#64748b;

  --main-a:#2E4356;
  --main-b:#38C6C8;
  --acc-a:#F32A60;
  --acc-b:#D62A7C;

  --g-main: linear-gradient(135deg, var(--main-a), var(--main-b));
  --g-acc: linear-gradient(135deg, var(--acc-a), var(--acc-b));
  --g-main-soft: linear-gradient(135deg, rgba(46,67,86,.10), rgba(56,198,200,.12));
  --g-acc-soft: linear-gradient(135deg, rgba(243,42,96,.09), rgba(214,42,124,.10));

  --border: rgba(148,163,184,.30);
  --shadow: 0 20px 40px rgba(15,23,42,.10);
  --shadow2: 0 12px 26px rgba(15,23,42,.08);

  --r:18px;
  --rx:26px;
  --max:1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(46,67,86,.10), transparent 55%),
    radial-gradient(1000px 700px at 90% 10%, rgba(56,198,200,.12), transparent 55%),
    radial-gradient(900px 650px at 85% 95%, rgba(214,42,124,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

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

.header{
  position:sticky; top:0; z-index:60;
  background: rgba(248,250,252,.88);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(148,163,184,.24);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; }
.brand img{ height:36px; width:auto; display:block; }

.nav{ display:flex; align-items:center; gap:10px; }
.nav a{ padding:9px 10px; border-radius:12px; font-weight:900; color: rgba(15,23,42,.88); }
.nav a:hover{ background: rgba(15,23,42,.04); text-decoration:none; }
.nav a.active{ background: rgba(56,198,200,.12); outline:1px solid rgba(56,198,200,.26); text-decoration:none; }

.actions{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:14px;
  border:1px solid rgba(148,163,184,.34);
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.92);
  font-weight:950;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn.primary{ background: var(--g-main); color:#fff; border-color:transparent; box-shadow: 0 20px 40px rgba(46,67,86,.14); }
.btn.accent{ background: var(--g-acc); color:#fff; border-color:transparent; }
.btn.ghost{ background:transparent; border-color:transparent; box-shadow:none; }
.mobile-toggle{ display:none; }

.section{ padding:56px 0; }
.section.tight{ padding:40px 0; }
.h-title{ font-weight:980; font-size: clamp(24px, 2.6vw, 34px); margin:0 0 10px; letter-spacing:-0.02em; }
.sub{ margin:0; color:var(--muted); max-width:76ch; }

.hero{ padding:70px 0 40px; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:26px; align-items:center; }
.badge{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; background: rgba(255,255,255,.90); border:1px solid rgba(148,163,184,.26); color: rgba(71,85,105,.96); font-weight:900; font-size: 13px; }
.badge .dot{ width:10px; height:10px; border-radius:999px; background: var(--g-acc); }
.h1{ margin:14px 0 10px; font-size: clamp(42px, 5.2vw, 72px); line-height:1.02; letter-spacing:-0.04em; }
.lede{ margin:0; color: rgba(71,85,105,.96); font-size: 18px; max-width:64ch; }
.pills{ margin-top:14px; display:flex; flex-wrap:wrap; gap:8px; }
.pill{ display:inline-flex; align-items:center; padding:8px 10px; border-radius:999px; background: rgba(15,23,42,.04); border: 1px solid rgba(148,163,184,.26); font-weight:900; color: rgba(15,23,42,.86); font-size: 13px; }
.hero-cta{ margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }

.panel{ background:var(--surface); border:1px solid rgba(148,163,184,.24); border-radius: var(--rx); box-shadow: var(--shadow); overflow:hidden; }
.panel img{ width:100%; height:auto; display:block; }

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

.card{ background: rgba(255,255,255,.94); border:1px solid rgba(148,163,184,.26); border-radius: var(--r); padding:18px; box-shadow: var(--shadow2); }
.quote{ font-weight:980; font-size: 18px; letter-spacing:-0.01em; }
.by{ margin-top:10px; color:var(--muted); font-weight:900; }

.tile{ display:flex; flex-direction:column; gap:10px; padding:18px; border-radius: var(--r); background: rgba(255,255,255,.94); border:1px solid rgba(148,163,184,.26); box-shadow: var(--shadow2); }
.tile .top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.tile .name{ font-weight:980; font-size: 18px; letter-spacing:-0.01em; }
.tile .tag{ font-weight:950; font-size: 12px; padding:6px 10px; border-radius:999px; background: var(--g-main-soft); border:1px solid rgba(56,198,200,.18); color: rgba(15,23,42,.86); }
.tile p{ margin:0; color:var(--muted); }
.tile .link{ margin-top:4px; display:inline-flex; width:max-content; font-weight:950; padding:9px 10px; border-radius:12px; background: rgba(15,23,42,.04); }
.tile .link:hover{ background: rgba(15,23,42,.06); text-decoration:none; }

.divider{ height:1px; background: rgba(148,163,184,.24); margin: 30px 0 0; }

.darkband{
  border-radius: 32px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.12);
  box-shadow: var(--shadow);
  position:relative;
}
.darkband img{ width:100%; height:auto; display:block; }
.darkband .content{
  position:absolute; inset:0;
  padding: 26px;
  display:flex; align-items:center;
}
.darkband .inner{ width:100%; }
.darkband h2{ margin:0 0 10px; font-weight:980; font-size: clamp(28px, 3.2vw, 52px); letter-spacing:-0.03em; color:#fff; }
.darkband p{ margin:0 0 18px; color: rgba(255,255,255,.86); max-width:70ch; font-weight:800; }
.tokencloud{ display:flex; flex-wrap:wrap; gap:10px; max-width: 1000px; }
.token{ padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.88); font-weight:900; font-size: 13px; background: rgba(255,255,255,.06); }
.token.accent{ border-color: rgba(214,42,124,.35); background: rgba(214,42,124,.14); }

.stories{
  margin-top:18px;
  display:flex;
  gap:14px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom: 6px;
}
.story{
  scroll-snap-align:start;
  min-width: min(720px, calc(100vw - 40px));
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  border-radius: 28px;
  border:1px solid rgba(148,163,184,.20);
  box-shadow: var(--shadow);
  overflow:hidden;
  background: #fff;
}
.story .left{ padding:22px; display:flex; flex-direction:column; justify-content:space-between; gap:14px; }
.story .kicker{ font-weight:950; color: rgba(15,23,42,.78); }
.story .bigquote{ font-weight:980; font-size: clamp(22px, 2.4vw, 34px); letter-spacing:-0.02em; line-height:1.12; }
.story .meta{ display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:900; }
.story .btnmini{ display:inline-flex; width:max-content; padding:9px 10px; border-radius:12px; background: rgba(15,23,42,.06); font-weight:950; }
.story .right{ display:flex; align-items:center; justify-content:center; padding:18px; }
.story.primary{ background: var(--g-acc); }
.story.primary .left{ color:#fff; }
.story.primary .kicker, .story.primary .meta{ color: rgba(255,255,255,.86); }
.story.primary .btnmini{ background: rgba(255,255,255,.14); color:#fff; }
.story.primary .btnmini:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

.cols{
  margin-top:18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(148,163,184,.24);
  border-radius: var(--rx);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.cols h3{ margin:0 0 10px; letter-spacing:-0.01em; }
.colgrid{ display:grid; grid-template-columns: repeat(3,1fr); gap:14px; }
.list{ margin:0; padding-left:18px; color: var(--muted); }
.list li{ margin:8px 0; }

.band{
  border-radius: 32px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.16);
  box-shadow: var(--shadow);
  position:relative;
}
.band img{ width:100%; height:auto; display:block; }
.band .content{ position:absolute; inset:0; padding:26px; display:flex; align-items:center; }
.band .inner{ width:100%; }
.band h2{ margin:0 0 10px; font-weight:980; font-size: clamp(28px, 3.2vw, 52px); letter-spacing:-0.03em; color:#fff; }
.band p{ margin:0 0 18px; color: rgba(255,255,255,.90); max-width:70ch; font-weight:800; }

.split{ margin-top:18px; display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start; }
.surface{ background: rgba(255,255,255,.94); border: 1px solid rgba(148,163,184,.24); border-radius: var(--rx); box-shadow: var(--shadow2); padding:18px; }
.surface h3{ margin:0 0 10px; letter-spacing:-0.01em; }
.surface p{ margin:0; color:var(--muted); }
.help{ margin-top:10px; color:var(--muted2); font-size: 13px; }

.contactcard{
  margin-top:18px;
  border-radius: 32px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.12);
  box-shadow: var(--shadow);
  position:relative;
  background: var(--g-main);
}
.contactcard-content{
  padding: 40px;
  display:flex; 
  align-items:center;
}
.contactcard-inner{ width:100%; }
.contactcard-title{ margin:0 0 8px; font-weight:980; font-size: clamp(24px, 2.6vw, 36px); letter-spacing:-0.03em; color:#fff; }
.contactcard-subtitle{ margin:0 0 24px; color: rgba(255,255,255,.88); max-width:70ch; font-weight:400; font-size: 15px; }
.contactcard h3{ margin:0 0 16px; font-weight:980; font-size: clamp(20px, 2.2vw, 28px); letter-spacing:-0.02em; color:#fff; }
.contactcard p{ margin:0 0 12px; color: rgba(255,255,255,.88); max-width:70ch; }
.contactcard-desc{ font-weight:400; font-size: 15px; }
.contactcard a{ color: rgba(255,255,255,1); font-weight:900; text-decoration:underline; }
.contactcard a:hover{ text-decoration:none; }

.form{ display:grid; gap:12px; margin-top:12px; }
.field{ display:flex; flex-direction:column; gap:6px; }
label{ font-weight:950; font-size:14px; }
input, textarea{ font:inherit; padding:10px 12px; border-radius:14px; border:1px solid rgba(148,163,184,.42); background: rgba(255,255,255,.98); color:var(--text); }
textarea{ min-height:120px; resize:vertical; }
.notice{ display:none; padding:10px 12px; border-radius:14px; border:1px solid rgba(148,163,184,.42); background: rgba(255,255,255,.98); color: var(--muted); }
.notice.show{ display:block; }

/* Services distinct layout */
.pagehead{ padding:34px 0 18px; }
.breadcrumbs{ color: var(--muted2); font-weight:900; font-size: 13px; }
.breadcrumbs a{ color: rgba(15,23,42,.86); }
.pagehead h1{ margin:10px 0 10px; font-size: clamp(34px, 4.3vw, 54px); line-height:1.05; letter-spacing:-0.04em; }
.pagehead p{ margin:0; color: var(--muted); max-width: 76ch; }

.layout{ display:grid; grid-template-columns: 280px 1fr; gap: 18px; align-items:start; }
.sidebar{ position: sticky; top: 86px; border:1px solid rgba(148,163,184,.24); border-radius: var(--rx); background: rgba(255,255,255,.92); box-shadow: var(--shadow2); padding:14px; }
.sidebar .s-title{ font-weight:980; margin:0 0 10px; }
.side-links{ display:grid; gap:6px; }
.side-links a{ padding:10px 10px; border-radius:14px; font-weight:950; color: rgba(15,23,42,.88); }
.side-links a:hover{ background: rgba(15,23,42,.04); text-decoration:none; }
.side-links a.active{ background: rgba(243,42,96,.10); outline:1px solid rgba(243,42,96,.22); }

.contentcol .block{ background: rgba(255,255,255,.94); border:1px solid rgba(148,163,184,.24); border-radius: var(--rx); box-shadow: var(--shadow2); padding:18px; margin-bottom: 14px; scroll-margin-top: 90px; }
.contentcol .block h2{ margin:0 0 10px; letter-spacing:-0.02em; }
.contentcol .block p{ margin:0; color: var(--muted); }
.keypoints{ margin-top:12px; display:grid; gap:10px; }
.kp{ display:flex; gap:10px; align-items:flex-start; padding:12px; border-radius: 18px; background: rgba(15,23,42,.03); border:1px solid rgba(148,163,184,.18); }
.kp .badge2{ width:34px; height:34px; border-radius:12px; background: var(--g-main-soft); border:1px solid rgba(56,198,200,.18); display:flex; align-items:center; justify-content:center; font-weight:980; }

.accgroup{ margin-top:12px; display:grid; gap:10px; }
details.acc{ background: rgba(255,255,255,.96); border:1px solid rgba(148,163,184,.24); border-radius: 18px; padding:12px 14px; }
details.acc summary{ cursor:pointer; list-style:none; font-weight:980; display:flex; justify-content:space-between; gap:10px; }
details.acc summary::-webkit-details-marker{ display:none; }
details.acc .chev{ width:28px; height:28px; border-radius:10px; background: var(--g-acc-soft); border:1px solid rgba(214,42,124,.18); display:flex; align-items:center; justify-content:center; }
details.acc p{ margin:10px 0 0; color: rgba(71,85,105,.96); }
details.acc[open] .chev{ background: var(--g-acc); color:#fff; border-color:transparent; }

.footer{ padding:34px 0 46px; border-top:1px solid rgba(148,163,184,.24); color: rgba(71,85,105,.96); font-size:14px; }
.footer-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; }
.small{ color: rgba(71,85,105,.96); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
  .colgrid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .layout{ grid-template-columns: 1fr; }
  .sidebar{ position: static; }
  .nav{ display:none; }
  .mobile-toggle{ display:inline-flex; box-shadow:none; background: rgba(255,255,255,.76); }
  .nav.open{ display:flex; position:absolute; right:20px; top:64px; flex-direction:column; background: rgba(248,250,252,.98); border: 1px solid rgba(148,163,184,.30); border-radius: 16px; padding: 10px; width: min(280px, calc(100vw - 40px)); box-shadow: var(--shadow); }
  .band .content, .darkband .content{ position:static; }
  .band, .darkband{ background: #0b1220; }
  .band img, .darkband img{ display:none; }
  .band h2, .darkband h2{ color:#fff; }
  .band p, .darkband p{ color: rgba(255,255,255,.86); }
  .story{ grid-template-columns: 1fr; }
}
