:root {
  --navy: #073c47;
  --navy-deep: #052f38;
  --teal: #39747b;
  --muted-teal: #71989a;

  --sand: #d8bb83;
  --light-sand: #eee5d5;

  --mint: #dce9e5;
  --mint-light: #edf4f1;

  --background: #fbfcfa;
  --white: #ffffff;

  --text: #113d45;
  --muted: #71878a;

  --radius: 24px;
  --shadow: 0 24px 70px rgba(5, 55, 65, .10);

  --container: 1180px;
}

* {
  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;

  color: var(--text);
  background: var(--background);
  line-height: 1.55;
}

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

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

.narrow {
  max-width: 800px;
}


/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 250, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 60, 71, .06);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  font-size: 29px;
  letter-spacing: -1.5px;
  color: var(--navy);
}

.brand-wave {
  color: var(--teal);
  font-size: 37px;
  line-height: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.login {
  font-size: 14px;
  font-weight: 600;
}


/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 13px;

  background: var(--navy);
  color: white;

  font-weight: 700;
  font-size: 15px;

  box-shadow: 0 10px 30px rgba(5, 55, 65, .18);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
  box-shadow: 0 14px 34px rgba(5, 55, 65, .25);
}

.button-small {
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13px;
}

.button-secondary {
  font-weight: 700;
  color: var(--navy);
  padding: 15px 5px;
}


/* HERO */

.hero {
  overflow: hidden;

  background:
    radial-gradient(circle at 75% 25%, rgba(207, 229, 224, .9), transparent 30%),
    linear-gradient(180deg, #fbfcfa 0%, #f2f7f4 100%);
}

.hero-grid {
  min-height: 720px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 60px;
}

.eyebrow,
.section-label {
  display: inline-block;

  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;

  margin-bottom: 17px;
}

.eyebrow span {
  font-size: 24px;
  vertical-align: -2px;
  margin-right: 5px;
}

.hero h1 {
  margin: 0;

  font-size: clamp(55px, 6vw, 83px);
  line-height: .98;

  letter-spacing: -4px;
  color: var(--navy);
}

.hero h1 span,
.section h2 span {
  color: var(--teal);
}

.hero-text {
  max-width: 600px;

  font-size: 19px;
  color: #58767a;

  margin: 30px 0;
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.microcopy {
  margin-top: 20px;

  color: #8a9b9c;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;

  width: 490px;
  height: 490px;

  border-radius: 50%;

  background:
    linear-gradient(135deg, #dcece7, #edf3ed);

  box-shadow: inset 0 0 80px rgba(255,255,255,.8);
}



.mascot {
  position: relative;
  z-index: 2;

  width: min(352px, 80%);
  height: auto;
  max-height: 456px;

  object-fit: contain;

  filter: drop-shadow(0 28px 35px rgba(5, 55, 65, .13));
}

.floating-card {
  position: absolute;
  z-index: 4;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255,255,255,.92);

  padding: 13px 17px;
  border-radius: 14px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(10px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  background: var(--mint);
  color: var(--teal);

  border-radius: 50%;

  font-weight: 800;
}

.card-doc {
  top: 120px;
  right: -10px;
}

.card-service {
  bottom: 110px;
  left: -10px;
}


/* GENERAL SECTIONS */

.section {
  padding: 110px 0;
}

.intro {
  text-align: center;
}

.section h2 {
  margin: 0 0 20px;

  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;

  letter-spacing: -2.5px;

  color: var(--navy);
}

.intro p {
  max-width: 690px;
  margin: 25px auto 0;

  font-size: 18px;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 50px;
}

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


/* FEATURES */

.features {
  background: var(--mint-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.feature-card {
  padding: 32px;

  background: rgba(255,255,255,.8);

  border: 1px solid rgba(7, 60, 71, .07);
  border-radius: var(--radius);

  min-height: 250px;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card.featured {
  background: var(--navy);
  color: white;
}

.feature-icon {
  width: 49px;
  height: 49px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background: var(--mint);

  color: var(--navy);
  font-size: 23px;
  font-weight: 800;

  margin-bottom: 35px;
}

.featured .feature-icon {
  background: rgba(255,255,255,.13);
  color: white;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.feature-card p {
  margin: 0;

  color: var(--muted);
  font-size: 14px;
}

.featured p {
  color: #b9cccf;
}


/* SCAN */

.scan-section {
  background: white;
}

.scan-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;

  gap: 100px;
  align-items: center;
}

.scan-demo {
  min-height: 530px;

  display: grid;
  place-items: center;

  border-radius: 40px;

  background:
    radial-gradient(circle at center, white, transparent 50%),
    var(--mint);
}

.phone {
  width: 260px;
  height: 480px;

  padding: 25px 18px;

  background: var(--navy);

  border: 7px solid #164e58;
  border-radius: 38px;

  box-shadow: 0 30px 60px rgba(7,60,71,.25);

  position: relative;
}

.phone-top {
  width: 75px;
  height: 7px;

  margin: 0 auto 35px;

  background: #789da2;
  border-radius: 10px;
}

.document {
  height: 285px;

  position: relative;
  overflow: hidden;

  padding: 30px 22px;

  background: #f6f0e5;

  border-radius: 7px;
  transform: rotate(-2deg);
}

.document-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--teal);
}

.document-line {
  width: 75%;
  height: 7px;

  margin-top: 28px;

  background: #b6c7c5;
  border-radius: 5px;
}

.document-line.long {
  width: 95%;
}

.document-line.short {
  width: 50%;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;

  height: 2px;

  background: #5ab5aa;
  box-shadow: 0 0 15px #5ab5aa;
}

.scan-status {
  position: absolute;
  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  width: 190px;

  padding: 10px 15px;

  background: white;
  border-radius: 12px;

  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.scan-status span { color: var(--teal); margin-right: 8px; }
.scan-copy p { color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 15px; margin: 28px 0; }
.check-list span { color: var(--teal); margin-right: 10px; }
.text-link { color: var(--teal); font-weight: 700; }
.steps { display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr; gap: 24px; align-items: center; }
.step { text-align: center; }
.step-number { display: inline-grid; place-items: center; width: 70px; height: 70px; border-radius: 22px; background: var(--mint); color: var(--teal); font-size: 23px; font-weight: 800; }
.step h3 { font-size: 23px; margin: 23px 0 12px; }
.step p { color: var(--muted); font-size: 15px; }
.step-line { height: 1px; background: var(--muted-teal); }
.app-preview { background: var(--mint-light); }
.dashboard { display: flex; max-width: 1000px; margin: 55px auto 0; border-radius: 25px; overflow: hidden; background: white; box-shadow: var(--shadow); border: 1px solid var(--mint); }
.dashboard-sidebar { flex: 0 0 76px; background: var(--navy); padding: 25px 20px; display: flex; align-items: center; flex-direction: column; gap: 25px; }
.mini-logo { color: var(--sand); font-size: 35px; }
.dashboard-sidebar > span { width: 23px; height: 23px; border-radius: 6px; background: rgba(255,255,255,.18); }
.dashboard-main { padding: 35px; flex: 1; min-width: 0; }
.dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.dashboard-header small, .dashboard-header strong { display: block; }
.dashboard-header small, .dash-card small { font-size: 10px; letter-spacing: 1px; color: var(--muted); }
.dashboard-header strong { font-size: 23px; margin-top: 6px; }
.avatar { display: grid; place-items: center; background: var(--light-sand); width: 40px; height: 40px; border-radius: 50%; font-weight: 700; font-size: 12px; }
.dashboard-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dash-card { padding: 22px; background: var(--mint-light); border-radius: 14px; }
.dash-card > * { display: block; }
.dash-card strong { font-size: 30px; margin: 10px 0 4px; }
.dash-card span { font-size: 11px; color: var(--muted); }
.dashboard-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; margin-top: 25px; }
.fake-chart, .fake-list { border: 1px solid var(--mint); padding: 22px; border-radius: 14px; font-size: 13px; }
.chart-bars { display: flex; align-items: flex-end; gap: 14px; height: 130px; padding-top: 20px; }
.chart-bars i { flex: 1; height: 48%; background: var(--muted-teal); border-radius: 5px 5px 0 0; }
.chart-bars i:nth-child(2) { height: 72%; }
.chart-bars i:nth-child(3) { height: 56%; }
.chart-bars i:nth-child(4) { height: 88%; }
.chart-bars i:nth-child(5) { height: 68%; }
.chart-bars i:nth-child(6) { height: 100%; background: var(--sand); }
.fake-list p { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--mint); padding-bottom: 10px; color: var(--muted); font-size: 11px; }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.type-grid article { padding: 30px 20px; }
.boat-symbol { color: var(--teal); font-size: 55px; }
.type-grid h3 { font-size: 23px; margin: 12px 0; }
.type-grid p { color: var(--muted); font-size: 15px; }
.final-cta { background: var(--navy); color: white; padding: 95px 0; }
.final-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center; }
.section-label.light { color: #b6d4d0; }
.final-cta h2 { font-size: clamp(45px, 6vw, 76px); line-height: 1.05; letter-spacing: -3px; margin: 0 0 25px; }
.final-cta h2 span { color: var(--sand); }
.final-cta p { color: #b9cccf; max-width: 460px; margin-bottom: 30px; }
.button-light { background: var(--light-sand); color: var(--navy); }
.button-light:hover { background: var(--sand); }
.cta-mark { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; border: 1px solid #39747b; background: rgba(255,255,255,.03); }
.cta-mark span { color: var(--sand); font-size: 180px; line-height: 1; }
footer { padding: 55px 0 25px; background: var(--background); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
footer p { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; font-size: 13px; }
.footer-bottom { margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--mint); color: var(--muted); font-size: 12px; }

/* ÜBER MICH */
.about-hero {
  padding: 105px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(207, 229, 224, .92), transparent 29%),
    linear-gradient(180deg, #fbfcfa 0%, #f2f7f4 100%);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -3.5px;
}
.about-hero h1 span { color: var(--teal); }
.about-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #58767a;
  font-size: 20px;
}
.about-portrait {
  width: min(75%, 390px);
  margin: 0 auto;
  min-width: 0;
}
.portrait-frame {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(7, 60, 71, .09);
  border-radius: 28px;
  background: var(--background);
  box-shadow: 0 24px 65px rgba(5, 55, 65, .14);
}
.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 73% 50%;
  border-radius: 21px;
}
.portrait-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 10px 0;
}
.portrait-wave { color: var(--teal); font-size: 36px; line-height: 1; }
.portrait-caption strong { display: block; font-size: 14px; color: var(--navy); }
.portrait-caption div > span { display: block; margin-top: 4px; font-size: 12px; color: #58767a; }
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 95px;
  align-items: start;
}
.story-kicker {
  position: sticky;
  top: 120px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}
.story-kicker .section-label { color: #b6d4d0; }
.story-kicker blockquote {
  margin: 5px 0 0;
  color: var(--light-sand);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
}
.story-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 5vw, 56px);
}
.story-copy p {
  color: #58767a;
  font-size: 18px;
  margin: 0 0 22px;
}
.story-copy p:first-of-type {
  color: var(--navy);
  font-size: 22px;
  font-weight: 650;
}
.values-section { background: var(--mint-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}
.value-card {
  padding: 32px;
  border: 1px solid rgba(7, 60, 71, .07);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
}
.value-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--teal);
  font-weight: 800;
}
.value-card h3 { margin: 28px 0 10px; font-size: 21px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; }
.about-cta {
  padding: 85px 0;
  background: var(--navy);
  color: white;
  text-align: center;
}
.about-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -2px;
}
.about-cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #b9cccf;
  font-size: 17px;
}
section[id] { scroll-margin-top: 95px; }
a:focus-visible { outline: 3px solid var(--teal); outline-offset: 5px; }
@media (max-width: 1000px) {
  .nav-links { gap: 16px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: 62px; }
  .hero-glow { width: 100%; height: auto; aspect-ratio: 1; }
  .scan-grid { gap: 45px; }
  .about-hero-grid { gap: 35px; }
  .story-grid { gap: 50px; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .step-line { display: none; }
}
@media (max-width: 760px) {
  .nav-inner { height: 70px; }
  .nav-links { display: none; }
  .nav-actions { gap: 14px; }
  .brand { font-size: 25px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 60px; gap: 10px; }
  .hero h1 { font-size: clamp(48px, 10vw, 72px); letter-spacing: -2.5px; }
  .hero-text { font-size: 17px; }
  .hero-visual { height: 550px; }
  .mascot { max-height: 400px; width: min(296px, 80%); }
  .hero-glow { max-width: 430px; }
  .card-doc { top: 70px; right: 0; }
  .card-service { bottom: 65px; left: 0; }
  .section { padding: 70px 0; }
  .section h2 { font-size: 38px; letter-spacing: -1.5px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { padding: 25px; }
  .scan-grid, .final-grid, .about-hero-grid, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { padding: 70px 0; }
  .about-portrait { width: min(80%, 390px); margin-inline: auto; }
  .story-kicker { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .scan-demo { min-height: 520px; }
  .dashboard-sidebar { flex-basis: 50px; padding: 20px 10px; }
  .dashboard-main { padding: 20px; }
  .dashboard-cards { gap: 10px; }
  .dash-card { padding: 12px; }
  .dashboard-content { grid-template-columns: 1fr; }
  .cta-mark { display: none; }
  .type-grid { gap: 10px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .container { width: calc(100% - 32px); }
  .login { display: none; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-visual { height: 480px; }
  .mascot { max-height: 360px; }
  .about-hero h1 { font-size: 48px; letter-spacing: -2px; }
  .about-lead { font-size: 17px; }
  .portrait-frame { padding: 6px; border-radius: 22px; }
  .founder-photo { border-radius: 16px; }
  .portrait-caption { padding-inline: 2px; gap: 10px; }
  .portrait-caption strong { font-size: 13px; }
  .floating-card { padding: 10px 12px; }
  .floating-card strong { font-size: 11px; }
  .feature-grid, .steps, .type-grid { grid-template-columns: 1fr; }
  .step { padding: 15px; }
  .feature-card { min-height: auto; }
  .dashboard-sidebar { display: none; }
  .dashboard-main { padding: 16px; }
  .dashboard-header strong { font-size: 19px; }
  .dash-card small { letter-spacing: 0; font-size: 8px; overflow-wrap: anywhere; }
  .dash-card strong { font-size: 24px; }
  .dash-card span { font-size: 10px; }
  .footer-links { gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
