:root {
  --bg-1: #0b2a45;
  --bg-2: #0f3d66;
  --bg-3: #133a8a;
  --card: rgba(255, 255, 255, 0.94);
  --card-2: rgba(255, 255, 255, 0.86);
  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-muted: rgba(255, 255, 255, 0.72);
  --stroke-2: rgba(255, 255, 255, 0.14);
  --cta: #22c55e;
  --cta-hover: #16a34a;
  --shadow: 0 22px 60px rgba(2, 6, 23, 0.35);
  --shadow-soft: 0 14px 32px rgba(2, 6, 23, 0.18);
  --font-body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --container: 1180px;
  --r-lg: 18px;
  --hero-video-focus: 53% 36%;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(1200px 600px at 18% 18%, rgba(59, 130, 246, 0.35), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(99, 102, 241, 0.25), transparent 58%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 40%, var(--bg-3));
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: transparent;
  overflow-x: hidden;
  color: var(--on-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.sectionHead h2,
.shot__title {
  font-family: var(--font-head);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--on-dark-muted);
  line-height: 1.7;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(9, 25, 45, 0.55);
  border-bottom: 1px solid var(--stroke-2);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.brand__logo-lg {
  height: 38px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--on-dark);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.nav a {
  opacity: 0.88;
  padding: 10px 10px;
  border-radius: 999px;
  transition: 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  justify-content: flex-end;
}

.menuBtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.menuBtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 99px;
}

.mobileMenu {
  display: none;
  margin: 0 0 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(9, 25, 45, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.35);
}

.mobileMenu a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.mobileMenu a:hover,
.mobileMenu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
}

.mobileMenu__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.45);
  outline-offset: 3px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn--cta {
  background: var(--cta);
  color: #fff;
  border: 2px solid var(--cta);
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.25);
}

.btn--cta:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
}

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

.btn--xl {
  font-size: 18px;
  padding: 18px 40px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-video-focus);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 600px at -10% 20%, rgba(0, 0, 0, 0.28), transparent 60%),
    radial-gradient(1200px 600px at 110% 25%, rgba(0, 0, 0, 0.28), transparent 60%),
    linear-gradient(
      to bottom,
      rgba(6, 18, 34, 0.85) 0%,
      rgba(8, 25, 45, 0.8) 30%,
      rgba(10, 32, 58, 0.82) 55%,
      var(--bg-1) 85%,
      var(--bg-1) 100%
    );
}

.hero__grid,
.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.hero__grid--center {
  align-items: center;
}

.hero__copy {
  padding: 10px 6px;
}

.hero-list,
.usp,
.section ul {
  list-style: none;
  padding: 0;
}

.hero-list {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
}

.hero-list li,
.usp li,
.section li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.hero-list li {
  padding-left: 34px;
}

.hero-list li::before,
.usp li::before,
.section li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 900;
}

.hero-list li::before {
  top: 0;
  font-size: 22px;
}

.auth {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth__tabs {
  display: flex;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.55);
}

.tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px;
  font-weight: 800;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.55);
  transition: 160ms ease;
}

.tab[aria-selected="true"] {
  color: rgba(15, 23, 42, 0.95);
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--cta);
}

.auth__body {
  padding: 16px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.row-2--mt10 {
  margin-top: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.7);
}

.input {
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.98);
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.input:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.fineprint {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.5;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.75);
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.link {
  font-size: 13px;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.95);
}

.link:hover {
  text-decoration: underline;
}

.auth-link-row {
  margin-top: 12px;
  text-align: center;
}

.terms-wrap {
  margin: 12px 0 16px;
}

.screenshots {
  margin-top: 40px;
  display: grid;
  gap: 30px;
}

.screenshots img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features {
  padding: 40px 0 90px;
  background: var(--bg-1);
  position: relative;
  margin-top: -2px;
}

.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin: 10px 0 18px;
}

.sectionHead h2 {
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.01em;
}

.sectionHead p {
  margin: 0;
  color: var(--on-dark-muted);
  max-width: 900px;
  line-height: 1.7;
  font-size: 18px;
}

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

.shot {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.shot__img {
  width: 100%;
  padding: 18px;
  background:
    radial-gradient(700px 220px at 20% 20%, rgba(255, 255, 255, 0.18), transparent 65%),
    rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.shot__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
}

.shot__body {
  padding: 22px 22px 24px;
  color: var(--on-dark);
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shot__title {
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 6px;
}

.shot__desc {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section h2 {
  margin: 0 0 16px;
  font-size: 32px;
}

.section ul {
  margin: 0 0 36px;
}

.section li {
  margin-bottom: 10px;
}

.section--center {
  text-align: center;
}

.heading-no-top {
  margin-top: 0;
}

.cta-copy {
  max-width: 700px;
  margin: 0 auto 30px;
}

.glass {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.glass__inner {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.price {
  margin: 18px 0 12px;
}

.price__big {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
}

.price__meta {
  margin-top: 8px;
  color: var(--on-dark-muted);
  font-size: 16px;
}

.usp {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}


.content {
  background: var(--bg-1);
  padding: 40px 0 32px;
}

.contentCard {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contentCard__inner {
  padding: 28px 26px;
  background: radial-gradient(900px 240px at 20% 10%, rgba(255, 255, 255, 0.16), transparent 65%), rgba(255, 255, 255, 0.06);
}

.contentCard p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.contentCard h3 {
  margin: 22px 0 10px;
  font-size: 26px;
}

.ctaRow {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ctaBottom {
  background: var(--bg-1);
  padding: 20px 0 60px;
  text-align: center;
}

.ctaBottom p {
  max-width: 760px;
  margin: 0 auto 20px;
}

.contact-image-wrap {
  display: flex;
  justify-content: center;
}

.contact-image {
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lead--contact {
  margin-top: 18px;
  line-height: 1.9;
}

.waitlist-card {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.waitlist-card h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.waitlist-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 17px;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.waitlist-field label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.waitlist-input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.waitlist-input:focus {
  border-color: rgba(34, 197, 94, 0.65);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.page-funktioner .hero {
  padding: 80px 0 60px;
  min-height: auto;
}

.page-funktioner h1 {
  font-size: 46px;
  margin: 0 0 18px;
}

.page-funktioner .hero p {
  margin: 0;
  color: var(--on-dark-muted);
  line-height: 1.8;
  font-size: 18px;
}

.page-funktioner .hero .btn {
  margin-top: 20px;
}

.page-funktioner .section h2 {
  margin-top: 70px;
  margin-bottom: 18px;
  font-size: 32px;
}

.page-funktioner .features {
  padding: 60px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  margin-top: 0;
}

.page-funktioner .container .container {
  width: 100%;
  margin: 0;
}

.page-kontakt .hero,
.page-pris .hero {
  padding: 56px 0 48px;
  min-height: calc(100vh - 74px);
}

.page-kontakt .hero__grid {
  grid-template-columns: 1fr 0.95fr;
}

.page-pris .hero__grid {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin: 0 auto;
}

.page-om .hero {
  padding: 56px 0 48px;
  min-height: auto;
}

.page-om .hero__inner {
  display: grid;
  gap: 18px;
  max-width: 76ch;
}

.page-om .hero .lead {
  margin: 8px 0 0;
  font-size: 18px;
}

.page-om .ctaBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-start .waitlist-card {
  align-self: start;
}

.page-waitlist .hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 26px 0 28px;
}

.page-waitlist .waitlist-card {
  max-width: 620px;
  margin: 0 auto;
}

.waitlist-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 36px 0 64px;
  background: var(--bg-1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.waitlist-cta h2 {
  margin: 0 0 12px;
  color: var(--on-dark);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: var(--font-head);
}

.waitlist-cta p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: var(--on-dark-muted);
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .nav,
  .actions {
    display: none;
  }

  .menuBtn {
    display: inline-flex;
  }

  .mobileMenu {
    display: block;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .sectionHead {
    flex-direction: column;
    align-items: flex-start;
  }

  .shot__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .shot__body .btn {
    width: 100%;
  }

  .page-kontakt .hero__grid,
  .page-pris .hero__grid {
    grid-template-columns: 1fr;
  }

  .page-funktioner .hero,
  .page-kontakt .hero,
  .page-pris .hero,
  .page-waitlist .hero {
    min-height: calc(100vh - 64px);
  }

  .page-funktioner .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .topbar__inner {
    padding: 12px 0;
  }

  .brand img,
  .brand__logo-lg {
    height: 30px;
  }

  h1 {
    font-size: 34px;
  }

  .lead,
  .hero-list,
  .sectionHead p,
  .shot__desc,
  .contentCard p,
  .page-funktioner .hero p,
  .waitlist-card p {
    font-size: 16px;
  }

  .row-2 {
    grid-template-columns: 1fr;
  }

  .btn--ghost,
  .btn--cta {
    padding: 12px 18px;
    font-size: 15px;
  }

  .btn--xl {
    padding: 14px 24px;
    font-size: 16px;
  }

  .section h2,
  .sectionHead h2 {
    font-size: 30px;
  }

  .shot__title,
  .contentCard h3 {
    font-size: 22px;
  }

  .page-funktioner h1 {
    font-size: 36px;
  }
}
