:root {
  --bg: #030812;
  --bg-soft: #071322;
  --panel: rgba(9, 22, 39, .76);
  --panel-strong: rgba(11, 29, 51, .9);
  --panel-solid: #0b1b31;
  --ink: #f7fbff;
  --muted: #aebbd0;
  --muted-2: #7f90aa;
  --line: rgba(123, 190, 255, .22);
  --line-strong: rgba(39, 216, 255, .45);
  --brand: #1167ff;
  --brand-2: #12b7ff;
  --cyan: #27d6ff;
  --gold: #f2a931;
  --green: #7fffd0;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
body.splash-lock { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 16%, rgba(39,216,255,.26), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(242,169,49,.20), transparent 24%),
    radial-gradient(circle at 50% 95%, rgba(17,103,255,.14), transparent 34%),
    linear-gradient(135deg, #02050a 0%, #071322 48%, #02050a 100%);
}
.site-bg::before,
.site-bg::after,
.site-noise {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.site-bg::before {
  z-index: -2;
  opacity: .12;
  background-image:
    linear-gradient(90deg, rgba(39,216,255,.24) 1px, transparent 1px),
    linear-gradient(rgba(39,216,255,.20) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 20%, #000, transparent 74%);
}
.site-bg::after {
  z-index: -2;
  background:
    linear-gradient(110deg, transparent 0 46%, rgba(18,183,255,.14) 46.2% 46.7%, transparent 47% 100%),
    linear-gradient(70deg, transparent 0 57%, rgba(242,169,49,.11) 57.2% 57.7%, transparent 58% 100%);
  opacity: .65;
}
.site-noise {
  z-index: -1;
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 4px 4px;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(18,183,255,.18), transparent 42%),
    linear-gradient(135deg, #02050a, #07101d 54%, #02050a);
}
.splash[aria-hidden="true"] { display: none; }
.splash.is-closing { pointer-events: none; }
.splash-video {
  width: min(980px, 92vw);
  max-height: 82vh;
  border-radius: 34px;
  box-shadow:
    0 0 0 1px rgba(39,216,255,.18),
    0 0 120px rgba(18,183,255,.16),
    var(--shadow);
}
.splash-fallback {
  display: none;
}
.splash-fallback img {
  width: min(560px, 78vw);
}
.splash-skip {
  position: fixed;
  right: 26px;
  bottom: 26px;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 19, 34, .74);
  padding: 12px 18px;
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.splash-skip:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(123, 190, 255, .18);
  background: rgba(3, 8, 18, .72);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  min-height: 78px;
  background: rgba(3, 8, 18, .88);
  border-color: rgba(39, 216, 255, .22);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(130px, 12vw, 182px);
  filter:
    drop-shadow(0 0 22px rgba(18,183,255,.26))
    drop-shadow(0 10px 26px rgba(0,0,0,.35));
}
.brand img {
  display: block;
  width: 100%;
  border-radius: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(123, 190, 255, .16);
  border-radius: 999px;
  background: rgba(9, 22, 39, .55);
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: rgba(17, 103, 255, .34);
  transform: translateY(-1px);
}
.nav a.lang {
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ink);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(9, 22, 39, .75);
  border-radius: 14px;
  padding: 9px 12px;
}

main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: center;
  min-height: calc(100vh - 94px);
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(74px, 10vw, 132px) 0 clamp(54px, 8vw, 96px);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1,
.section-head h2,
.aurora-panel h2,
.aurora-mission h2,
.roadmap-note h2 {
  margin: 0;
  letter-spacing: -.065em;
  line-height: .9;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 8vw, 116px);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-proof span,
.status-pill {
  display: inline-flex;
  border: 1px solid rgba(127, 255, 208, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: #c9ffe9;
  background: rgba(127, 255, 208, .08);
  font-size: 13px;
  font-weight: 800;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 42px rgba(17,103,255,.28);
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(18,183,255,.26);
}
.button.ghost {
  background: rgba(11, 29, 51, .7);
  border-color: rgba(123, 190, 255, .24);
  box-shadow: none;
}
.button.ghost:hover {
  border-color: var(--cyan);
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  perspective: 900px;
  transform-style: preserve-3d;
}
.emblem-frame {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  width: min(560px, 100%);
  border: 1px solid rgba(123, 190, 255, .22);
  border-radius: 38px;
  padding: clamp(10px, 2.4vw, 22px);
  background:
    radial-gradient(circle at 50% 20%, rgba(18,183,255,.10), transparent 46%),
    linear-gradient(145deg, rgba(13,29,52,.46), rgba(6,12,22,.58));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 30px 110px rgba(0,0,0,.42),
    0 0 92px rgba(18,183,255,.16);
}
.hero-emblem img {
  width: min(500px, 94%);
  border-radius: 0;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.35));
}
.aurora-ecosystem-placeholder {
  /* Future slot: replace the DJ mark here with the animated Aurora ecosystem logo. */
}
.shield-aura,
.orbit,
.circuit-line {
  position: absolute;
  pointer-events: none;
}
.shield-aura {
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(8px);
}
.aura-blue {
  background: radial-gradient(circle, rgba(18,183,255,.24), transparent 66%);
}
.aura-gold {
  background: radial-gradient(circle, rgba(242,169,49,.16), transparent 64%);
  transform: translate(30px, 18px);
}
.orbit {
  width: 520px;
  height: 370px;
  border: 1px solid rgba(18,183,255,.28);
  border-radius: 48%;
}
.orbit-two {
  width: 500px;
  height: 410px;
  border-color: rgba(242,169,49,.24);
  transform: rotate(18deg);
}
.orbit-three {
  width: 430px;
  height: 300px;
  border-color: rgba(127,255,208,.14);
  transform: rotate(-24deg);
}
.circuit-line {
  height: 1px;
  width: 220px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .18;
}
.circuit-line-a { right: 0; top: 34%; }
.circuit-line-b { left: 0; bottom: 30%; }


.aurora-brand-emblem .orbit,
.aurora-brand-emblem .circuit-line {
  display: none;
}

.aurora-brand-emblem .shield-aura {
  opacity: .44;
}

.aurora-brand-emblem {
  isolation: isolate;
}

.aurora-brand-emblem .emblem-frame {
  width: min(430px, 82vw);
  aspect-ratio: 1;
  border-radius: 999px;
  padding: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(127,255,208,.18), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(18,183,255,.12), transparent 72%);
  box-shadow:
    0 34px 130px rgba(0,0,0,.46),
    0 0 120px rgba(18,183,255,.22),
    0 0 80px rgba(127,255,208,.14);
}

.aurora-brand-emblem .emblem-frame::before,
.aurora-brand-emblem .emblem-frame::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 999px;
  pointer-events: none;
}

.aurora-brand-emblem .emblem-frame::before {
  border: 1px solid rgba(127,255,208,.22);
  box-shadow: 0 0 46px rgba(127,255,208,.14);
}

.aurora-brand-emblem .emblem-frame::after {
  display: none;
}

.aurora-brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter:
    drop-shadow(0 22px 42px rgba(0,0,0,.36))
    drop-shadow(0 0 26px rgba(127,255,208,.18));
  transform-origin: 50% 50%;
}

.aurora-glow-pulse {
  position: absolute;
  z-index: 0;
  width: 470px;
  height: 470px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(127,255,208,.18), transparent 58%),
    radial-gradient(circle, rgba(178,92,255,.14), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  margin: 0 0 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 22, 39, .55);
}
.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 68px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.035);
  font-weight: 850;
  text-align: center;
}

.section-head,
.page-hero {
  padding: clamp(72px, 10vw, 118px) 0 42px;
}
.section-head h2,
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 6vw, 84px);
}
.section-head p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}
.cards,
.demo-grid,
.ecosystem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards article,
.demo-card,
.contact-box,
.stack-list article,
.timeline article,
.ecosystem-card,
.aurora-panel,
.aurora-mission,
.roadmap-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13,29,52,.82), rgba(6,12,22,.72));
  box-shadow: var(--shadow);
}
.cards article,
.demo-card,
.stack-list article,
.timeline article,
.contact-box,
.ecosystem-card {
  padding: 28px;
}
.cards article {
  position: relative;
  overflow: hidden;
}
.cards article::before,
.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(39,216,255,.13), transparent 36%);
  opacity: 0;
  transition: opacity .25s ease;
}
.cards article:hover::before,
.ecosystem-card:hover::before {
  opacity: 1;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(39,216,255,.24);
  border-radius: 16px;
  background: rgba(39,216,255,.1);
  margin-bottom: 18px;
}
.cards h2,
.demo-card h2,
.stack-list h2,
.contact-box h2,
.ecosystem-card h2 {
  margin: 0 0 12px;
}
.cards p,
.demo-card p,
.stack-list p,
.contact-box p,
.ecosystem-card p,
.aurora-panel p,
.aurora-mission p,
.roadmap-note p {
  color: var(--muted);
  line-height: 1.65;
}
.aurora-panel,
.aurora-mission,
.roadmap-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  margin: 78px 0;
}
.aurora-panel h2,
.aurora-mission h2,
.roadmap-note h2 {
  font-size: clamp(36px, 5vw, 64px);
}
.ecosystem-mini {
  display: grid;
  gap: 12px;
}
.ecosystem-mini span {
  border: 1px solid rgba(127,255,208,.18);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(127,255,208,.07);
  font-weight: 900;
}
.ecosystem-card {
  position: relative;
  overflow: hidden;
}
.ecosystem-top,
.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ecosystem-top span {
  color: var(--gold);
  font-weight: 900;
}
.progress-row {
  margin-top: 24px;
}
progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
progress::-webkit-progress-bar {
  background: rgba(255,255,255,.08);
}
progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--green));
}
progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--green));
}
.stack-list {
  display: grid;
  gap: 16px;
  margin-bottom: 74px;
}
.timeline {
  display: grid;
  gap: 16px;
  margin-bottom: 74px;
}
.timeline article div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.demo-card .button {
  margin-top: 12px;
}
.contact-box {
  max-width: 760px;
  margin-bottom: 80px;
}

.value-grid .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(127,255,208,.24);
  color: var(--green);
  background: rgba(127,255,208,.08);
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 86px;
}

.contact-intro,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17,103,255,.12), transparent 46%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-intro {
  padding: clamp(26px, 4vw, 42px);
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
}

.contact-intro p,
.contact-detail span {
  color: var(--muted);
  line-height: 1.65;
}

.contact-detail {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-detail strong {
  color: var(--ink);
}

.contact-detail a {
  color: var(--green);
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 190, 255, .24);
  border-radius: 16px;
  background: rgba(3, 8, 18, .48);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(127,255,208,.62);
  box-shadow: 0 0 0 4px rgba(127,255,208,.08);
  background: rgba(3, 8, 18, .72);
}

.contact-form select {
  color: var(--ink);
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-alert {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(123, 190, 255, .24);
  background: rgba(17,103,255,.12);
  color: var(--ink);
  font-weight: 800;
}

.form-alert.success {
  border-color: rgba(127,255,208,.36);
  background: rgba(127,255,208,.1);
  color: var(--green);
}

.form-alert.error {
  border-color: rgba(242,169,49,.42);
  background: rgba(242,169,49,.1);
  color: #ffd28a;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr 1fr;
  gap: 24px;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 10px;
}
.site-footer p {
  margin: 0;
  line-height: 1.6;
}
.halo-badge {
  border: 1px solid rgba(127,255,208,.24);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(127,255,208,.14), transparent 44%),
    rgba(127,255,208,.07);
}
.halo-badge span,
.halo-badge em {
  display: block;
  color: var(--green);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}
.halo-badge strong {
  margin: 6px 0;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
  }
  .brand {
    width: 128px;
  }
  .menu-button {
    display: inline-flex;
  }
  .nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    background: rgba(3, 8, 18, .95);
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }
  .hero-emblem {
    min-height: 420px;
  }
  .trust-strip,
  .cards,
  .demo-grid,
  .ecosystem-grid,
  .aurora-panel,
  .aurora-mission,
  .roadmap-note,
  
.value-grid .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(127,255,208,.24);
  color: var(--green);
  background: rgba(127,255,208,.08);
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 86px;
}

.contact-intro,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17,103,255,.12), transparent 46%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-intro {
  padding: clamp(26px, 4vw, 42px);
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
}

.contact-intro p,
.contact-detail span {
  color: var(--muted);
  line-height: 1.65;
}

.contact-detail {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-detail strong {
  color: var(--ink);
}

.contact-detail a {
  color: var(--green);
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 190, 255, .24);
  border-radius: 16px;
  background: rgba(3, 8, 18, .48);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(127,255,208,.62);
  box-shadow: 0 0 0 4px rgba(127,255,208,.08);
  background: rgba(3, 8, 18, .72);
}

.contact-form select {
  color: var(--ink);
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-alert {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(123, 190, 255, .24);
  background: rgba(17,103,255,.12);
  color: var(--ink);
  font-weight: 800;
}

.form-alert.success {
  border-color: rgba(127,255,208,.36);
  background: rgba(127,255,208,.1);
  color: var(--green);
}

.form-alert.error {
  border-color: rgba(242,169,49,.42);
  background: rgba(242,169,49,.1);
  color: #ffd28a;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main,
  
.value-grid .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(127,255,208,.24);
  color: var(--green);
  background: rgba(127,255,208,.08);
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 86px;
}

.contact-intro,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17,103,255,.12), transparent 46%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-intro {
  padding: clamp(26px, 4vw, 42px);
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
}

.contact-intro p,
.contact-detail span {
  color: var(--muted);
  line-height: 1.65;
}

.contact-detail {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-detail strong {
  color: var(--ink);
}

.contact-detail a {
  color: var(--green);
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 190, 255, .24);
  border-radius: 16px;
  background: rgba(3, 8, 18, .48);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(127,255,208,.62);
  box-shadow: 0 0 0 4px rgba(127,255,208,.08);
  background: rgba(3, 8, 18, .72);
}

.contact-form select {
  color: var(--ink);
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-alert {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(123, 190, 255, .24);
  background: rgba(17,103,255,.12);
  color: var(--ink);
  font-weight: 800;
}

.form-alert.success {
  border-color: rgba(127,255,208,.36);
  background: rgba(127,255,208,.1);
  color: var(--green);
}

.form-alert.error {
  border-color: rgba(242,169,49,.42);
  background: rgba(242,169,49,.1);
  color: #ffd28a;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
    width: min(100% - 28px, 1160px);
  }
  .site-header {
    padding: 12px 14px;
  }
  .brand {
    width: 112px;
  }
  .hero h1 {
    font-size: clamp(46px, 15vw, 72px);
  }
  .page-hero h1,
  .section-head h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .hero-emblem {
    min-height: 330px;
  }
  .orbit,
  .shield-aura {
    width: 320px;
    height: 260px;
  }
  .emblem-frame {
    border-radius: 28px;
  }
}

@keyframes auroraHaloSpin {
  to {
    transform: rotate(360deg);
  }
}


/* Aurora home brand mark: static logo with a subtle living glow. */
.aurora-brand-emblem {
  --aurora-glow-strength: .42;
  --aurora-glow-scale: 1;
  width: min(500px, 39vw);
  min-height: 500px;
  isolation: isolate;
}

.aurora-brand-emblem .orbit,
.aurora-brand-emblem .circuit-line {
  display: none !important;
}

.aurora-brand-emblem .shield-aura {
  opacity: .32;
  filter: blur(2px);
}

.aurora-brand-emblem .emblem-frame {
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.aurora-brand-emblem .emblem-frame::before,
.aurora-brand-emblem .emblem-frame::after {
  display: none;
}

.aurora-brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  transform: none !important;
  animation: none !important;
  filter:
    drop-shadow(0 28px 48px rgba(0, 0, 0, .38))
    drop-shadow(0 0 calc(22px + (var(--aurora-glow-strength) * 18px)) rgba(127, 255, 208, .18))
    drop-shadow(0 0 calc(10px + (var(--aurora-glow-strength) * 16px)) rgba(18, 183, 255, .14));
}

.aurora-glow-pulse {
  width: min(540px, 44vw);
  height: min(540px, 44vw);
  opacity: calc(.26 + (var(--aurora-glow-strength) * .22));
  transform: scale(var(--aurora-glow-scale));
  background:
    radial-gradient(circle, rgba(127, 255, 208, .22), transparent 55%),
    radial-gradient(circle, rgba(18, 183, 255, .16), transparent 68%),
    radial-gradient(circle, rgba(178, 92, 255, .12), transparent 78%);
  filter: blur(8px);
  animation: auroraSubtleGlow 5.2s ease-in-out infinite;
}

.aurora-brand-emblem.is-static .emblem-frame,
.aurora-brand-emblem.is-static img {
  transform: none !important;
}

@keyframes auroraSubtleGlow {
  0%, 100% {
    opacity: .28;
    transform: scale(.96);
  }
  50% {
    opacity: .52;
    transform: scale(1.04);
  }
}

@media (max-width: 960px) {
  .aurora-brand-emblem {
    width: min(440px, 88vw);
    min-height: 420px;
  }

  .aurora-glow-pulse {
    width: min(460px, 92vw);
    height: min(460px, 92vw);
  }
}



/* 0014 Dutch cleanup: removed Aurora beam leftovers */
.aurora-brand-emblem .orbit,
.aurora-brand-emblem .circuit-line,
.aurora-energy-field,
.energy-track,
.energy-particle,
.energy-node,
.energy-core {
  display: none !important;
}
