:root {
  --accent: #22c7c9;
  --accent-dark: #11989a;
  --accent-soft: #eafafa;

  --text: #121a1c;
  --text-soft: #647074;

  --white: #ffffff;
  --soft: #f3f6f5;
  --border: #dfe6e4;

  --dark: #152224;

  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  line-height: 1.55;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: rgba(34, 199, 201, 0.25);
}

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

  margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;

  display: flex;
  align-items: center;

  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;

  gap: 11px;

  font-size: 19px;
  font-weight: 800;

  letter-spacing: -0.03em;
}

.brand-logo {
  width: 44px;
  height: 44px;

  object-fit: contain;

  flex-shrink: 0;
}

.navigation {
  margin-left: auto;

  display: flex;

  gap: 30px;
}

.navigation a {
  color: var(--text-soft);

  font-size: 14px;
  font-weight: 600;
}

.navigation a:hover {
  color: var(--text);
}

.header-cta {
  padding: 11px 17px;

  border: 1px solid var(--text);

  border-radius: 100px;

  font-size: 13px;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--text);
  color: var(--white);
}


/* =========================================================
   TYPOGRAFIE
   ========================================================= */

.eyebrow {
  margin: 0 0 18px;

  color: var(--accent-dark);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.eyebrow-light {
  color: #61dcde;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;

  max-width: 780px;

  font-size: clamp(
    58px,
    7vw,
    92px
  );

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 680;
}

h2 {
  margin: 0;

  font-size: clamp(
    42px,
    5vw,
    66px
  );

  line-height: 1.03;

  letter-spacing: -0.052em;

  font-weight: 650;
}

h3 {
  margin: 0;

  font-size: 25px;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

.simple-link {
  color: var(--accent-dark);

  font-weight: 750;
}

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

.large-copy {
  font-size: 23px !important;

  line-height: 1.45;

  color: var(--text) !important;

  font-weight: 560;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  overflow: hidden;

  padding: 105px 0 120px;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(360px, 0.88fr);

  gap: 90px;

  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  max-width: 680px;

  margin: 34px 0 0;

  font-size: 23px;

  line-height: 1.5;

  color: var(--text);
}

.hero-description {
  max-width: 650px;

  margin: 15px 0 0;

  font-size: 17px;

  color: var(--text-soft);
}

.hero-actions {
  margin-top: 36px;

  display: flex;

  align-items: center;

  gap: 26px;
}

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 23px;

  border-radius: 100px;

  font-weight: 750;
}

.button-primary {
  background: var(--accent);

  color: #073e40;
}

.button-primary:hover {
  background: #2bd0d2;
}

.hero-facts {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;

  gap: 12px 25px;

  color: var(--text-soft);

  font-size: 14px;
}

.hero-facts span::before {
  content: "✓";

  margin-right: 7px;

  color: var(--accent-dark);

  font-weight: 900;
}


/* =========================================================
   HERO MASCOT
   ========================================================= */

.hero-mascot-area {
  position: relative;

  min-height: 540px;

  display: flex;

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

.hero-mascot-background {
  position: absolute;

  width: 430px;
  height: 430px;

  background: var(--accent-soft);

  border-radius: 50%;
}

.hero-mascot-background::before {
  content: "";

  position: absolute;

  inset: 35px;

  border: 1px solid rgba(34, 199, 201, 0.28);

  border-radius: 50%;
}

.hero-mascot-background::after {
  content: "";

  position: absolute;

  inset: 75px;

  border: 1px solid rgba(34, 199, 201, 0.20);

  border-radius: 50%;
}

.hero-mascot {
  position: relative;

  z-index: 2;

  width: min(
    360px,
    88%
  );

  height: auto;

  filter:
    drop-shadow(
      0 30px 35px rgba(16, 37, 39, 0.15)
    );
}

.hero-mini-card {
  position: absolute;

  z-index: 3;

  min-width: 155px;

  padding: 15px 18px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow:
    0 14px 35px rgba(20, 44, 46, 0.10);
}

.hero-mini-card span {
  display: block;

  color: var(--text-soft);

  font-size: 11px;
}

.hero-mini-card strong {
  display: block;

  margin-top: 3px;

  font-size: 18px;
}

.hero-card-one {
  top: 80px;
  left: 0;
}

.hero-card-two {
  right: 0;
  bottom: 90px;
}


/* =========================================================
   ALLGEMEINE SEKTIONEN
   ========================================================= */

.section {
  padding: 125px 0;
}

.section-soft {
  background: var(--soft);
}

.headline-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(280px, 0.75fr);

  gap: 80px;

  align-items: end;
}

.headline-grid > p {
  margin: 0 0 6px;

  color: var(--text-soft);

  font-size: 18px;
}


/* =========================================================
   EMOJI-BADGES
   ========================================================= */

.emoji-badge,
.feature-icon {
  width: 62px;
  height: 62px;

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

  flex-shrink: 0;

  background: var(--accent-soft);

  border: 1px solid rgba(34, 199, 201, 0.22);

  border-radius: 18px;

  font-size: 29px;

  line-height: 1;

  box-shadow:
    0 7px 20px rgba(26, 79, 81, 0.05);
}

.emoji-badge {
  margin-bottom: 25px;
}

.emoji-badge-dark {
  background: rgba(255, 255, 255, 0.08);

  border:
    1px solid rgba(255, 255, 255, 0.14);

  box-shadow: none;
}


/* =========================================================
   PROBLEM-BEREICH
   ========================================================= */

.problem-grid {
  margin-top: 80px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid #cfd8d6;
}

.problem-grid article {
  padding: 40px 30px 0 0;
}

.problem-grid article + article {
  padding-left: 30px;

  border-left: 1px solid #cfd8d6;
}

.problem-grid h3 {
  margin-top: 0;
}

.problem-grid p {
  margin: 16px 0 0;

  color: var(--text-soft);

  font-size: 16px;
}


/* =========================================================
   FUNKTIONS-BEREICH
   ========================================================= */

.feature-row {
  padding: 70px 0;

  display: grid;

  grid-template-columns:
    70px
    minmax(0, 1fr)
    minmax(300px, 0.8fr);

  gap: 50px;

  align-items: center;

  border-bottom: 1px solid var(--border);
}

.feature-row:first-of-type {
  margin-top: 50px;
}

.feature-copy h3 {
  font-size: 33px;
}

.feature-copy p {
  max-width: 570px;

  margin: 18px 0 0;

  color: var(--text-soft);

  font-size: 17px;
}

.feature-visual {
  padding: 28px;

  background: var(--soft);

  border-radius: 20px;
}

.feature-visual span {
  display: block;

  color: var(--text-soft);

  font-size: 13px;
}

.feature-visual strong {
  display: block;

  margin-top: 5px;

  font-size: 27px;

  letter-spacing: -0.04em;
}

.feature-visual small {
  display: block;

  margin-top: 7px;

  color: var(--text-soft);
}

.payment-visual {
  display: grid;

  gap: 0;
}

.payment-visual > div {
  padding: 15px 0;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  border-bottom: 1px solid var(--border);
}

.payment-visual > div:last-child {
  border-bottom: 0;
}

.payment-visual span {
  font-size: 15px;
}

.payment-visual strong {
  margin: 0;

  font-size: 16px;
}

.progress-track {
  height: 8px;

  margin-top: 20px;

  overflow: hidden;

  background: #dbe4e3;

  border-radius: 100px;
}

.progress-fill {
  width: 39%;
  height: 100%;

  background: var(--accent);
}


/* =========================================================
   SO FUNKTIONIERT PENNYPINGUIN
   ========================================================= */

.section-dark {
  background: var(--dark);

  color: #ffffff;
}

.headline-grid-dark > p {
  color: rgba(255, 255, 255, 0.62);
}

.steps-grid {
  margin-top: 80px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}

.steps-grid article {
  min-height: 280px;

  padding: 34px;

  border-top:
    1px solid rgba(255, 255, 255, 0.20);

  border-left:
    1px solid rgba(255, 255, 255, 0.12);
}

.steps-grid article:first-child {
  border-left: 0;
}

.steps-grid h3 {
  margin-top: 0;

  font-size: 27px;
}

.steps-grid p {
  margin: 16px 0 0;

  color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   SPLIT SECTIONS
   ========================================================= */

.split-section,
.privacy-grid,
.app-store-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.9fr);

  gap: 100px;
}

.split-section p:not(.eyebrow),
.privacy-copy p,
.app-store-copy p {
  color: var(--text-soft);

  font-size: 17px;
}

.inline-note {
  margin-top: 30px;

  padding-top: 20px;

  border-top: 1px solid var(--border);

  color: var(--accent-dark);

  font-weight: 750;
}


/* =========================================================
   DATENSCHUTZ
   ========================================================= */

.privacy-section {
  background: var(--accent-soft);
}

.privacy-copy {
  padding-top: 12px;
}

.privacy-copy ul {
  margin: 30px 0;

  padding: 0;

  list-style: none;

  display: grid;

  gap: 12px;
}

.privacy-copy li {
  position: relative;

  padding-left: 29px;

  font-weight: 650;
}

.privacy-copy li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--accent-dark);

  font-weight: 900;
}

.privacy-mascot {
  width: 180px;

  margin-top: 40px;

  filter:
    drop-shadow(
      0 20px 25px rgba(16, 37, 39, 0.10)
    );
}


/* =========================================================
   APP STORE
   ========================================================= */

.app-store-section {
  padding-bottom: 140px;
}

.store-button-placeholder {
  display: inline-flex;

  flex-direction: column;

  margin-top: 25px;

  padding: 12px 24px;

  background: #111111;

  color: #ffffff;

  border-radius: 12px;
}

.store-button-placeholder small {
  font-size: 10px;
}

.store-button-placeholder strong {
  font-size: 22px;

  line-height: 1.1;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 75px 0 30px;

  background: var(--dark);

  color: #ffffff;
}

.footer-grid {
  display: flex;

  justify-content: space-between;

  gap: 60px;
}

.footer-brand {
  color: #ffffff;
}

.footer-logo {
  width: 55px;
  height: 55px;
}

.footer-grid p {
  max-width: 430px;

  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;

  flex-wrap: wrap;

  gap: 28px;

  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);

  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;

  padding-top: 25px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.40);

  font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .navigation {
    display: none;
  }

  .hero-grid,
  .headline-grid,
  .split-section,
  .privacy-grid,
  .app-store-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-mascot-area {
    min-height: 490px;

    max-width: 620px;
  }

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

  .problem-grid article,
  .problem-grid article + article {
    padding: 30px 0;

    border-left: 0;

    border-bottom:
      1px solid #cfd8d6;
  }

  .feature-row {
    grid-template-columns:
      62px
      1fr;

    gap: 30px;
  }

  .feature-visual {
    grid-column: 2;
  }

  .steps-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .steps-grid article:nth-child(3) {
    border-left: 0;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .container {
    width: min(
      calc(100% - 30px),
      var(--container)
    );
  }

  .header-inner {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 65px 0 75px;
  }

  h1 {
    font-size: clamp(
      48px,
      15vw,
      63px
    );
  }

  h2 {
    font-size: 40px;
  }

  .hero-lead {
    margin-top: 27px;

    font-size: 19px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;

    flex-direction: column;

    gap: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .simple-link {
    text-align: center;
  }

  .hero-facts {
    display: grid;

    gap: 7px;
  }

  .hero-mascot-area {
    min-height: 390px;
  }

  .hero-mascot-background {
    width: 320px;
    height: 320px;
  }

  .hero-mascot {
    width: 270px;
  }

  .hero-mini-card {
    min-width: 125px;

    padding: 11px 13px;
  }

  .hero-mini-card strong {
    font-size: 14px;
  }

  .hero-card-one {
    top: 35px;
    left: 0;
  }

  .hero-card-two {
    right: 0;
    bottom: 40px;
  }

  .section {
    padding: 85px 0;
  }

  .headline-grid {
    gap: 28px;
  }

  .headline-grid > p {
    font-size: 16px;
  }

  .problem-grid {
    margin-top: 50px;
  }

  .emoji-badge,
  .feature-icon {
    width: 56px;
    height: 56px;

    border-radius: 16px;

    font-size: 26px;
  }

  .feature-row {
    padding: 50px 0;

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .feature-icon {
    grid-column: 1;
  }

  .feature-visual {
    grid-column: 1;
  }

  .feature-copy h3 {
    font-size: 29px;
  }

  .steps-grid {
    margin-top: 50px;

    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .steps-grid article:nth-child(3) {
    min-height: unset;

    padding: 28px 0;

    border-left: 0;

    border-top:
      1px solid rgba(255, 255, 255, 0.18);
  }

  .steps-grid h3 {
    margin-top: 0;
  }

  .split-section,
  .privacy-grid,
  .app-store-grid {
    gap: 35px;
  }

  .privacy-mascot {
    width: 130px;

    margin-top: 25px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;

    gap: 13px;
  }
}
