@charset "UTF-8";
/* CSS Document */

    :root {
      --bg: #fffff;
      --panel: #141821;
      --text: #eeeee;
      --muted: #828CA0;
      --brand: #0749AD; /* TODO: swap for your brand color */
      --brand-2: #8ef1c7; /* accent */
      --max-w: 1100px;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(0,0,0,.25);
      --gap: 1rem;
    }

    /* Base */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 10px;
      font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color: var(--text);
      background: radial-gradient(1200px 800px at 10% -10%, #182033, transparent 60%),
                  radial-gradient(1200px 800px at 110% 10%, #1a1f2b, transparent 60%),
                  var(--bg);
    }
    img { display:block; max-width:100%; height:auto; border-radius: 12px; }
    a { color: var(--brand); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .container { width: min(100% - 2rem, var(--max-w)); margin-inline: auto; }
    .grid { display: grid; gap: var(--gap); }
    .pill { display:inline-block; padding:.4rem .8rem; border-radius:999px; font-weight:600; background: #1b2333; color: var(--brand-2); border:1px solid #253149; }
    .btn { display:inline-block; padding:.85rem 1.1rem; border-radius: 12px; font-weight:600; background: var(--brand); color:#0a0b0f; border:0; box-shadow: var(--shadow); }
    .btn.secondary { background: #232b3d; color: var(--text); box-shadow: none; border:1px solid #2f3850; }
    .btn:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 2px; }
    .panel { background: linear-gradient(180deg, #33333, #0e1218 70%); border:1px solid #222a3c; border-radius: var(--radius); box-shadow: var(--shadow); }
    .muted { color: var(--muted); }

    /* Header / Nav */
    header { position: sticky; top:0; z-index: 10; backdrop-filter: blur(8px); background: color-mix(in srgb, var(--bg) 75%, transparent); border-bottom:1px solid #1e2636; }
    .nav { display:flex; align-items:center; justify-content:space-between; padding:.75rem 0; }
    .brand { display:flex; align-items:center; gap:.6rem; font-weight:800; letter-spacing:.3px; }
    .brand .logo { width: 36px; aspect-ratio:1; border-radius:10px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: var(--shadow); }

    /* Mobile nav (checkbox hack) */
    #menu-toggle { display:none; }
    .menu { display:flex; gap:1rem; align-items:center; }
    .menu a { padding:.4rem .6rem; border-radius:10px; }
    .menu a:hover { background:#91C0D3; text-decoration:none; }
    .hamburger { display:none; width:40px; height:40px; place-items:center; border-radius:12px; border:1px solid #27324a; }
    .hamburger span { width:20px; height:2px; background:var(--text); position:relative; }
    .hamburger span::before, .hamburger span::after { content:""; position:absolute; left:0; width:100%; height:2px; background:var(--text); }
    .hamburger span::before { top:-6px; } .hamburger span::after { top:6px; }

    @media (max-width: 820px) {
      .hamburger { display:grid; }
      .menu { position:absolute; inset: 64px 0 auto 0; background: #B1C1DB; border-bottom:1px solid #232d43; padding: .75rem 1rem; display:none; }
      #menu-toggle:checked ~ .menu { display:grid; grid-template-columns: 1fr; gap:.5rem; }
    }

    /* Hero */
    .hero { padding: clamp(2rem, 3vw, 3rem) 0 2.5rem; }
    .hero-inner { display:grid; gap:2rem; grid-template-columns: 1.2fr .8fr; align-items:center; }
  .hero-inner-wider { display:grid; gap:2rem; grid-template-columns: 1.9fr .1fr; align-items:center; }
    .hero .image-wrap { position:relative; }
    .hero .image-wrap::after { content:""; position:absolute; inset:0; border-radius: 14px; border:1px solid #2b3550; pointer-events:none; }
    .hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height:1.1; margin: .2rem 0 1rem; }
    .hero p { font-size: 1.05rem; }
    .cta-row { display:flex; gap:.75rem; flex-wrap:wrap; margin-top: 1rem; }
    .stats { display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem; margin-top:1.5rem; }
    .stat { text-align:center; padding:1rem; border-radius:12px; border:1px solid #24304a; background:#121722; }
    .stat b { display:block; font-size:1.4rem; }

    @media (max-width: 920px) { .hero-inner { grid-template-columns: 1fr; } }

    /* Sections */
    section { padding: 3rem 0; }
    .section-title { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1.25rem; }
    .section-title h2 { margin:0; font-size: clamp(1.4rem, 3.2vw, 2rem); }

    /* Gallery */
    .gallery { grid-template-columns: repeat(12, 1fr); }
    .gallery figure { grid-column: span 4; margin:0; }
    .gallery figcaption { margin-top:.5rem; font-size:.9rem; color: var(--muted); }
    @media (max-width: 920px) { .gallery figure { grid-column: span 6; } }
    @media (max-width: 540px) { .gallery figure { grid-column: span 12; } }

    /* Cards */
    .cards { grid-template-columns: repeat(3, 1fr); }
    .card { padding:1.1rem; border:1px solid #24304a; border-radius:16px; background: linear-gradient(180deg, #111622, #0f141d 70%); box-shadow: var(--shadow); }
    .card h3 { margin:.2rem 0 .4rem; }
    .card p { margin:0; color:var(--muted); }
    @media (max-width: 920px) { .cards { grid-template-columns: 1fr; } }

    /* Split */
    .split { grid-template-columns: 1fr 1fr; }
    @media (max-width: 920px) { .split { grid-template-columns: 1fr; } }

    /* Quote */
    blockquote { margin:0; padding:1.25rem 1.25rem 1.25rem 1rem; border-left:4px solid var(--brand); background:#121722; border-radius:12px; }

    /* Form */
    form.grid { grid-template-columns:1fr 1fr; }
    label { display:block; font-weight:600; margin-top:.75rem; margin-bottom:.25rem; }
    input, textarea { width:100%; padding:.8rem 1rem; border-radius:12px; border:1px solid #29324a; background:#0f1420; color:var(--text); }
    textarea { min-height: 150px; resize: vertical; }
    form .full { grid-column: 1 / -1; }
    form .actions { margin-top: .5rem; }

    /* Footer */
    footer { padding:2rem 0; border-top:1px solid #1e2636; color: var(--muted); }

