/* ============================================================
   BLLLD.lu — Coming Soon
   Refined luxury-editorial dark theme
   ============================================================ */

:root {
  --bg: #060913;
  --bg-2: #0a101f;
  --bg-3: #0e1526;
  --ink: #eef1fa;
  --muted: #99a2bc;
  --faint: #5d6684;

  --coral: #ff5148;
  --coral-soft: #ff7a6e;
  --violet: #7b6cff;
  --blue: #3e7bff;

  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-soft: rgba(255, 255, 255, 0.06);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --container: 1160px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: rgba(255, 81, 72, 0.35); color: #fff; }

/* ---------- Ambient background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  will-change: transform;
}

.aurora__blob--violet {
  width: 55vw; height: 55vw;
  top: -20vw; right: -15vw;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.22), transparent 65%);
  animation: drift 26s ease-in-out infinite alternate;
}

.aurora__blob--blue {
  width: 50vw; height: 50vw;
  bottom: -18vw; left: -14vw;
  background: radial-gradient(circle, rgba(62, 123, 255, 0.16), transparent 65%);
  animation: drift 32s ease-in-out infinite alternate-reverse;
}

.aurora__blob--coral {
  width: 34vw; height: 34vw;
  top: 46%; left: 58%;
  background: radial-gradient(circle, rgba(255, 81, 72, 0.10), transparent 65%);
  animation: drift 38s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, 3vw, 0) scale(1.12); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.container--narrow { width: min(760px, 92vw); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 340;
  color: transparent;
  background: linear-gradient(100deg, var(--coral-soft), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}

.section-text {
  color: var(--muted);
  max-width: 560px;
  font-size: 18px;
}

/* ---------- Glass ---------- */
.glass {
  background: linear-gradient(160deg, var(--glass-strong), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
  will-change: transform;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(120deg, var(--coral) 10%, #e8362e 90%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 81, 72, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(255, 81, 72, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--ghost {
  border: 1px solid var(--stroke);
  background: var(--glass);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: var(--glass-strong);
  box-shadow: 0 10px 30px rgba(123, 108, 255, 0.18);
}

.btn--full { width: 100%; }
.btn--big { padding: 20px 44px; font-size: 18px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.nav.is-scrolled {
  background: rgba(6, 9, 19, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--stroke-soft);
}

.nav__inner {
  width: min(var(--container), 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 1;
}

.nav__logo-ext,
.nav__logo-dot {
  font-style: italic;
  font-weight: 340;
  color: transparent;
  background: linear-gradient(100deg, var(--coral) 20%, var(--coral-soft));
  -webkit-background-clip: text;
  background-clip: text;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}

.nav__links a { position: relative; transition: color 0.3s; padding: 6px 0; }
.nav__links a:hover { color: var(--ink); }

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__join { color: var(--coral-soft) !important; }

.nav__right { display: flex; align-items: center; gap: 20px; }

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.lang__sep { color: var(--faint); }

.lang__btn {
  color: var(--faint);
  padding: 4px 2px;
  transition: color 0.3s;
}

.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active { color: var(--coral); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px 4px;
}

.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

.nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobilemenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 5vw 28px;
  background: rgba(6, 9, 19, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke-soft);
}

.mobilemenu a {
  padding: 14px 0;
  font-size: 20px;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--stroke-soft);
}

.mobilemenu__lang { display: flex; gap: 18px; padding-top: 20px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 90px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 42%, rgba(123, 108, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 45%, rgba(255, 81, 72, 0.08), transparent 70%);
  transition: opacity 0.8s;
}

.hero__fallback.is-visible { opacity: 1; }

.hero__content {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
}

/* soft dark halo behind the copy so the 3D scene never fights the text */
.hero__content::before {
  content: "";
  position: absolute;
  inset: -12% -18%;
  z-index: -1;
  background: radial-gradient(ellipse 60% 55% at 50% 48%, rgba(6, 9, 19, 0.62), transparent 72%);
  pointer-events: none;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero__label-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 81, 72, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 81, 72, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 81, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 81, 72, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 7.4vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; }

.hero__line--accent > span {
  font-style: italic;
  font-weight: 340;
  color: transparent;
  background: linear-gradient(95deg, var(--coral-soft) 5%, var(--violet) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 0.08em; /* keep descenders inside the clip */
}

.hero__text {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__launch {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.hero__scrollhint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scrollhint-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--coral));
  animation: scrollhint 2.2s var(--ease-out) infinite;
}

@keyframes scrollhint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Services ---------- */
.services { padding: 60px 0 110px; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
  padding: 22px 0;
  margin-bottom: 100px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.ticker__track {
  display: flex;
  gap: 56px;
  width: max-content;
  will-change: transform;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 340;
  font-style: italic;
  color: var(--faint);
  white-space: nowrap;
}

.ticker__item::after {
  content: "✦";
  font-style: normal;
  font-size: 12px;
  color: var(--coral);
  opacity: 0.7;
}

.services__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke-soft);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  transition: border-color 0.4s, color 0.4s, background 0.4s, transform 0.4s var(--ease-out);
}

.service svg {
  width: 26px;
  height: 26px;
  color: var(--faint);
  transition: color 0.4s;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 81, 72, 0.35);
  color: var(--ink);
  background: linear-gradient(160deg, rgba(255, 81, 72, 0.07), rgba(123, 108, 255, 0.05));
}

.service:hover svg { color: var(--coral-soft); }

/* ---------- About ---------- */
.about { padding: 60px 0 110px; }

.about__cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}

.card::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover { transform: translateY(-6px); border-color: rgba(123, 108, 255, 0.3); }
.card:hover::before { opacity: 1; }

.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--coral-soft);
  letter-spacing: 0.1em;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 27px;
  margin: 14px 0 10px;
}

.card p { color: var(--muted); font-size: 15.5px; }

/* ---------- Audience ---------- */
.audience { padding: 20px 0 110px; }

.audience__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel {
  position: relative;
  padding: 48px 42px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}

.panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 123, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.panel--pro::after {
  background: radial-gradient(circle, rgba(255, 81, 72, 0.14), transparent 70%);
}

.panel:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.16); }

.panel__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.panel--pro .panel__tag { color: var(--coral-soft); }

.panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  margin-bottom: 14px;
}

.panel p { color: var(--muted); margin-bottom: 26px; max-width: 400px; }

.panel__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 3px;
  transition: color 0.3s;
}

.panel__link:hover { color: var(--coral-soft); }

/* ---------- Join / form ---------- */
.join { padding: 20px 0 120px; }

.join__box {
  padding: clamp(32px, 5vw, 64px);
  box-shadow: 0 30px 80px rgba(3, 5, 12, 0.6);
}

.join__box .section-text { margin-bottom: 38px; }

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form__field { display: flex; flex-direction: column; gap: 8px; }

.form__field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__field input,
.form__field select {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(6, 9, 19, 0.55);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form__field input::placeholder { color: var(--faint); }

.form__field input:focus,
.form__field select:focus {
  border-color: rgba(255, 81, 72, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 81, 72, 0.12);
}

.form__field input.is-invalid,
.form__field select.is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 81, 72, 0.15);
}

.select-wrap { position: relative; }

.select-wrap::after {
  content: "";
  position: absolute;
  right: 20px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form__consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 10px 0 30px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

.form__consent a { color: var(--coral-soft); text-decoration: underline; text-underline-offset: 3px; }

.form__consent input {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--stroke);
  border-radius: 6px;
  background: rgba(6, 9, 19, 0.55);
  cursor: pointer;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}

.form__consent input:checked {
  background: var(--coral);
  border-color: var(--coral);
}

.form__consent input:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2.5px;
  width: 5px; height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.form__consent input.is-invalid { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 81, 72, 0.15); }

.form__error {
  margin-top: 16px;
  font-size: 14px;
  color: var(--coral-soft);
  text-align: center;
}

/* ---------- Finale ---------- */
.finale {
  padding: 80px 0 140px;
  text-align: center;
  position: relative;
}

.finale::before {
  content: "";
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: 340px;
  background: radial-gradient(ellipse, rgba(255, 81, 72, 0.09), transparent 70%);
  pointer-events: none;
}

.finale__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 44px;
  letter-spacing: -0.01em;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--stroke-soft);
  padding: 52px 0 40px;
  background: linear-gradient(to bottom, transparent, rgba(3, 5, 12, 0.7));
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.footer__logo span {
  font-style: italic;
  font-weight: 340;
  color: transparent;
  background: linear-gradient(100deg, var(--coral) 20%, var(--coral-soft));
  -webkit-background-clip: text;
  background-clip: text;
}

.footer__brand p { color: var(--faint); font-size: 14px; margin-top: 8px; }

.footer__links { display: flex; gap: 28px; font-size: 15px; color: var(--muted); }
.footer__links a { transition: color 0.3s; }
.footer__links a:hover { color: var(--ink); }

.lang--footer { font-size: 14px; gap: 14px; }

.footer__copy {
  font-size: 13px;
  color: var(--faint);
  padding-top: 28px;
  border-top: 1px solid var(--stroke-soft);
}

/* ---------- Reveal initial states (JS adds motion) ---------- */
.js .reveal,
.js .reveal-card { opacity: 0; }

.js .hero__line > span { transform: translateY(110%); }
.js .reveal-hero { opacity: 0; }

/* No-JS and reduced-motion: everything visible */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js .reveal, .js .reveal-card, .js .reveal-hero { opacity: 1; }
  .js .hero__line > span { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__right .lang { display: none; }
  .nav__burger { display: flex; }
  .mobilemenu.is-open { display: flex; }

  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .about__cards { grid-template-columns: 1fr; }
  .audience__panels { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .panel { padding: 38px 28px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .hero { padding: 120px 0 80px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service { padding: 20px 16px; }

  .ticker { margin-bottom: 70px; }
  .ticker__item { font-size: 18px; gap: 36px; }
  .ticker__item::after { display: inline; }
  .ticker__track { gap: 36px; }

  .btn--big { width: 100%; }

  /* Cheaper rendering on small screens */
  .aurora__blob { filter: blur(70px); animation: none; }
  .service:hover, .card:hover, .panel:hover { transform: none; }
}
