    /* Blueberry Cupcake: #98BAE3 #5981B1 #365475 #15273C #020408 */
    :root {
      --bc-1: #98bae3;
      --bc-2: #5981b1;
      --bc-3: #365475;
      --bc-4: #15273c;
      --bc-5: #020408;
      --text: #f0f6ff;
      --text-soft: rgba(240, 246, 255, 0.78);
      --text-muted: rgba(184, 210, 240, 0.72);
      --border: rgba(152, 186, 227, 0.22);
      --border-strong: rgba(152, 186, 227, 0.38);
      --tile: rgba(152, 186, 227, 0.1);
      --tile-hover: rgba(152, 186, 227, 0.16);
      --accent: #98bae3;
      --accent-cta: #5981b1;
      --accent-cta-hover: #6d93c4;
      --font: "Plus Jakarta Sans", system-ui, sans-serif;
      --content-max: 920px;
      --radius-btn: 12px;
      --radius-tile: 16px;
    }

    * { box-sizing: border-box; }
    html {
      -webkit-font-smoothing: antialiased;
    }
    body {
      margin: 0;
      min-height: 100vh;
      min-height: 100dvh;
      font-family: var(--font);
      font-weight: 500;
      color: var(--text);
      /* Fallback only; the painted page is .shell */
      background: var(--bc-5);
    }

    /* The webpage: full viewport, no inset “card” */
    .shell {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      min-height: 100dvh;
      width: 100%;
      margin: 0;
      position: relative;
      overflow-x: hidden;
      padding-left: env(safe-area-inset-left, 0px);
      padding-right: env(safe-area-inset-right, 0px);
      padding-bottom: env(safe-area-inset-bottom, 0px);
      background:
        radial-gradient(ellipse 100% 55% at 50% -18%, rgba(152, 186, 227, 0.32) 0%, transparent 52%),
        linear-gradient(168deg, var(--bc-2) 0%, var(--bc-3) 38%, var(--bc-4) 78%, #0a1524 100%);
      border: none;
      border-radius: 0;
      box-shadow: none;
    }

    .site-header {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem 1.25rem;
      width: 100%;
      padding: clamp(1rem, 3vw, 1.35rem) clamp(1.25rem, 4vw, 2rem);
      border-bottom: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(152, 186, 227, 0.08) 0%, transparent 100%);
    }

    .logo {
      display: flex;
      align-items: center;
      justify-self: start;
      text-decoration: none;
      line-height: 0;
    }
    .logo-img {
      display: block;
      height: clamp(26px, 5vw, 34px);
      width: auto;
      max-width: 9.5rem;
      object-fit: contain;
      filter: drop-shadow(0 2px 12px rgba(2, 4, 8, 0.35));
    }

    .site-nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.2rem 0.35rem;
      justify-self: center;
    }
    .nav-link,
    .link-quiet {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #e8f2ff;
      text-decoration: none;
      padding: 0.5rem 0.9rem;
      border-radius: 10px;
      text-shadow: 0 1px 4px rgba(2, 4, 8, 0.45);
      transition:
        color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
    }
    .nav-link {
      border: 1px solid transparent;
    }
    .nav-link:hover,
    .link-quiet:hover {
      color: #fff;
      background: rgba(152, 186, 227, 0.2);
      box-shadow: 0 0 0 1px rgba(152, 186, 227, 0.25);
    }
    .nav-link.is-active {
      color: #fff;
      background: rgba(54, 84, 117, 0.55);
      border-color: rgba(152, 186, 227, 0.45);
      box-shadow:
        0 0 0 1px rgba(152, 186, 227, 0.35) inset,
        0 4px 18px rgba(2, 4, 8, 0.25);
    }
    .nav-link:focus-visible,
    .link-quiet:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px rgba(2, 4, 8, 0.45), 0 0 0 4px rgba(152, 186, 227, 0.55);
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.65rem 1rem;
      justify-self: end;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.15rem;
      font-size: 0.9375rem;
      font-weight: 600;
      border-radius: var(--radius-btn);
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }
    button.btn {
      font: inherit;
    }
    .btn-primary {
      background: var(--accent-cta);
      color: #f7fbff;
      box-shadow: 0 2px 14px rgba(2, 4, 8, 0.35);
    }
    .btn-primary:hover {
      background: var(--accent-cta-hover);
      box-shadow: 0 4px 20px rgba(2, 4, 8, 0.45);
    }
    .btn-primary:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px rgba(2, 4, 8, 0.5), 0 0 0 4px var(--bc-1);
    }
    .btn-primary:disabled {
      opacity: 0.65;
      cursor: not-allowed;
      box-shadow: none;
    }
    .btn-primary:disabled:hover {
      background: var(--accent-cta);
      box-shadow: none;
    }

    .hero {
      flex: 1;
      width: 100%;
      max-width: var(--content-max);
      margin-inline: auto;
      padding: clamp(2rem, 6vw, 3.25rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.25rem);
      text-align: center;
    }
    .hero-title {
      margin: 0 0 1rem;
      font-size: clamp(1.85rem, 4.5vw, 2.65rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.15;
      text-shadow: 0 1px 24px rgba(2, 4, 8, 0.35);
    }
    .hero-lede {
      margin: 0 auto;
      max-width: 38rem;
      font-size: 1.0625rem;
      font-weight: 500;
      line-height: 1.65;
      color: var(--text-soft);
    }

    .mascot-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-end;
      gap: clamp(0.35rem, 2.5vw, 1rem);
      margin: clamp(1.75rem, 5vw, 2.75rem) auto 0;
      max-width: 100%;
    }
    .mascot-float {
      flex: 0 1 auto;
      animation: mascot-float 9s ease-in-out infinite;
      will-change: transform;
    }
    .mascot-float:nth-child(1) { animation-delay: 0s; }
    .mascot-float:nth-child(2) { animation-delay: -1.8s; }
    .mascot-float:nth-child(3) { animation-delay: -3.6s; }
    .mascot-float:nth-child(4) { animation-delay: -5.4s; }
    .mascot-float img {
      display: block;
      width: clamp(68px, 13vw, 118px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 6px 16px rgba(2, 4, 8, 0.35));
    }
    @keyframes mascot-float {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -5px, 0); }
    }

    .property-grid {
      display: grid;
      gap: 1rem;
      margin-top: clamp(2rem, 5vw, 2.75rem);
      text-align: left;
      grid-template-columns: 1fr;
      position: relative;
      z-index: 2;
    }
    @media (min-width: 640px) {
      .property-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .tile {
      display: block;
      padding: 1.15rem 1.2rem;
      border-radius: var(--radius-tile);
      text-decoration: none;
      color: var(--text);
      background: var(--tile);
      border: 1px solid var(--border);
      box-shadow: 0 0 0 1px rgba(2, 4, 8, 0.15) inset;
      transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
    }
    .tile:hover {
      transform: translateY(-2px);
      background: var(--tile-hover);
      border-color: var(--border-strong);
      box-shadow:
        0 0 0 1px rgba(152, 186, 227, 0.12) inset,
        0 12px 32px rgba(2, 4, 8, 0.25);
    }
    .tile:focus {
      outline: none;
    }
    .tile:focus-visible {
      border-color: rgba(152, 186, 227, 0.55);
      box-shadow: 0 0 0 3px rgba(152, 186, 227, 0.25);
    }
    .tile strong {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: #f5f9ff;
    }
    .tile span {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.45;
      color: var(--text-muted);
    }

    .shell-footer {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.35rem;
      border-top: 1px solid var(--border);
      text-align: center;
      background: linear-gradient(180deg, transparent 0%, rgba(2, 4, 8, 0.12) 100%);
    }
    .shell-footer p {
      margin: 0;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }

    .mascot {
      position: absolute;
      right: clamp(0.25rem, 2vw, 1rem);
      bottom: clamp(3.5rem, 12vw, 5.5rem);
      z-index: 1;
      width: clamp(56px, 14vw, 100px);
      height: auto;
      pointer-events: none;
      user-select: none;
      transform: scaleX(-1);
      opacity: 0.9;
      filter: drop-shadow(0 8px 20px rgba(2, 4, 8, 0.4));
    }
    @media (max-width: 600px) {
      .mascot {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .site-header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }
      .logo { justify-self: center; }
      .header-cta { justify-self: center; justify-content: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      .tile,
      .btn-primary {
        transition: none;
      }
      .tile:hover {
        transform: none;
      }
      .mascot-float {
        animation: none;
      }
    }
