:root {
  --bg: #030811;
  --bg-soft: #07101d;
  --panel: rgba(10, 19, 33, 0.72);
  --line: rgba(255, 255, 255, 0.105);
  --text: #f7f9fc;
  --muted: #9ba9ba;
  --blue: #0f73ff;
  --teal: #0bc8ba;
  --orange: #ff9500;
  --purple: #9627e9;
  --claim: #ffffff;
  --max: 1180px;
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 88%, rgba(15, 115, 255, 0.09), transparent 29%),
    radial-gradient(circle at 87% 90%, rgba(155, 47, 234, 0.08), transparent 28%),
    radial-gradient(circle at 18% 32%, rgba(15, 109, 255, 0.08), transparent 28%),
    radial-gradient(circle at 83% 41%, rgba(150, 39, 233, 0.07), transparent 25%),
    var(--bg);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.ambient {
  position: fixed;
  z-index: -3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(125px);
  pointer-events: none;
}
.ambient-blue { left: -220px; bottom: -270px; background: rgba(15, 115, 255, 0.29); }
.ambient-purple { right: -230px; bottom: -290px; background: rgba(155, 47, 234, 0.25); }

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.16'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(32, 98, 255, 0.12), transparent 66%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.topbar {
  width: min(var(--max), calc(100% - 40px));
  height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mini-brand img {
  width: 31px;
  height: 31px;
  max-width: 31px;
  max-height: 31px;
}

.dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe3ed;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
}
.dev-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px var(--blue);
}

.section { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Hero – Mockup 1 */
.hero {
  text-align: center;
  padding: 34px 0 0;
}

.brand-block {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  text-align: left;
}
.brand-logo {
  width: 178px;
  width: clamp(138px, 15vw, 178px);
  max-width: 178px;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.26));
}
.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-copy h1 {
  margin: 0;
  font-size: clamp(6rem, 11vw, 9.4rem);
  line-height: 0.77;
  font-weight: 800;
  letter-spacing: -0.075em;
}
.brand-copy p {
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  color: #b8c3d4;
  font-size: clamp(1rem, 1.75vw, 1.45rem);
  line-height: 1.25;
  white-space: nowrap;
}

.claim-block { margin-top: clamp(56px, 7vh, 88px); }
.claim-block h2 {
  margin: 0;
  color: var(--claim);
  font-size: clamp(2.45rem, 4.6vw, 4.6rem);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.claim-block span {
  background: linear-gradient(90deg, #0d78ff 0%, #5862ff 47%, #b62be5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-line {
  width: 150px;
  height: 2px;
  margin: clamp(42px, 5vh, 60px) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 35%, #6552ff 58%, var(--purple) 78%, transparent 100%);
  box-shadow: 0 0 14px rgba(31, 116, 255, 0.54), 0 0 18px rgba(155, 47, 234, 0.38);
}

.hero-copy {
  max-width: 750px;
  margin: clamp(36px, 5vh, 52px) auto 0;
  color: #b6c0cc;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-subline {
  max-width: 750px;
  margin: 14px auto 0;
  color: #8796a8;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  line-height: 1.65;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(102deg, #0875ff 0%, #3456ff 48%, #b31fe2 100%);
  box-shadow: 0 14px 48px rgba(72, 51, 255, 0.25);
  transition: 0.2s;
}
.primary-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #36a2ff, #5d54ff, #da30ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.primary-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Product – Mockup 2 */
.product { text-align: center; padding: 48px 0 0; }

.hero .product-stage {
  margin: 56px auto 0;
  padding-bottom: 8px;
}

.product-stage {
  position: relative;
  width: min(960px, 92vw);
  max-width: 960px;
  margin: 0 auto;
  overflow: visible;
}

.glow {
  position: absolute;
  filter: blur(60px);
  opacity: 0.38;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow-blue { width: 48%; height: 75%; left: -6%; top: 13%; background: rgba(0, 106, 255, 0.55); }
.glow-purple { width: 50%; height: 67%; right: -7%; top: 9%; background: rgba(139, 24, 255, 0.45); }
.glow-teal { width: 30%; height: 45%; right: -2%; bottom: 0; background: rgba(0, 214, 190, 0.35); }

.product-frame {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: #fff;
  box-shadow:
    0 35px 110px rgba(0, 0, 0, 0.56),
    0 0 60px rgba(34, 87, 255, 0.15),
    0 0 120px rgba(34, 87, 255, 0.08);
}

.product-frame img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.product-showcase {
  width: 100%;
}

.product-showcase__tilt {
  perspective: 1600px;
  perspective-origin: 50% 42%;
}

.product-showcase__frame {
  position: relative;
  aspect-ratio: 1598 / 1022;
  transform: rotateY(-12deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-showcase[data-theme="dark"] .product-showcase__frame {
  transform: rotateY(12deg) rotateX(3deg);
}

.product-showcase.is-hovered[data-theme="light"] .product-showcase__frame {
  transform: rotateY(-8deg) rotateX(2deg) translateY(-4px);
}

.product-showcase.is-hovered[data-theme="dark"] .product-showcase__frame {
  transform: rotateY(8deg) rotateX(2deg) translateY(-4px);
}

.product-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.product-showcase__img.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.product-showcase__img:not(.is-active) {
  z-index: 1;
}

.product-showcase__meta {
  margin-top: 26px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.product-showcase__labels {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.product-showcase__labels button {
  min-width: 72px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8f9eb2;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}

.product-showcase__labels button.is-active {
  color: #eef3fb;
  background: linear-gradient(102deg, rgba(8, 117, 255, 0.28), rgba(179, 31, 226, 0.22));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Product – Mockup 2 */
.product { text-align: center; padding: 32px 0 0; }

.product-caption { margin: 40px auto 0; }

.overline {
  display: inline-block;
  color: #608cff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-caption h2 {
  margin: 10px 0 5px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}
.product-caption p { margin: 0; color: #aeb8c5; line-height: 1.65; }
.product-caption strong { color: #8564ff; font-weight: 500; }

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.section-intro h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}
.section-intro p {
  margin: 16px 0 0;
  color: #aeb8c5;
  line-height: 1.65;
}

.how-it-works { padding: 64px 0 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}
.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: start;
}
.steps h3 {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.steps p {
  grid-column: 2;
  margin: 0;
  color: #8796a8;
  font-size: 0.78rem;
  line-height: 1.6;
}

.features { padding: 64px 0 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}
.feature-card h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.trust { padding: 64px 0 0; }
.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
}
.trust-card strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Early Access – Mockup 2 */
.early-access { padding: 90px 0 64px; }

.access-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 15%, rgba(87, 47, 204, 0.13), transparent 28%),
    linear-gradient(150deg, rgba(12, 22, 38, 0.89), rgba(5, 11, 21, 0.84));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.27);
}
.access-copy,
.form-wrap { min-width: 0; }
.access-copy h2 {
  margin: 10px 0 15px;
  font-size: clamp(1.12rem, 3.6vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
  background: linear-gradient(90deg, #127bff, #b323e4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.access-copy > p { max-width: 500px; margin: 0; color: #b6c0cb; line-height: 1.75; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.benefits > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  align-items: start;
}
.benefit-icon {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(132, 79, 255, 0.38);
  border-radius: 10px;
  color: #a180ff;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 16px;
  height: 16px;
}
.benefits strong { font-size: 0.78rem; }
.benefits small { color: #8796a8; font-size: 0.7rem; line-height: 1.55; }

.form-wrap { padding-left: 50px; border-left: 1px solid var(--line); }

.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 7px; color: #b9c5d2; font-size: 0.76rem; }
.field label span { color: #708196; }
.field input,
.field select {
  width: 100%;
  height: 56px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: none;
  color: #fff;
  background: rgba(2, 8, 17, 0.58);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238f9eb2' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select option {
  color: #f7f9fc;
  background: #0a1321;
}
.field input::placeholder { color: #5f7085; }
.field input:focus,
.field select:focus {
  border-color: #356fff;
  box-shadow: 0 0 0 4px rgba(36, 104, 255, 0.11);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: #8f9daf;
  font-size: 0.72rem;
  line-height: 1.55;
}
.consent input { margin-top: 3px; accent-color: #4a55ff; }
.consent a { text-decoration: underline; text-underline-offset: 2px; }

.submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(102deg, #0875ff 0%, #3456ff 48%, #b31fe2 100%);
  box-shadow: 0 14px 48px rgba(72, 51, 255, 0.25);
  transition: 0.2s;
}
.submit-button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #36a2ff, #5d54ff, #da30ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.submit-button:hover { transform: translateY(-2px); filter: brightness(1.08); }

.form-note {
  padding-left: 24px;
  position: relative;
  margin: 17px 0 0;
  color: #8493a6;
  font-size: 0.72rem;
}
.form-note::before { content: "⌑"; position: absolute; left: 3px; color: #9eacc0; }

.form-status { min-height: 22px; margin: 12px 0 0; font-size: 0.78rem; }
.form-status.success { color: #40d6ac; }
.form-status.error { color: #ff6c7c; }

.honeypot { position: absolute !important; left: -9999px !important; }

/* Footer – Mockup 2 */
.footer { text-align: center; padding: 52px 0 38px; color: #9ba8b9; }
.footer > p { margin: 0 0 20px; }

.austria {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.flag {
  display: grid;
  width: 23px;
  height: 15px;
  overflow: hidden;
  border-radius: 2px;
}
.flag i:nth-child(1),
.flag i:nth-child(3) { background: #e93232; }
.flag i:nth-child(2) { background: #fff; }

.footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 27px;
  font-size: 0.74rem;
}
.footer nav a:hover { color: #fff; }
.footer small { display: block; margin-top: 18px; color: #58697c; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.09s; }
.delay-2 { transition-delay: 0.17s; }
.delay-3 { transition-delay: 0.25s; }
.delay-4 { transition-delay: 0.34s; }
.delay-5 { transition-delay: 0.43s; }

.legal-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 100px;
  color: #d9e1eb;
  line-height: 1.8;
}
.legal-page__back {
  display: inline-block;
  color: #7ba6ff;
  font-size: 0.92rem;
  font-weight: 500;
}
.legal-page__back:hover { color: #a8c4ff; }
.legal-page h1 {
  margin: 36px 0 0;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
}
.legal-page h2 {
  margin-top: 38px;
  font-size: 1.35rem;
  color: #eef3fb;
}
.legal-page p { margin: 0 0 1rem; }
.legal-page ul { margin: 0 0 1rem 1.2rem; padding: 0; }
.legal-page li { margin-bottom: 0.45rem; }
.legal-page a { color: #7ba6ff; }
.legal-page a:hover { color: #a8c4ff; }
.legal-page strong { color: #eef3fb; font-weight: 600; }
.legal-page em { color: #9ba9ba; }

@media (max-width: 900px) {
  .access-panel { grid-template-columns: 1fr; }
  .form-wrap {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 36px;
  }
  .benefits,
  .steps,
  .trust-points { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .access-copy h2 { font-size: clamp(1.2rem, 5.4vw, 1.85rem); }
}

@media (max-width: 720px) {
  .hero { padding-top: 24px; }
  .brand-block { gap: 16px; }
  .brand-logo { width: clamp(78px, 22vw, 110px); }
  .brand-copy h1 { font-size: clamp(4.1rem, 19vw, 6rem); }
  .brand-copy p {
    max-width: 250px;
    margin-top: 13px;
    font-size: clamp(0.72rem, 3vw, 0.92rem);
    line-height: 1.35;
    white-space: normal;
  }
  .claim-block { margin-top: 52px; }
  .claim-block h2 { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.18; }
  .hero-copy { font-size: 0.94rem; }
  .hero-subline { font-size: 0.88rem; }
  .primary-cta { width: 100%; max-width: 320px; }
  .hero .product-stage { margin-top: 58px; }
}

@media (max-width: 640px) {
  .topbar,
  .section { width: min(100% - 28px, var(--max)); }
  .topbar { height: 72px; }
  .mini-brand span { display: none; }
  .product-stage { margin-top: 20px; }
  .product-frame { border-radius: 9px; }
  .product-showcase[data-theme="light"] .product-showcase__frame {
    transform: rotateY(-6deg) rotateX(2deg);
  }
  .product-showcase[data-theme="dark"] .product-showcase__frame {
    transform: rotateY(6deg) rotateX(2deg);
  }
  .product-showcase.is-hovered[data-theme="light"] .product-showcase__frame {
    transform: rotateY(-4deg) rotateX(1deg) translateY(-2px);
  }
  .product-showcase.is-hovered[data-theme="dark"] .product-showcase__frame {
    transform: rotateY(4deg) rotateX(1deg) translateY(-2px);
  }
  .access-panel { padding: 29px 21px; }
  .early-access { padding-top: 65px; }
  .feature-grid { grid-template-columns: 1fr; }
  .access-copy h2 { font-size: clamp(0.82rem, 4.5vw, 1.15rem); }
}

@media (max-width: 410px) {
  .brand-block { gap: 12px; }
  .brand-logo { width: 74px; }
  .brand-copy h1 { font-size: 3.85rem; }
  .brand-copy p { max-width: 210px; font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .product-showcase[data-theme="light"] .product-showcase__frame,
  .product-showcase[data-theme="dark"] .product-showcase__frame,
  .product-showcase.is-hovered[data-theme="light"] .product-showcase__frame,
  .product-showcase.is-hovered[data-theme="dark"] .product-showcase__frame {
    transform: none;
  }
  .product-showcase__img {
    transition: none;
  }
}
