@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #102337;
  --muted: #a3a9b5;
  --paper: #070b12;
  --blue: #075bff;
  --line: #263141;
  --lime: #dcff74;
  --gutter: clamp(24px, 5vw, 80px);
  font-family: Inter, Arial, sans-serif;
  font-synthesis: none;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: #f7f9ff;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
  background: none;
}
a,
button {
  touch-action: manipulation;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 600;
}
h1 {
  font-size: clamp(46px, 6.45vw, 104px);
  font-weight: 650;
}
h2 {
  font-size: clamp(32px, 3.7vw, 58px);
}
h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
}
p {
  line-height: 1.58;
}
em {
  font-style: italic;
}
::selection {
  background: #2d77ff;
  color: #fff;
}
:focus-visible {
  outline: 3px solid #51bdff;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: 100%;
  max-width: 1600px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -70px;
  background: white;
  color: var(--ink);
  padding: 12px 18px;
}
.skip-link:not(:focus) { opacity: 0; pointer-events: none; }
.skip-link:focus {
  top: 12px;
}
.muted {
  color: var(--muted);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 550;
  border-radius: 7px;
  white-space: nowrap;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-blue {
  background: var(--blue);
  color: white;
}
.button-blue:hover {
  background: #2875ff;
  box-shadow: 0 10px 45px #0b65ff30;
}
.button-dark {
  background: #081e38;
  color: #fff;
}
.button-white {
  background: #fff;
  color: #081e38;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  transition: gap 0.2s;
}
.text-link:hover {
  gap: 19px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  font-size: 27px;
  font-weight: 730;
  letter-spacing: -1.3px;
  line-height: 1;
}
.brand-dot {
  color: #3d82ff;
}
.brand-symbol {
  display: block;
  position: relative;
  width: 38px;
  height: 44px;
  overflow: hidden;
  flex: none;
}
.brand-symbol img {
  position: absolute;
  width: 84px;
  max-width: none;
  height: 84px;
  left: -23px;
  top: -16px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  position: relative;
  z-index: 10;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #91c9ef38;
  border-radius: 100px;
  background: linear-gradient(120deg, #112a448f, #06101ecc);
  box-shadow: inset 0 1px #d4eeff0d, 0 8px 30px #01050c24;
  backdrop-filter: blur(12px);
  font-size: 13px;
}
.desktop-nav > a {
  position: relative;
  padding: 12px 20px;
  border-radius: 100px;
  transition: color .2s ease, background .2s ease;
}
.desktop-nav > a::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a4e4ff, transparent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid #7fa4ca;
  border-radius: 100px;
  background: linear-gradient(115deg, #17558680, #0c223947);
  box-shadow: inset 0 1px #d8f2ff16;
  font-size: 13px;
  transition: border-color .2s ease, background .2s ease;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, #bceaff26 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}
.nav-cta .icon {
  width: 17px;
  height: 17px;
  transition: transform .25s ease;
}
.menu-control {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 112px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #96c6e777;
  border-radius: 100px;
  background: linear-gradient(120deg, #13334fe6, #061322f2);
  color: #eaf5ff;
  box-shadow: inset 0 1px #d8f1ff19, 0 5px 20px #01050c33;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease;
}
.menu-toggle { display: none; }
/* Hide header controls beneath the dialog; retain native opener focus return. */
.site-header:has(.menu-toggle[aria-expanded="true"]),
.menu-toggle[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
}
.menu-glyph {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 16px;
}
.menu-glyph > span {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.menu-glyph > span:last-child { top: 11px; }
.menu-close .menu-glyph > span:first-child,
.menu-toggle[aria-expanded="true"] .menu-glyph > span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-close .menu-glyph > span:last-child,
.menu-toggle[aria-expanded="true"] .menu-glyph > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  color: #f3f7ff;
}
.mobile-menu::backdrop {
  background: #01081685;
  animation: menu-backdrop-in .3s ease both;
}
.menu-layout { height: 100%; }
.menu-toolbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 8px;
}
.menu-panel {
  position: relative;
  isolation: isolate;
  max-height: calc(100% - 96px - env(safe-area-inset-bottom, 0px));
  overflow: hidden auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #446681 transparent;
  padding: clamp(16px, 5vw, 26px);
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(140deg, #0b2036, #07111f 72%) padding-box,
    linear-gradient(135deg, #9be6ff, #437696 16%, #314d68 46%, #507d9c) border-box;
  box-shadow: 0 22px 60px #01040bb3, inset 0 1px #bdedff14;
  transform-origin: top right;
  animation: menu-panel-in .38s cubic-bezier(.16,1,.3,1) both;
}
.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: radial-gradient(circle, #70d4ff61 .8px, transparent 1px);
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse 150px 130px at top left, #000, transparent);
  pointer-events: none;
}
.menu-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, #a4e4ff0c 48%, #e3f8ff14 50%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  animation: menu-reflection .9s .15s ease both;
}
.menu-caption {
  margin: 0;
  padding: 3px 4px 6px;
  color: #92b8d5;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.menu-link {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 22px 4px;
  border-bottom: 1px solid #9fc6e329;
  animation: menu-row-in .4s .07s both;
  transition: color .2s ease, background .2s ease;
}
.menu-link + .menu-link { animation-delay: .12s; }
.menu-index {
  align-self: start;
  padding-top: 5px;
  color: #91b2ce;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.menu-link-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
  text-align: left;
}
.menu-link-copy strong {
  font-size: clamp(22px, 6.65vw, 28px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.2;
}
.menu-link-copy > span {
  color: #a2bad2;
  font-size: 12px;
  line-height: 1.5;
}
.menu-link > .icon {
  color: #d7eeff;
  transition: transform .25s ease, color .25s ease;
}
.menu-project {
  position: relative;
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #368fcd85;
  border-radius: 16px;
  background: linear-gradient(115deg, #10467699, #06213c80 85%);
  box-shadow: inset 0 1px #a0dfff10;
  animation: menu-row-in .4s .17s both;
  transition: border-color .2s ease, background .2s ease;
}
.menu-project-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid #74d4ff;
  border-radius: 50%;
  background: #0b52823b;
  box-shadow: 0 0 20px #1689dd14;
  transition: background .25s ease, box-shadow .25s ease;
}
.menu-project .menu-link-copy strong { font-size: clamp(20px, 5.9vw, 28px); }
.menu-project-arrow .icon {
  width: 22px;
  height: 22px;
  transition: transform .25s ease;
}
.menu-panel :focus-visible { outline-offset: 2px; border-radius: 8px; }
.menu-panel .menu-project:focus-visible { border-radius: 16px; }
.menu-link:active { color: #9be6ff; background: #68bfff0b; }
.menu-project:active { background: #17456c; }
.menu-control:active { background: #204560; }
.mobile-menu[open] .menu-close .menu-glyph > span:first-child {
  animation: menu-cross-first .3s ease both;
}
.mobile-menu[open] .menu-close .menu-glyph > span:last-child {
  animation: menu-cross-last .3s ease both;
}
.mobile-menu.is-closing .menu-panel {
  animation: menu-panel-out .18s ease both;
}
.mobile-menu.is-closing::backdrop {
  animation: menu-backdrop-out .18s ease both;
}
.mobile-menu.is-closing .menu-close .menu-glyph > span {
  animation: none;
  transform: none;
  transition-duration: .18s;
}
@keyframes menu-panel-in {
  from { opacity: 0; transform: translateY(-12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes menu-panel-out {
  to { opacity: 0; transform: translateY(-8px) scale(.99); }
}
@keyframes menu-row-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes menu-reflection {
  0% { opacity: 0; transform: translateX(-110%); }
  25%, 65% { opacity: 1; }
  100% { opacity: 0; transform: translateX(110%); }
}
@keyframes menu-backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes menu-backdrop-out { to { opacity: 0; } }
@keyframes menu-cross-first {
  from { transform: none; }
  to { transform: translateY(3.5px) rotate(45deg); }
}
@keyframes menu-cross-last {
  from { transform: none; }
  to { transform: translateY(-3.5px) rotate(-45deg); }
}
@media (hover: hover) {
  .desktop-nav > a:hover { color: #c6edff; background: #93cdff0a; }
  .desktop-nav > a:hover::after { transform: scaleX(1); }
  .nav-cta:hover { border-color: #b0e5ff; background: #17456c99; }
  .nav-cta:hover::before { animation: menu-reflection .65s ease both; }
  .nav-cta:hover .icon { transform: translate(2px, -2px); }
  .menu-control:hover { border-color: #a6e1ff; }
  .menu-link:hover { color: #bcf0ff; background: #72c2ff08; }
  .menu-link:hover > .icon { transform: translateX(3px); color: #8edfff; }
  .menu-project:hover { border-color: #76ceff; background: #11447299; }
  .menu-project:hover .menu-project-arrow { background: #155788; box-shadow: 0 0 22px #1689dd2b; }
  .menu-project:hover .icon { transform: translate(2px, -2px); }
}
.brief-dialog {
  color-scheme: light;
  position: fixed;
  color: #11243c;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 44px;
  width: min(590px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  box-shadow: 0 30px 120px #0005;
}
.brief-dialog::backdrop {
  background: #061125ac;
  backdrop-filter: blur(9px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2f4f8;
}
.dialog-intro .section-label {
  color: #1361e8;
  font-size: 9px;
}
.dialog-intro h2 {
  font-size: 42px;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.dialog-intro > p {
  color: #6c7788;
  font-size: 14px;
  max-width: 390px;
  margin: 20px 0 25px;
}
.brief-dialog fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.brief-dialog legend,
.field-label {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}
.brief-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 23px;
}
.brief-options label {
  position: relative;
  cursor: pointer;
}
.brief-options input {
  position: absolute;
  left: 12px;
  top: 14px;
  opacity: 0;
}
.brief-options span {
  display: block;
  border: 1px solid #d6deea;
  border-radius: 6px;
  padding: 11px 10px;
  text-align: center;
  font-size: 12px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.brief-options input:checked + span {
  color: #075bff;
  border-color: #075bff;
  background: #f1f6ff;
}
.brief-options input:focus-visible + span {
  outline: 3px solid #80bbff;
  outline-offset: 2px;
}
.brief-dialog textarea,
.brief-dialog select {
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  padding: 13px;
  border: 1px solid #cdd5e0;
  border-radius: 6px;
  margin-bottom: 22px;
  background: #fff;
  color: #102337;
  resize: vertical;
}
.brief-dialog textarea::placeholder {
  color: #8c98a8;
}
.brief-dialog .button {
  width: 100%;
  min-height: 52px;
}
.form-note {
  font-size: 11px;
  line-height: 1.6;
  color: #6c7788;
  margin-top: 15px;
}
.brief-success {
  font-size: 13px;
  color: #16713f;
  background: #eff9f1;
  padding: 12px;
  margin-top: 15px;
  border-radius: 6px;
}

/* Shared controls for the selected Stravendis site. */
:root { --paper: #050c18; --muted: #9bb0c7; --line: #23415e; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.site-header { justify-content: flex-end; }
.brief-dialog { color-scheme: dark; color: #f4f7fc; background: linear-gradient(145deg, #0c1e35, #06101f); border: 1px solid #426080; border-radius: 18px; box-shadow: 0 32px 120px #0009, inset 0 1px #a8d5ff18; }
.dialog-close { background: #17304b; }
.dialog-close:hover { background: #244667; }
.dialog-intro .section-label { color: #96dfff; }
.dialog-intro > p, .form-note { color: #a9bdd1; }
.brief-options span { border-color: #36506c; font-size: 13px; min-height: 46px; }
.brief-options input:checked + span { color: #d9f2ff; border-color: #60b9f4; background: #123252; }
.brief-dialog textarea, .brief-dialog select { color: #f4f7fc; background: #081525; border-color: #36506c; font-size: 16px; }
.brief-dialog textarea::placeholder { color: #97a9bd; }
.brief-dialog .button { background: #e8f5ff; color: #08182b; border-radius: 8px; }
.brief-success { background: #0d3435; color: #b9eadc; }
.form-note { font-size: 12px; }
.redirect-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; }
.site-footer { padding-block: 38px; font-size: 13px; color: #9bb0c7; }
.footer-inner { border-top: 1px solid #294059; padding-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { color: #f4f7fc; font-size: 24px; font-weight: 700; letter-spacing: -.055em; }
.footer-meta { display: flex; align-items: center; gap: 32px; }
.footer-nav { display: flex; gap: 40px; align-items: center; }
.footer-nav a { padding-block: 12px; display: flex; align-items: center; gap: 16px; }
.footer-nav a:hover { color: #e3f4ff; }
.footer-nav .icon { width: 17px; height: 17px; }
@media (max-width: 1150px) { .desktop-nav > a { padding-inline: 16px; } .site-header { height: 90px; } }
@media (max-width: 700px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header { height: 88px; }
  .brief-dialog { padding: 48px 22px 26px; width: calc(100% - 24px); max-height: calc(100dvh - 24px); }
  .dialog-intro h2 { font-size: 34px; }
  .brief-options { gap: 8px; }
  .brief-options span { font-size: 12px; padding-inline: 6px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-meta { width: 100%; justify-content: space-between; gap: 12px; }
  .footer-nav { width: 100%; justify-content: space-between; gap: 14px; font-size: 12px; }
  .footer-nav a { min-height: 44px; }
  .footer-nav .icon { width: 14px; }
}
@media (max-width: 360px) {
  .menu-link { column-gap: 8px; grid-template-columns: 20px minmax(0, 1fr) 18px; }
  .menu-link > .icon { width: 18px; height: 18px; }
  .menu-project { padding: 12px; gap: 8px; }
}
@media (scripting: none) {
  [data-brief], .menu-toggle { display: none !important; }
  .desktop-nav { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after, *::backdrop { animation: none !important; transition: none !important; }
}
