  /* Self-hosted: no visitor data is sent to a third party to render this page. */
  @font-face {
    font-family: "Urbanist"; src: url("fonts/urbanist.woff2") format("woff2");
    font-weight: 300 800; font-style: normal; font-display: swap;
  }

  :root {
    /* Colours sampled from the logo itself */
    --night:     #0C0E24;
    --night-2:   #12153A;
    --text:      #EEF0FA;
    --body:      #D6D9EE;
    --soft:      #A7ACCF;
    --rule:      rgba(238, 240, 250, 0.12);
    --cyan:      #06E7FB;
    --blue:      #2F7BF5;
    --violet:    #4E4DED;
    --magenta:   #E336A8;
    --gold:      #FBC04A;
    --brand:     linear-gradient(90deg, var(--cyan) 0%, var(--blue) 28%, var(--violet) 50%, var(--magenta) 76%, var(--gold) 100%);
    --font:      "Urbanist", "Avenir Next", "Segoe UI", system-ui, sans-serif;
    --gutter:    clamp(1.25rem, 5vw, 3.5rem);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--night); }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    background: var(--night);
    color: var(--body);
    font-family: var(--font);
    font-size: 1.1875rem;
    font-weight: 450;
    line-height: 1.66;
    font-synthesis: none;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    -webkit-font-smoothing: antialiased;
  }

  a { color: var(--cyan); text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
  a:hover { text-decoration-thickness: 2px; }
  :focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 4px; }

  .skip {
    position: absolute; left: var(--gutter); top: -3.5rem; z-index: 5;
    background: var(--text); color: var(--night); padding: .55rem 1rem;
    font-weight: 650; font-size: .95rem; text-decoration: none; border-radius: 8px;
  }
  .skip:focus { top: calc(1rem + env(safe-area-inset-top, 0px)); }

  .wrap { max-width: 62rem; margin: 0 auto; padding-inline: var(--gutter); }

  /* ---------- hero: the logo on a dusk sky ---------- */
  .hero {
    position: relative;
    padding-top: env(safe-area-inset-top, 0px);
    background:
      linear-gradient(to bottom, transparent 58%, var(--night) 100%),   /* dissolves the glow into the page: no seam */
      radial-gradient(38% 52% at 27% 46%, rgba(6, 231, 251, 0.16), transparent 72%),
      radial-gradient(42% 58% at 70% 40%, rgba(227, 54, 168, 0.15), transparent 72%),
      radial-gradient(60% 55% at 50% 78%, rgba(78, 77, 237, 0.18), transparent 70%),
      var(--night);
    overflow: hidden;
  }
  .nav {
    display: flex; justify-content: flex-end; gap: 1.75rem;
    max-width: 76rem; margin: 0 auto;
    padding: 1.5rem var(--gutter) 0;
    font-size: 1rem; font-weight: 550;
  }
  .nav a { color: var(--soft); text-decoration: none; }
  .nav a:hover { color: var(--text); }

  .hero-inner {
    text-align: center;
    padding: clamp(3rem, 9vw, 7rem) var(--gutter) clamp(4rem, 10vw, 8rem);
  }
  h1 { margin: 0; line-height: 0; }
  h1 img {
    display: block; margin: 0 auto;
    width: min(100%, 38rem);   /* capped so the 870px source stays sharp on high-density screens */
    height: auto;
  }
  .lede {
    margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
    max-width: 32ch;
    text-wrap: balance;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--text);
  }

  /* one orchestrated entrance, then stillness */
  @media (prefers-reduced-motion: no-preference) {
    h1 img { animation: rise 1100ms cubic-bezier(.2, .7, .2, 1) both; }
    .lede  { animation: rise 1100ms 220ms cubic-bezier(.2, .7, .2, 1) both; }
    @keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  }

  /* ---------- sections ---------- */
  section { padding-block: clamp(3rem, 7vw, 5rem); border-top: 1px solid var(--rule); }
  section:first-of-type { border-top: 0; }
  h2 {
    margin: 0 0 clamp(1.6rem, 4vw, 2.5rem);
    color: var(--text);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  /* what we make */
  .product { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .product img {
    width: 7.25rem; height: 7.25rem; border-radius: 22.4%;
    box-shadow: 0 0 0 1px rgba(238,240,250,.08), 0 14px 34px -12px rgba(6, 231, 251, 0.35);
  }
  .product h3 {
    margin: 0 0 .5rem; color: var(--text);
    font-weight: 750; font-size: clamp(1.55rem, 3vw, 2rem);
    letter-spacing: -0.015em; line-height: 1.1;
  }
  .product p { margin: 0 0 1rem; max-width: 36rem; }
  .status { color: var(--soft); }
  @media (min-width: 44rem) { .product { grid-template-columns: auto 1fr; gap: 2.25rem; } }

  /* how we work */
  .principles { margin: 0; }
  .principle { display: grid; grid-template-columns: 1fr; gap: .35rem; padding-block: 1.35rem; border-top: 1px solid var(--rule); }
  .principle:first-child { border-top: 0; padding-top: 0; }
  .principle dt { color: var(--text); font-weight: 700; font-size: 1.28rem; line-height: 1.25; letter-spacing: -0.01em; }
  .principle dd { margin: 0; max-width: 36rem; color: var(--soft); }
  @media (min-width: 44rem) {
    .principle { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); gap: 2.25rem; }
  }

  /* contact: the brand gradient's one appearance outside the logo */
  .contact-line { margin: 0 0 1.5rem; max-width: 36rem; }
  .email {
    display: inline-block;
    color: var(--text); text-decoration: none;
    font-weight: 650; font-size: clamp(1.3rem, 4.4vw, 2.35rem);
    letter-spacing: -0.015em; line-height: 1.2;
    padding-bottom: .35rem;
    background: var(--brand) left bottom / 100% 2px no-repeat;
    overflow-wrap: anywhere;
  }
  .email:hover { background-size: 100% 3px; }
  .place { margin: 1.5rem 0 0; color: var(--soft); }

  footer {
    border-top: 1px solid var(--rule);
    padding-block: 2rem 2.5rem;
    font-size: .95rem; color: var(--soft);
    display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  }
  footer p { margin: 0; }
  footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  footer a { color: var(--soft); }
  footer a:hover { color: var(--text); }

  /* product list */
  .products { display: grid; gap: clamp(2.5rem, 6vw, 3.5rem); }
  .tile-soon {
    width: 7.25rem; height: 7.25rem; border-radius: 22.4%;
    display: grid; place-items: center;
    background: var(--night-2);
    border: 1px dashed rgba(238, 240, 250, 0.22);
    color: var(--soft); font-weight: 650; font-size: 1.05rem; letter-spacing: .01em;
  }
  .tag {
    display: inline-block; margin: 0 0 .7rem; padding: .2rem .65rem;
    border-radius: 999px; border: 1px solid rgba(238, 240, 250, 0.2);
    color: var(--soft); font-size: .9rem; font-weight: 600;
  }

  /* policy page */
  .page-head { padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 3rem); }
  .page-head h1 { line-height: 1.05; color: var(--text); font-weight: 750;
    font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.022em; }
  .page-head p { margin: .9rem 0 0; color: var(--soft); }
  .policy { max-width: 40rem; padding-bottom: clamp(3rem, 7vw, 5rem); }
  .policy h2 { font-size: clamp(1.35rem, 2.6vw, 1.6rem); margin: 2.4rem 0 .8rem; }
  .policy p, .policy li { margin: 0 0 1rem; }
  .policy ul { padding-left: 1.2rem; margin: 0 0 1rem; }
  .brand-link { display: inline-block; line-height: 0; }
  .brand-link img { height: 3.3rem; width: auto; }
  .topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    max-width: 62rem; margin: 0 auto; padding: calc(1.25rem + env(safe-area-inset-top, 0px)) var(--gutter) 0; }
  .topbar a.back { color: var(--soft); text-decoration: none; font-weight: 550; font-size: 1rem; }
  .topbar a.back:hover { color: var(--text); }

  /* long email addresses must be allowed to wrap on narrow screens */
  a[href^="mailto:"] { overflow-wrap: anywhere; }
