:root {
  color-scheme: dark;
  --bg: #050816;
  --bg-soft: #070b14;
  --bg-elevated: #0b1020;
  --card: rgba(255, 255, 255, 0.065);
  --card-strong: rgba(255, 255, 255, 0.105);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #a8b3c7;
  --muted-2: #718097;
  --primary: #38bdf8;
  --primary-2: #22d3ee;
  --green: #35d07f;
  --orange: #ff7a3d;
  --purple: #a78bfa;
  --gold: #f6c65b;
  --tech: #7dd3fc;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 42px rgba(56, 189, 248, 0.22);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(167, 139, 250, 0.15), transparent 30rem),
    linear-gradient(180deg, var(--bg), #070b14 42%, #050816);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.72);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  padding: 9px 10px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button.primary {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, #38bdf8, #22d3ee 48%, #35d07f);
  color: #031018;
  box-shadow: 0 16px 46px rgba(34, 211, 238, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: var(--glow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 520px);
  align-items: center;
  gap: clamp(38px, 7vw, 94px);
  max-width: calc(var(--container) + 112px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) clamp(18px, 5vw, 56px);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
  filter: blur(20px);
}

.hero::before {
  width: 360px;
  height: 360px;
  top: 12%;
  right: 12%;
  background: rgba(56, 189, 248, 0.16);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: 0;
  bottom: 10%;
  background: rgba(53, 208, 127, 0.12);
}

.hero-kicker,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-kicker span,
.trust-row span,
.status,
.feature-tags li,
.private-tags li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
}

.hero-kicker span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.eyebrow {
  margin: 24px 0 12px;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, #7dd3fc 42%, #35d07f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 12px;
  color: #dbeafe;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 650;
}

.hero-description {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  margin-top: 24px;
}

.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-showcase {
  position: relative;
  min-height: 580px;
}

.hero-phone {
  position: absolute;
  width: min(54vw, 260px);
  border: 8px solid #050816;
  border-radius: 30px;
  background: #050816;
  box-shadow: var(--shadow);
}

.hero-phone-main {
  right: 38%;
  top: 76px;
  z-index: 3;
  animation: floatY 7s ease-in-out infinite;
}

.hero-phone-side {
  right: 4%;
  top: 128px;
  z-index: 2;
  opacity: 0.84;
  animation: floatY 8s ease-in-out infinite reverse;
}

.float-card,
.showcase-glass {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.float-card strong,
.float-card small,
.showcase-glass strong,
.showcase-glass span {
  display: block;
}

.float-card small,
.showcase-glass span {
  color: var(--muted);
  font-size: 0.86rem;
}

.float-card.plant {
  left: 0;
  top: 18px;
  animation: floatY 6.2s ease-in-out infinite;
}

.float-card.gym {
  right: 0;
  top: 18px;
  animation: floatY 7.3s ease-in-out infinite reverse;
}

.float-card.lingo {
  left: 12%;
  bottom: 96px;
  animation: floatY 7.8s ease-in-out infinite;
}

.app-mark,
.app-icon,
.benefit-grid span,
.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: #041018;
  font-weight: 950;
}

.showcase-glass {
  right: 0;
  bottom: 26px;
  width: min(100%, 340px);
}

.section {
  position: relative;
  max-width: calc(var(--container) + 112px);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 56px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 790px;
}

.section-heading p:not(.eyebrow),
.app-card p,
.benefit-grid p,
.project-grid p,
.service-grid p,
.price-panel p,
.legal p,
.contact-shell p {
  color: var(--muted);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.app-card,
.mini-project,
.service-grid article,
.benefit-grid article,
.private-card,
.legal > div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.app-card:hover,
.mini-project:hover,
.service-grid article:hover,
.benefit-grid article:hover,
.private-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: var(--shadow), var(--glow);
}

.app-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
}

.card-glow {
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0.38;
  background: radial-gradient(circle at 20% 0%, var(--accent), transparent 36%);
}

.plant {
  --accent: rgba(53, 208, 127, 0.48);
}

.gym {
  --accent: rgba(255, 122, 61, 0.48);
}

.lingo {
  --accent: rgba(167, 139, 250, 0.52);
}

.plant .app-mark,
.plant .app-icon {
  background: linear-gradient(135deg, #b7ffd5, var(--green));
}

.gym .app-mark,
.gym .app-icon {
  background: linear-gradient(135deg, #ffd0ad, var(--orange));
}

.lingo .app-mark,
.lingo .app-icon {
  background: linear-gradient(135deg, #ddd6fe, var(--purple));
}

.app-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.lingo-graphic {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.48), rgba(167, 139, 250, 0.72));
}

.lingo-graphic span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.5rem;
  font-weight: 950;
}

.lingo-graphic small {
  display: block;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.82);
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.76rem;
  font-weight: 850;
}

.category {
  margin-bottom: 8px;
  color: var(--primary-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.feature-tags li {
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.84rem;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.screenshot-strip figure {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 10%, rgba(56, 189, 248, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.screenshot-strip img {
  width: min(100%, 270px);
  max-height: 520px;
  margin: 0 auto;
  border: 8px solid #030712;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.screenshot-strip figcaption {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.all-apps {
  margin-top: 22px;
}

.mini-project {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.mini-project img {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  object-fit: cover;
  flex: 0 0 auto;
}

.overview {
  --accent: rgba(56, 189, 248, 0.38);
}

.lohnpilot {
  --accent: rgba(246, 198, 91, 0.42);
}

.service {
  max-width: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(167, 139, 250, 0.08));
}

.service-shell,
.contact-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.benefit-grid article {
  padding: 22px;
}

.service-grid span,
.benefit-grid span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  font-size: 0.9rem;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 16, 24, 0.52);
}

.price-panel p {
  margin-bottom: 0;
}

.private-projects {
  max-width: none;
  background:
    linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    #080d18;
  background-size: 42px 42px;
}

.private-projects > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.private-projects .eyebrow {
  color: var(--tech);
}

.private-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.private-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.private-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
}

.private-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.private-category {
  width: 100%;
  margin-bottom: 0;
  color: var(--tech);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.private-status {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.09);
  color: #dbeafe;
  font-size: 0.76rem;
  font-weight: 850;
}

.private-status.muted {
  color: var(--muted);
}

.private-card h3 {
  margin-top: 12px;
}

.private-card p,
.private-note {
  color: var(--muted);
}

.private-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.private-tags li {
  padding: 6px 9px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.82rem;
}

.private-note {
  max-width: 980px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.contact-cta {
  max-width: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(53, 208, 127, 0.12), transparent 30rem),
    radial-gradient(circle at 84% 16%, rgba(56, 189, 248, 0.16), transparent 28rem);
}

.contact-shell {
  text-align: left;
}

.contact-shell h2 {
  max-width: 820px;
}

.contact-shell p {
  max-width: 760px;
}

.contact-shell a:not(.button) {
  color: var(--primary-2);
  font-weight: 850;
}

.legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: calc(var(--container) + 112px);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px) clamp(48px, 6vw, 76px);
}

.legal > div {
  padding: 20px;
}

.legal h2 {
  font-size: 1.1rem;
}

.legal p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px clamp(18px, 5vw, 56px) 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(2, 6, 23, 0.64);
  color: var(--muted);
}

.footer span {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 900;
}

.footer p,
.footer small {
  margin: 0;
  font-size: 0.92rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer a:hover {
  color: var(--primary-2);
}

.footer > div:last-child {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  background: var(--bg);
}

.thanks-card {
  max-width: 680px;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card img {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
}

.thanks-card h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.thanks-card p:not(.eyebrow) {
  color: var(--muted);
}

.reveal {
  animation: revealUp 700ms ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .app-grid,
  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    gap: 2px;
  }
}

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

  .hero,
  .price-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .hero-phone-main {
    left: 4%;
    right: auto;
  }

  .hero-phone-side {
    right: 4%;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .footer > div:last-child {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero {
    padding-top: 48px;
  }

  .hero-showcase {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .hero-phone,
  .float-card,
  .showcase-glass {
    position: static;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-phone {
    width: min(100%, 260px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .app-grid,
  .service-grid,
  .benefit-grid,
  .project-grid,
  .private-grid,
  .screenshot-strip,
  .legal {
    grid-template-columns: 1fr;
  }

  .app-card-top,
  .mini-project,
  .private-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .private-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

@media (max-width: 390px) {
  .section,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-shell,
  .contact-shell {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
