  :root {
    --bg: #0b0f1e;
    --bg-raised: #101527;
    --card: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #eef0fb;
    --text-dim: #9aa1c0;
    --indigo: #4f46e5;
    --indigo-bright: #6366f1;
    --indigo-glow: rgba(79, 70, 229, 0.35);
    --teal: #06b6d4;
    --teal-bright: #57dffe;
    --teal-glow: rgba(6, 182, 212, 0.3);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --container-max: 1280px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  /* clip (not hidden) so no horizontal scroll container is created */
  html { scroll-behavior: smooth; overflow-x: clip; }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--indigo); color: #fff; }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ---------- Type ---------- */
  .display {
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
  }
  .headline-lg {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .body-lg { font-size: 18px; line-height: 28px; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-bright);
  }
  .eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--teal);
  }
  .grad-text {
    background: linear-gradient(95deg, var(--indigo-bright) 0%, var(--teal-bright) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .outline-text {
    /* Fill with the background colour and paint the stroke underneath it —
       a transparent fill lets the centred stroke self-overlap inside the
       counters of A/P/O at heavy weights and render blotchy. */
    color: var(--bg);
    -webkit-text-stroke: 3px rgba(238, 240, 251, 0.35);
    paint-order: stroke fill;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  }
  .btn-primary {
    background: linear-gradient(100deg, var(--indigo) 0%, var(--indigo-bright) 100%);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 8px 32px var(--indigo-glow);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset, 0 12px 44px var(--indigo-glow);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text);
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.18);
  }
  .btn-ghost:hover {
    box-shadow: inset 0 0 0 1.5px var(--teal);
    color: var(--teal-bright);
    transform: translateY(-2px);
  }
  .btn-teal {
    background: linear-gradient(100deg, #0891b2 0%, var(--teal) 100%);
    color: #fff;
    box-shadow: 0 8px 32px var(--teal-glow);
  }
  .btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 44px var(--teal-glow); }

  /* ---------- Chips ---------- */
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 16px;
    border: 1px solid;
  }
  .chip-teal { color: var(--teal-bright); border-color: rgba(6, 182, 212, 0.35); background: rgba(6, 182, 212, 0.08); }
  .chip-indigo { color: #a5b4fc; border-color: rgba(99, 102, 241, 0.35); background: rgba(79, 70, 229, 0.1); }

  .chip-live { position: relative; padding-left: 26px; }
  .chip-live::before {
    content: '';
    position: absolute;
    left: 12px;
    width: 7px;
    height: 7px;
    border-radius: 9999px;
    background: var(--teal-bright);
    box-shadow: 0 0 8px var(--teal-bright);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 50% { opacity: 0.4; } }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(11, 15, 30, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
  }
  .logo span { color: var(--indigo-bright); }
  .logo em { font-style: normal; color: var(--teal-bright); }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a:not(.btn) {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .nav-links a:not(.btn):hover { color: #fff; }
  .nav .btn { padding: 10px 22px; font-size: 13px; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: drift 18s ease-in-out infinite alternate;
  }
  .blob-1 { top: -180px; right: -120px; width: 620px; height: 620px; background: rgba(79, 70, 229, 0.28); }
  .blob-2 { bottom: -220px; left: -160px; width: 560px; height: 560px; background: rgba(6, 182, 212, 0.16); animation-delay: -9s; }
  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, 40px) scale(1.12); }
  }
  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
    pointer-events: none;
  }
  .hero-inner { position: relative; max-width: 900px; }
  .hero .eyebrow { margin-bottom: 28px; }
  .hero h1 {
    font-size: clamp(52px, 8.5vw, 108px);
    margin-bottom: 32px;
  }
  .hero h1 .row { display: block; }
  .hero p {
    color: var(--text-dim);
    max-width: 560px;
    margin-bottom: 40px;
    font-size: 19px;
    line-height: 30px;
  }
  .hero p strong { color: var(--text); font-weight: 600; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  /* ---------- Marquee ---------- */
  .marquee {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    overflow: hidden;
    background: var(--bg-raised);
  }
  .marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: scroll 30s linear infinite;
  }
  .marquee span {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--text-dim);
  }
  .marquee span.alt { color: transparent; -webkit-text-stroke: 1px rgba(154, 161, 192, 0.6); }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ---------- Sections ---------- */
  section { position: relative; padding: 120px 0; }
  .section-head { max-width: 680px; margin-bottom: 64px; }
  .section-head .eyebrow { margin-bottom: 16px; }
  .section-head h2 { margin-bottom: 18px; }
  .section-head p { color: var(--text-dim); }

  /* ---------- Services ---------- */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 200px at 20% 0%, rgba(79, 70, 229, 0.14), transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .card.teal-tint::before {
    background: radial-gradient(420px 200px at 20% 0%, rgba(6, 182, 212, 0.12), transparent 70%);
  }
  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(79, 70, 229, 0.08);
  }
  .card.teal-tint:hover { border-color: rgba(6, 182, 212, 0.45); }
  .card:hover::before { opacity: 1; }
  .card-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  }
  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
  }
  .card-icon.teal { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.25); }
  .card h3 { font-size: 22px; font-weight: 700; line-height: 30px; margin-bottom: 10px; }
  .card p { position: relative; color: var(--text-dim); font-size: 15px; line-height: 24px; }

  /* ---------- Approach ---------- */
  .momentum { background: var(--bg-raised); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .momentum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .momentum-copy .eyebrow { margin-bottom: 16px; }
  .momentum-copy h2 { margin-bottom: 18px; }
  .momentum-copy > p { color: var(--text-dim); margin-bottom: 36px; }
  .momentum-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
  .momentum-list li { display: flex; gap: 14px; align-items: flex-start; }
  .momentum-list .tick {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 9999px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .momentum-list strong { display: block; font-weight: 700; }
  .momentum-list span.desc { color: var(--text-dim); font-size: 14px; line-height: 21px; }

  .goal-card {
    position: relative;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  }
  .goal-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(140deg, rgba(99,102,241,0.5), transparent 40%, transparent 60%, rgba(6,182,212,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  .goal-card .goal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
  .goal-card .goal-head h3 { font-size: 17px; font-weight: 700; letter-spacing: 0.01em; }
  .goal { margin-bottom: 28px; }
  .goal:last-child { margin-bottom: 0; }
  .goal-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; line-height: 20px; margin-bottom: 9px; }
  .goal-label span:first-child { color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
  .goal-label .value { color: var(--teal-bright); font-variant-numeric: tabular-nums; }
  .progress { height: 8px; border-radius: 9999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
  .progress-fill {
    height: 100%;
    width: 0;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 100%);
    box-shadow: 0 0 12px var(--teal-glow);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* ---------- Stats ---------- */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .stat {
    text-align: left;
    padding: 32px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: var(--card);
  }
  .stat h3 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }
  .stat p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 18px;
  }

  /* ---------- Action banner ---------- */
  .action-banner {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(900px 400px at 15% 100%, rgba(6, 182, 212, 0.22), transparent 60%),
      linear-gradient(120deg, #2a1fa8 0%, var(--indigo) 55%, #4338ca 100%);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .action-banner h2 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.08;
    text-transform: uppercase;
    max-width: 900px;
    margin: 0 auto 20px;
  }
  .action-banner h2 .outline-text { -webkit-text-stroke-color: rgba(255,255,255,0.55); color: #4a41d9; }
  .action-banner p { color: #d5d3ff; max-width: 560px; margin: 0 auto 36px; }
  .action-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .action-banner .btn-on-dark { background: #fff; color: #2a1fa8; }
  .action-banner .btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35); }

  /* ---------- Contact ---------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
  }
  .contact-copy .eyebrow { margin-bottom: 16px; }
  .contact-copy h2 { margin-bottom: 18px; }
  .contact-copy p { color: var(--text-dim); margin-bottom: 28px; }
  .contact-copy a.email {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
  }

  .contact-form {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
  }
  .form-row { margin-bottom: 20px; }
  .form-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 18px;
    margin-bottom: 8px;
  }
  .form-row input,
  .form-row textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .form-row input::placeholder, .form-row textarea::placeholder { color: rgba(154, 161, 192, 0.55); }
  .form-row input:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--indigo-bright);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
  }
  .form-row textarea { resize: vertical; min-height: 130px; }
  .contact-form .btn { width: 100%; }
  .form-status {
    display: none;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
  }
  .form-status.ok {
    display: block;
    color: var(--teal-bright);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.3);
  }
  .form-status.err {
    display: block;
    color: #fca5a5;
    background: rgba(186, 26, 26, 0.12);
    border: 1px solid rgba(252, 165, 165, 0.3);
  }
  .form-note { font-size: 12px; line-height: 18px; color: var(--text-dim); text-align: center; margin-top: 14px; }
  .hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 48px 0;
    background: var(--bg-raised);
  }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
  .footer-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .footer-links a:hover { color: #fff; }
  .footer-meta { font-size: 12px; line-height: 18px; color: var(--text-dim); }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .blob, .marquee-track, .chip-live::before { animation: none; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .momentum-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 16px; }
    section { padding: 80px 0; }
    .hero { padding: 120px 0 64px; min-height: auto; }
    .card-grid { grid-template-columns: 1fr; }
    .nav-links a:not(.btn) { display: none; }
    .stat { padding: 24px 20px; }
    .stat h3 { font-size: 44px; }
    .footer-inner { justify-content: flex-start; }
  }

  /* ---------- Inner pages ---------- */
  a.card { display: block; text-decoration: none; color: inherit; }
  .card-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--teal-bright);
  }

  .page-hero {
    position: relative;
    padding: 170px 0 90px;
    overflow: hidden;
  }
  .page-hero .hero-inner { position: relative; max-width: 860px; }
  .page-hero .eyebrow { margin-bottom: 22px; }
  .page-hero h1 {
    font-size: clamp(38px, 5.5vw, 68px);
    margin-bottom: 26px;
  }
  .page-hero p.lede {
    color: var(--text-dim);
    max-width: 640px;
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 36px;
  }
  .page-hero p.lede strong { color: var(--text); }

  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-bottom: 34px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .breadcrumb li { color: var(--text-dim); }
  .breadcrumb li + li::before { content: '/'; margin-right: 10px; color: rgba(154, 161, 192, 0.4); }
  .breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.15s ease; }
  .breadcrumb a:hover { color: var(--teal-bright); }
  .breadcrumb li[aria-current] { color: var(--text); }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 26px 28px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
  }
  .feature .tick {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 9999px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .feature strong { display: block; font-weight: 700; margin-bottom: 4px; }
  .feature p { color: var(--text-dim); font-size: 14px; line-height: 22px; }

  .prose { max-width: 780px; }
  .prose h2 { margin: 0 0 16px; }
  .prose p { color: var(--text-dim); margin-bottom: 20px; }
  .prose p strong { color: var(--text); }

  .faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 14px; }
  .faq-list details {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease;
  }
  .faq-list details[open] { border-color: rgba(99, 102, 241, 0.45); }
  .faq-list summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 22px 60px 22px 26px;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 400;
    color: var(--teal-bright);
    transition: transform 0.2s ease;
  }
  .faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  .faq-list details p {
    padding: 0 26px 24px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 24px;
  }

  .cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 40px 44px;
    border-radius: var(--radius-lg);
    background:
      radial-gradient(500px 200px at 90% 100%, rgba(6, 182, 212, 0.2), transparent 60%),
      linear-gradient(120deg, #2a1fa8 0%, var(--indigo) 60%, #4338ca 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .cta-strip h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; line-height: 32px; }
  .cta-strip p { color: #d5d3ff; font-size: 15px; line-height: 23px; margin-top: 6px; }
  .cta-strip .btn { flex-shrink: 0; background: #fff; color: #2a1fa8; }
  .cta-strip .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35); }

  @media (max-width: 1024px) {
    .feature-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .page-hero { padding: 140px 0 64px; }
    .cta-strip { padding: 32px 24px; }
  }

  /* ---------- Nav dropdown ---------- */
  .nav-item { position: relative; }
  .nav-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 8px 0;
    transition: color 0.15s ease;
  }
  .nav-drop-btn svg { transition: transform 0.2s ease; }
  .nav-item:hover .nav-drop-btn,
  .nav-item.open .nav-drop-btn,
  .nav-drop-btn:focus-visible { color: #fff; }
  .nav-item:hover .nav-drop-btn svg,
  .nav-item.open .nav-drop-btn svg { transform: rotate(180deg); }

  .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    padding: 10px;
    border-radius: var(--radius-lg);
    background: rgba(16, 21, 39, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown,
  .nav-item.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--text-dim);
    text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease;
  }
  .dropdown a:hover { background: rgba(99, 102, 241, 0.14); color: #fff; }

  .nav-tel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--teal-bright) !important;
    text-decoration: none;
  }
  .nav-tel:hover { color: #fff !important; }

  /* ---------- Mobile nav ---------- */
  .nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
    color: var(--text);
  }
  .nav-burger svg { display: block; }
  .nav-burger .icon-close { display: none; }
  header.menu-open .nav-burger .icon-open { display: none; }
  header.menu-open .nav-burger .icon-close { display: block; }

  .mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 15, 30, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  header.menu-open .mobile-menu { display: block; }
  .mobile-menu .container { padding-top: 12px; padding-bottom: 28px; }
  .mobile-menu .mm-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 18px 0 6px;
  }
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu a.mm-sub { padding-left: 14px; font-size: 15px; color: var(--text-dim); }
  .mobile-menu a.mm-tel { color: var(--teal-bright); }
  .mobile-menu .btn { margin-top: 18px; width: 100%; }

  /* ---------- Photos ---------- */
  .photo-band-wrap { padding: 96px 0 0; }
  .photo-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .photo-band figure {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .photo-band figure:nth-child(odd) { transform: rotate(-1.6deg); }
  .photo-band figure:nth-child(even) { transform: rotate(1.4deg) translateY(10px); }
  .photo-band figure:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 40px rgba(79, 70, 229, 0.12); }
  .photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .photo-band figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.08), rgba(11, 15, 30, 0.22));
    pointer-events: none;
  }

  .split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
  }
  .split-grid .prose { max-width: none; }
  figure.photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  }
  figure.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  figure.photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(79, 70, 229, 0.1), transparent 45%, rgba(11, 15, 30, 0.25));
    pointer-events: none;
  }
  figure.photo.tall { aspect-ratio: 4 / 5; }
  figure.photo.wide { aspect-ratio: 16 / 11; }

  @media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; gap: 48px; }
    .photo-band { grid-template-columns: repeat(2, 1fr); }
    .photo-band figure:nth-child(even) { transform: rotate(1.4deg); }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .photo-band { gap: 14px; }
    .photo-band-wrap { padding-top: 64px; }
  }

  .contact-copy .tel-link {
    display: block;
    margin-top: 10px;
    color: var(--teal-bright);
    text-decoration: none;
  }
  .contact-copy .tel-link:hover { text-decoration: underline; }

  /* Higher specificity than .nav-links a:not(.btn) so dropdown items stay sentence case */
  .nav-links .dropdown a {
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 14px;
    white-space: nowrap;
  }

  .venture-link {
    color: var(--teal-bright);
    font-weight: 700;
    text-decoration: none;
  }
  .venture-link:hover { text-decoration: underline; }
