:root {
  --ink: #18201d;
  --ink-soft: #52605a;
  --paper: #fbfaf5;
  --paper-deep: #f2efe5;
  --white: #ffffff;
  --forest: #214b3f;
  --forest-dark: #15362d;
  --orange: #e76f35;
  --orange-dark: #bd4d1f;
  --sun: #f5bf42;
  --line: rgba(24, 32, 29, 0.13);
  --shadow: 0 24px 70px rgba(23, 47, 39, 0.13);
  --shadow-soft: 0 14px 40px rgba(23, 47, 39, 0.09);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 5%, rgba(245, 191, 66, 0.18), transparent 28rem),
    radial-gradient(circle at 95% 22%, rgba(231, 111, 53, 0.12), transparent 25rem);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 245, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 47, 39, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid rgba(24, 32, 29, 0.08);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 47, 39, 0.12);
}

.nav-links,
.language-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

.language-links {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-links a {
  min-width: 38px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.language-links a:hover,
.language-links a[aria-current="page"] {
  color: var(--white);
  background: var(--forest);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: var(--forest);
  border: 1px solid rgba(33, 75, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(231, 111, 53, 0.13);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.3vw, 6rem);
  font-weight: 900;
}

h1 .accent {
  position: relative;
  display: inline;
  color: var(--orange-dark);
  background: linear-gradient(transparent 70%, rgba(245, 191, 66, 0.6) 0);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 13px 30px rgba(33, 75, 63, 0.22);
}

.button-primary:hover {
  background: var(--forest-dark);
  box-shadow: 0 16px 35px rgba(33, 75, 63, 0.28);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-note {
  display: flex;
  margin: 20px 0 0;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-note::before {
  margin-top: 0.52em;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: var(--forest);
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: grid;
  margin-top: 36px;
  place-items: center;
}

.hero-blob {
  position: absolute;
  inset: 4% -8% 0 5%;
  border-radius: 44% 56% 47% 53% / 54% 43% 57% 46%;
  background:
    linear-gradient(145deg, rgba(245, 191, 66, 0.94), rgba(231, 111, 53, 0.82));
  transform: rotate(-4deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(72%, 320px);
  aspect-ratio: 1 / 2;
  padding: 11px;
  border: 5px solid #161a18;
  border-radius: 42px;
  background: #161a18;
  box-shadow: 0 34px 90px rgba(20, 28, 25, 0.28);
  transform: rotate(3deg);
}

.phone::before {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 94px;
  height: 24px;
  content: "";
  border-radius: 999px;
  background: #161a18;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 31px;
  background: var(--paper);
}

.phone-image {
  width: 100%;
  height: 66%;
  flex: 0 0 66%;
  object-fit: cover;
  object-position: center 54%;
}

.phone-copy {
  min-height: 0;
  padding: 17px 18px 18px;
  flex: 1 1 auto;
}

.phone-kicker {
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-copy h2 {
  margin-bottom: 6px;
  font-size: 1.14rem;
}

.phone-copy p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.35;
}

.translation-pill {
  display: inline-flex;
  padding: 6px 10px;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  border-radius: 999px;
  background: rgba(33, 75, 63, 0.09);
  font-size: 0.68rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 205px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

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

.floating-card strong {
  margin-bottom: 2px;
  font-size: 0.84rem;
}

.floating-card span {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.floating-card-top {
  top: 14%;
  right: -2%;
}

.floating-card-bottom {
  bottom: 4%;
  left: -22%;
}

.proof {
  padding: 0 0 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.proof-item {
  padding: 25px 28px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.proof-item span {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.section {
  padding: 108px 0;
}

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

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 17px;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--white);
  border-radius: 14px;
  background: var(--forest);
  font-size: 0.85rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-number {
  color: var(--ink);
  background: var(--sun);
}

.feature-card:nth-child(3) .feature-number {
  background: var(--orange);
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}

.story-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
  font-weight: 900;
}

.story-intro > p {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.story-steps {
  display: grid;
  margin-top: 30px;
  gap: 13px;
}

.story-step {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.95rem;
  font-weight: 750;
}

.story-step span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest);
  border-radius: 50%;
  background: rgba(33, 75, 63, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.story-player {
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-scene {
  display: none;
}

.story-scene.is-active {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  min-height: 520px;
}

.story-image-wrap {
  min-height: 100%;
  background: var(--paper-deep);
}

.story-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-content {
  display: flex;
  padding: 34px;
  flex-direction: column;
  justify-content: center;
}

.story-progress {
  margin-bottom: 25px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-german {
  margin-bottom: 18px;
  font-size: clamp(1.38rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.story-translation {
  margin: 0 0 20px;
  padding: 13px 15px;
  color: var(--forest-dark);
  border-left: 3px solid var(--sun);
  border-radius: 0 10px 10px 0;
  background: rgba(245, 191, 66, 0.12);
}

.story-translation[hidden] {
  display: none;
}

.story-audio-control,
.story-translation-control {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.story-audio-control {
  margin-bottom: 18px;
}

.story-translation-control {
  margin-top: 2px;
}

.story-translation-control [hidden] {
  display: none;
}

.tool-button {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 12px;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  border: 1px solid rgba(33, 75, 63, 0.16);
  border-radius: 11px;
  background: rgba(33, 75, 63, 0.06);
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.tool-button:hover {
  color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow:
    -4px -4px 10px rgba(255, 255, 255, 0.88),
    4px 4px 10px rgba(174, 176, 185, 0.48),
    inset 0 -2px 0 rgba(74, 108, 110, 0.14);
}

.tool-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.story-nav {
  display: flex;
  padding: 15px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.story-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.story-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 32, 29, 0.2);
}

.story-dot.is-active {
  width: 23px;
  border-radius: 999px;
  background: var(--orange);
}

.story-arrow {
  width: 43px;
  height: 43px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.story-arrow:hover {
  color: var(--white);
  background: var(--forest);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.topic {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.topic::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  content: "";
  border-radius: 50%;
  background: rgba(245, 191, 66, 0.18);
}

.topic:nth-child(2n)::after {
  background: rgba(231, 111, 53, 0.12);
}

.topic:nth-child(3n)::after {
  background: rgba(33, 75, 63, 0.11);
}

.topic-icon {
  margin-bottom: 35px;
  font-size: 1.45rem;
}

.topic h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.topic p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(23, 47, 39, 0.05);
}

.faq-item summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 24px;
  content: "+";
  color: var(--orange-dark);
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -4px 22px 22px;
  color: var(--ink-soft);
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.download-card::before,
.download-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.download-card::before {
  top: -120px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(245, 191, 66, 0.18);
}

.download-card::after {
  right: 180px;
  bottom: -190px;
  width: 300px;
  height: 300px;
  background: rgba(231, 111, 53, 0.2);
}

.download-card-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.download-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 900;
}

.download-card p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.download-card .button-primary {
  color: var(--ink);
  background: var(--sun);
}

.download-card .button-primary:hover {
  background: #ffd364;
}

.download-card .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 58px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  padding: 8px 12px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.social-link:hover {
  border-color: rgba(33, 75, 63, 0.35);
  box-shadow: 0 8px 20px rgba(23, 47, 39, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .hero-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 650px;
    margin-top: 48px;
  }

  .hero-blob {
    inset: 2% 8% 0;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 24px;
  }

  .story-intro {
    text-align: center;
  }

  .story-intro > p {
    margin-inline: auto;
  }

  .story-steps {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

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

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    display: none;
    padding: 16px 14px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(23, 47, 39, 0.1);
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-menu .language-links {
    width: fit-content;
    margin-inline: auto;
  }

  .hero {
    padding: 54px 0 60px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone {
    width: min(72%, 290px);
  }

  .floating-card {
    max-width: 170px;
    padding: 11px 13px;
  }

  .floating-card-top {
    top: 10%;
    right: 0;
  }

  .floating-card-bottom {
    bottom: 1%;
    left: -4%;
  }

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

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

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

  .story-scene.is-active {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 330px;
    max-height: 440px;
  }

  .story-content {
    padding: 26px;
  }

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

  .topic {
    min-height: 150px;
  }

  .topic-icon {
    margin-bottom: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 470px) {
  .brand span {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .floating-card {
    display: none;
  }

  .phone {
    width: min(82%, 280px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Deutschi app-inspired neumorphic layer */
:root {
  --ink: #333333;
  --ink-soft: #62666b;
  --paper: #ebecf0;
  --paper-deep: #e1e2e8;
  --white: #f8f9fc;
  --forest: #4a6c6e;
  --forest-dark: #365355;
  --orange: #9a381d;
  --orange-dark: #78301d;
  --sun: #daa520;
  --line: rgba(89, 92, 98, 0.12);
  --shadow:
    -12px -12px 28px rgba(255, 255, 255, 0.92),
    12px 12px 28px rgba(174, 176, 185, 0.54);
  --shadow-soft:
    -7px -7px 16px rgba(255, 255, 255, 0.88),
    7px 7px 16px rgba(174, 176, 185, 0.48);
  --shadow-inset:
    inset -5px -5px 11px rgba(255, 255, 255, 0.82),
    inset 5px 5px 11px rgba(174, 176, 185, 0.42);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

body {
  background: var(--paper);
}

body::before {
  display: none;
}

.site-header {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(235, 236, 240, 0.94);
}

.site-header.is-scrolled {
  border-color: rgba(174, 176, 185, 0.24);
  box-shadow:
    0 7px 16px rgba(174, 176, 185, 0.28),
    0 -3px 10px rgba(255, 255, 255, 0.72);
}

.brand img,
.nav-toggle,
.language-links,
.button-secondary,
.story-arrow,
.social-link {
  border-color: rgba(255, 255, 255, 0.66);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.brand img {
  padding: 3px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
}

.nav-links a:hover {
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.language-links {
  padding: 5px;
}

.language-links a:hover,
.language-links a[aria-current="page"] {
  color: var(--forest-dark);
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.eyebrow {
  border: 0;
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.eyebrow::before {
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(218, 165, 32, 0.13);
}

h1 .accent {
  color: var(--forest);
  background: linear-gradient(transparent 73%, rgba(207, 187, 68, 0.55) 0);
}

.button {
  border-color: rgba(255, 255, 255, 0.7);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  color: var(--forest-dark);
  background: var(--paper);
  box-shadow:
    -7px -7px 16px rgba(255, 255, 255, 0.9),
    7px 7px 16px rgba(174, 176, 185, 0.52),
    inset 0 -3px 0 rgba(74, 108, 110, 0.16);
}

.button-primary:hover,
.button-secondary:hover {
  color: var(--orange-dark);
  background: var(--paper);
  box-shadow:
    -4px -4px 10px rgba(255, 255, 255, 0.88),
    4px 4px 10px rgba(174, 176, 185, 0.46);
}

.button:active,
.story-arrow:active,
.tool-button:active,
.social-link:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-inset);
}

.hero-blob {
  inset: 7% 0 4% 9%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.phone {
  border-color: #43443f;
  background: #43443f;
  box-shadow:
    -13px -13px 28px rgba(255, 255, 255, 0.72),
    18px 18px 36px rgba(150, 152, 160, 0.62);
  transform: rotate(3deg);
}

.phone-screen,
.phone-copy {
  background: var(--paper);
}

.phone-kicker {
  color: var(--orange);
}

.translation-pill {
  color: var(--forest-dark);
  border-color: rgba(255, 255, 255, 0.7);
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.tool-button {
  color: var(--forest-dark);
  border-color: rgba(255, 255, 255, 0.78);
  background: var(--paper);
  box-shadow:
    -6px -6px 14px rgba(255, 255, 255, 0.92),
    6px 6px 14px rgba(174, 176, 185, 0.52),
    inset 0 -3px 0 rgba(74, 108, 110, 0.15);
}

.tool-button.is-playing {
  color: var(--orange-dark);
  transform: translateY(1px);
  box-shadow: var(--shadow-inset);
}

.floating-card {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(235, 236, 240, 0.94);
  box-shadow: var(--shadow-soft);
}

.proof-grid,
.feature-card,
.story-player,
.topic,
.faq-item {
  border-color: rgba(255, 255, 255, 0.7);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.proof-item + .proof-item {
  border-color: rgba(174, 176, 185, 0.28);
}

.section-soft {
  background: var(--paper-deep);
  box-shadow:
    inset 0 14px 24px rgba(174, 176, 185, 0.22),
    inset 0 -14px 24px rgba(255, 255, 255, 0.48);
}

.feature-number {
  color: var(--paper);
  background: var(--forest);
  box-shadow:
    -4px -4px 10px rgba(255, 255, 255, 0.68),
    5px 5px 11px rgba(174, 176, 185, 0.48);
}

.feature-card:nth-child(2) .feature-number {
  color: var(--ink);
  background: var(--sun);
}

.feature-card:nth-child(3) .feature-number {
  background: var(--orange);
}

.story-image-wrap {
  background: var(--paper-deep);
}

.story-content,
.story-nav {
  background: var(--paper);
}

.story-translation {
  border-left-color: var(--sun);
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.story-arrow:hover {
  color: var(--forest-dark);
  background: var(--paper);
  box-shadow: var(--shadow-inset);
}

.story-dot {
  box-shadow:
    inset 2px 2px 4px rgba(174, 176, 185, 0.58),
    inset -2px -2px 4px rgba(255, 255, 255, 0.72);
}

.story-dot.is-active {
  background: var(--sun);
}

.topic::after {
  background: rgba(207, 187, 68, 0.18);
}

.topic:nth-child(2n)::after {
  background: rgba(154, 56, 29, 0.1);
}

.topic:nth-child(3n)::after {
  background: rgba(74, 108, 110, 0.12);
}

.faq-item[open] {
  box-shadow: var(--shadow-inset);
}

.download-card {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.download-card::before {
  background: rgba(207, 187, 68, 0.16);
}

.download-card::after {
  background: rgba(154, 56, 29, 0.09);
}

.download-card p {
  color: var(--ink-soft);
}

.download-card .button-primary {
  color: var(--forest-dark);
  background: var(--paper);
}

.download-card .button-primary:hover,
.download-card .button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--paper);
}

.footer-bottom {
  border-color: rgba(174, 176, 185, 0.28);
}

@media (max-width: 720px) {
  .nav-menu {
    border-color: rgba(255, 255, 255, 0.7);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
  }

  .hero-visual {
    margin-top: 32px;
  }
}
