/* ============================================================
   planoid – Redesign v3 "Editorial"
   CI Farben: #242424 #8E847A #B5B2AF #D4CFC9 #F4F4F4
   Schriften: Gill Sans (Text), Fraunces (Überschriften)
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Italic-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

/* Brand Handschrift */
@font-face {
  font-family: "Miluja Notes";
  src: url("fonts/milujanotes-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  color-scheme: light;
  --ink: #242424;
  --taupe: #8e847a;
  --stone: #b5b2af;
  --sand: #d4cfc9;
  --paper: #f4f4f4;
  --white: #ffffff;

  --ink-70: rgba(36, 36, 36, 0.7);
  --ink-55: rgba(36, 36, 36, 0.55);
  --hairline: rgba(36, 36, 36, 0.14);
  --hairline-soft: rgba(36, 36, 36, 0.09);
  --paper-hairline: rgba(244, 244, 244, 0.2);

  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  --radius-s: 2px;
  --radius-m: 10px;
  --radius-l: 18px;

  --shadow-soft: 0 18px 44px rgba(36, 36, 36, 0.09);
  --shadow-lift: 0 26px 60px rgba(36, 36, 36, 0.13);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  --section-pad: clamp(5rem, 10vw, 8.5rem);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Feines Papierkorn wie in der App, liegt unaufdringlich über allen Flächen */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
}

::selection {
  background: var(--sand);
  color: var(--ink);
}

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

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

ul {
  list-style: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 480;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
}

/* Eyebrow-Labels: Kopfleisten wie in der App */
.v2-hero__eyebrow,
.v2-planner-flow__label,
.v2-block-library__label,
.v2-module-section__label,
.v2-design-section__label,
.v2-webapp-note__label,
.v2-announce__label,
.v2-audience__label,
.v2-faq__label,
.v2-testimonials__label {
  display: block;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(212, 207, 201, 0.5);
  padding: 0.5rem 0.9rem 0.4rem;
  border-bottom: 2px solid var(--ink);
  border-radius: 3px 3px 0 0;
}

/* Varianten auf dunklem Grund */
.v2-planner-flow__label,
.v2-webapp-note__label,
.v2-announce__label {
  color: var(--paper);
  background: rgba(244, 244, 244, 0.12);
  border-bottom-color: var(--sand);
}

/* Washi-Tape hinter den Eyebrow-Labels */
.v2-block-library__label,
.v2-module-section__label,
.v2-design-section__label,
.v2-audience__label,
.v2-faq__label,
.v2-testimonials__label {
  color: var(--ink);
  font-size: 0.85rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-bottom: none;
  border-radius: 0;
  padding: 1.4rem 4.2rem 2.25rem 3rem;
}

.v2-block-library__label {
  background-image: url("images/washi/washi-tape-10.png");
  color: var(--white);
}

.v2-module-section__label {
  background-image: url("images/washi/washi-tape-06.png");
}

.v2-design-section__label {
  background-image: url("images/washi/washi-tape-14.png");
  color: var(--white);
}

.v2-testimonials__label {
  background-image: url("images/washi/washi-tape-01.png");
}

.v2-audience__label {
  background-image: url("images/washi/washi-tape-08.png");
}

.v2-faq__label {
  background-image: url("images/washi/washi-tape-05.png");
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.button:hover {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--white);
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}

.button.ghost:hover {
  background: var(--white);
  border-color: var(--taupe);
  color: var(--ink);
  transform: translateY(-2px);
}

.sticky-waitlist-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  border: 1px solid rgba(244, 244, 244, 0.3);
  border-right: none;
  border-radius: var(--radius-s) 0 0 var(--radius-s);
  box-shadow: 0 10px 26px rgba(36, 36, 36, 0.24);
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.sticky-waitlist-button:hover {
  background: var(--taupe);
  color: var(--white);
  transform: translateY(-50%) rotate(180deg) translateX(2px);
}

/* ===== HERO ===== */
.v2-hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--paper);
  overflow: hidden;
}

/* Wortmarke links, Sprachwahl rechts: beide auf gleicher Hoehe im Hero-Rand.
   min-height gleicht die Hoehe der Sprach-Pille aus, damit sie fluchten. */
.v2-hero__brand {
  position: absolute;
  top: 1.6rem;
  left: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 2.25rem;
}

.v2-hero__brand img {
  display: block;
  width: auto;
  height: clamp(1.5rem, 2.4vw, 1.95rem);
}

.v2-hero__lang {
  position: absolute;
  top: 1.6rem;
  right: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.45rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
}

.v2-hero__lang .lang-active {
  color: var(--ink);
}

.v2-hero__lang .lang-sep {
  color: var(--stone);
  user-select: none;
}

.v2-hero__lang .lang-link {
  color: var(--taupe);
  transition: color 0.25s ease;
}

.v2-hero__lang .lang-link:hover {
  color: var(--ink);
}

.v2-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: center;
}

.v2-hero__content {
  max-width: 720px;
}

.v2-hero__eyebrow {
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.15s forwards;
}

.v2-hero__title {
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  line-height: 1.02;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.v2-hero__title em {
  display: block;
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: inherit;
}

.v2-hero__title-line {
  display: block;
  white-space: nowrap;
}

.v2-hero__title-sub {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  font-weight: 460;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--ink-70);
}

.v2-hero__list {
  display: grid;
  gap: 0;
  margin-bottom: 2.4rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.45s forwards;
}

.v2-hero__list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.72rem 0;
  color: var(--ink-70);
  font-size: 1.02rem;
  border-bottom: 1px solid var(--hairline-soft);
}

.v2-hero__list li:first-child {
  border-top: 1px solid var(--hairline-soft);
}

.v2-hero__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  background-image: url("images/brand/planoid-signet.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(0.18rem);
}

.v2-hero__launch {
  max-width: 620px;
  margin-bottom: 1.8rem;
  color: var(--ink-70);
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.55s forwards;
}

.v2-hero__launch strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}

/* Hero Media: einzelner App-Screenshot */
.v2-hero__media {
  position: relative;
  display: grid;
  place-items: center end;
  min-height: clamp(420px, 52vw, 740px);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s var(--ease-out) 0.5s forwards;
}

.v2-hero__photo {
  position: relative;
  z-index: 1;
  width: min(174%, 1120px);
  margin-right: clamp(-25rem, -30vw, -12rem);
  overflow: visible;
}

.v2-hero__photo::after {
  content: none;
}

.v2-hero__photo img {
  width: 100%;
  height: auto;
  filter: saturate(0.96) drop-shadow(0 28px 42px rgba(36, 36, 36, 0.22));
  transform: rotate(-1.5deg);
  transform-origin: center;
  animation: heroDrift 14s var(--ease-out) forwards;
}

/* versetzter Zier-Rahmen hinter dem Screenshot */
.v2-hero__media::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -14vw;
  width: min(132%, 920px);
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(90deg, rgba(181, 178, 175, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(181, 178, 175, 0.16) 1px, transparent 1px),
    rgba(212, 207, 201, 0.34);
  background-size: 26px 26px;
  border-radius: var(--radius-l);
  transform: translateY(-50%) rotate(1.5deg);
  pointer-events: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  to {
    transform: rotate(0deg) translateY(-4px);
  }
}

/* ===== FEATURES ===== */
.v2-features {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--hairline-soft);
}

.v2-features__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
  max-width: 1080px;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.v2-features__header::before {
  content: "Produkt";
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background-image: url("images/washi/washi-tape-04.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 1.4rem 4.2rem 2.25rem 3rem;
}

/* Das Etikett steht als CSS-Text im gemeinsamen Stylesheet und braucht deshalb
   eine eigene Uebersetzung fuer die englische Seite. */
html:lang(en) .v2-features__header::before {
  content: "Product";
}

.v2-features__header h2 {
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 1.05;
}

.v2-features__header p {
  color: var(--ink-70);
  font-size: 1.06rem;
  line-height: 1.75;
  padding-bottom: 0.3rem;
}

/* ===== PLANUNGSANSICHTEN: Screenshot + Text, abwechselnd links/rechts ===== */
.v2-planviews {
  margin-top: clamp(4.5rem, 9vw, 7rem);
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 6vw, 5rem);
}

.v2-planview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3.75rem);
  align-items: center;
}

/* Jede zweite Zeile: Screenshot nach rechts, Text nach links.
   Spalten spiegeln, damit der Screenshot immer die breitere Spalte bekommt. */
.v2-planview:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.v2-planview:nth-child(even) .v2-planview__media {
  order: 2;
}

.v2-planview__media {
  margin: 0;
}

/* Screenshots stehen frei; der Schatten folgt der freigestellten Tablet-Form */
.v2-planview__media img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.94) drop-shadow(0 14px 26px rgba(36, 36, 36, 0.15));
}

.v2-planview__copy {
  max-width: 30rem;
}

.v2-planview__name {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

.v2-planview__copy p {
  color: var(--ink-70);
  font-size: 1.03rem;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .v2-planview,
  .v2-planview:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .v2-planview:nth-child(even) .v2-planview__media {
    order: 0;
  }

  .v2-planview__copy {
    max-width: none;
  }
}

/* Feature-Karten */
.v2-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.v2-feature-card {
  background-color: #f8f8f8;
  background-image: url("images/paper-texture.webp");
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 18px;
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.18), 0 3px 7px rgba(36, 36, 36, 0.12);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.v2-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-feature-card:nth-child(2) { transition-delay: 0.08s; }
.v2-feature-card:nth-child(3) { transition-delay: 0.16s; }
.v2-feature-card:nth-child(4) { transition-delay: 0.24s; }

.v2-feature-card:hover {
  box-shadow: 0 15px 32px rgba(36, 36, 36, 0.22), 0 5px 12px rgba(36, 36, 36, 0.13);
  transform: translateY(-4px);
  transition-delay: 0s;
}

.v2-feature-card__icon {
  align-self: center;
  display: block;
  margin-bottom: 1.2rem;
  color: var(--taupe);
}

.v2-feature-card__icon svg {
  width: 30px;
  height: 30px;
}

.v2-feature-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.6rem;
}

.v2-feature-card p {
  color: var(--ink-70);
  line-height: 1.68;
  font-size: 0.95rem;
}

/* ===== WEBAPP NOTE ===== */
.v2-webapp-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1.28fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  margin-top: clamp(3.2rem, 7vw, 5rem);
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--taupe);
  color: var(--paper);
  border-radius: var(--radius-l);
}

.v2-webapp-note__label {
  margin-bottom: 1.3rem;
}

.v2-webapp-note__header h3 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.v2-webapp-note__copy {
  display: grid;
  gap: 1rem;
}

.v2-webapp-note__copy p {
  color: rgba(244, 244, 244, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== PLANNER FLOW (dunkles Panel) ===== */
.v2-planner-flow {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: clamp(2.2rem, 5vw, 4.2rem);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-l);
}

.v2-planner-flow__label {
  margin-bottom: 1.3rem;
}

.v2-planner-flow__intro h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  color: var(--paper);
  margin-bottom: 1.1rem;
}

.v2-planner-flow__intro p:not(.v2-planner-flow__label) {
  color: rgba(244, 244, 244, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.v2-planner-flow__list {
  display: grid;
  border-top: 1px solid var(--paper-hairline);
}

.v2-planner-flow__item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--paper-hairline);
}

.v2-planner-flow__number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--sand);
  line-height: 1;
}

.v2-planner-flow__item h4 {
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.v2-planner-flow__item p {
  color: rgba(244, 244, 244, 0.68);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Rahmentext "zwei Seiten des Alltags" zwischen Saeule 04 und 05 */
.v2-planner-flow__bridge {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--paper-hairline);
}

.v2-planner-flow__bridge p {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--sand);
}

@media (min-width: 960px) {
  .v2-planner-flow__intro {
    position: sticky;
    top: 2.5rem;
    align-self: start;
  }
}

/* ===== BLOCK LIBRARY ===== */
.v2-block-library {
  margin-top: clamp(4.5rem, 9vw, 7rem);
}

.v2-block-library__header {
  max-width: 780px;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.v2-block-library__label {
  margin-bottom: 1.3rem;
}

.v2-block-library__header h3 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.v2-block-library__header p:not(.v2-block-library__label) {
  color: var(--ink-70);
  font-size: 1.04rem;
  line-height: 1.75;
}

.v2-block-library__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Bausteinkarten im Widget Stil der App: Kopfleiste plus Inhalt */
.v2-block-card {
  background: var(--white);
  overflow: hidden;
  padding: 0 0 1.4rem;
  min-height: 185px;
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.18), 0 3px 7px rgba(36, 36, 36, 0.12);
  transition:
    background 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.v2-block-card:hover {
  background: var(--paper);
  box-shadow: 0 15px 32px rgba(36, 36, 36, 0.22), 0 5px 12px rgba(36, 36, 36, 0.13);
  transform: translateY(-2px);
}

.v2-block-card--featured {
  grid-column: span 2;
  background: linear-gradient(140deg, var(--paper), rgba(212, 207, 201, 0.5));
}

.v2-block-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(212, 207, 201, 0.4);
  border-bottom: 2px solid var(--ink);
  padding: 0.85rem 1.4rem 0.7rem;
  margin-bottom: 0.35rem;
  transition: background 0.4s var(--ease-out);
}

.v2-block-card:hover h4 {
  background: rgba(212, 207, 201, 0.65);
}

.v2-block-card p {
  color: var(--ink-70);
  font-size: 0.93rem;
  line-height: 1.68;
  padding: 0 1.4rem;
  margin-top: 0.85rem;
}

/* ===== MODULE ===== */
.v2-module-section {
  margin-top: clamp(4.5rem, 9vw, 7rem);
  padding: clamp(2.2rem, 5vw, 4.2rem);
  background: var(--paper);
  border-radius: var(--radius-l);
}

.v2-module-section__header {
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.v2-module-section__label {
  margin-bottom: 1.3rem;
}

.v2-module-section__header h3 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.v2-module-section__header p:not(.v2-module-section__label) {
  color: var(--ink-70);
  font-size: 1.04rem;
  line-height: 1.75;
}

.v2-module-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  counter-reset: module;
}

.v2-module-card {
  counter-increment: module;
  background-color: #f8f8f8;
  background-image: url("images/paper-texture.webp");
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 18px;
  padding: 1.8rem 1.7rem 1.7rem;
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.18), 0 3px 7px rgba(36, 36, 36, 0.12);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.v2-module-card:hover {
  box-shadow: 0 15px 32px rgba(36, 36, 36, 0.22), 0 5px 12px rgba(36, 36, 36, 0.13);
  transform: translateY(-4px);
}

.v2-module-card::before {
  content: counter(module, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--taupe);
  margin-bottom: 0.9rem;
}

.v2-module-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.v2-module-card p {
  color: var(--ink-70);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== DESIGN SECTION ===== */
.v2-design-section {
  margin-top: clamp(4.5rem, 9vw, 7rem);
}

.v2-design-section__header {
  max-width: 780px;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.v2-design-section__label {
  margin-bottom: 1.3rem;
}

.v2-design-section__header h3 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.v2-design-section__header p:not(.v2-design-section__label) {
  color: var(--ink-70);
  font-size: 1.04rem;
  line-height: 1.75;
}

.v2-design-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.v2-design-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.18), 0 3px 7px rgba(36, 36, 36, 0.12);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.v2-design-card:hover {
  box-shadow: 0 15px 32px rgba(36, 36, 36, 0.22), 0 5px 12px rgba(36, 36, 36, 0.13);
  transform: translateY(-4px);
}

.v2-design-card__visual {
  min-height: 220px;
  padding: 1.6rem;
  border-bottom: 1px solid var(--hairline-soft);
  position: relative;
  display: grid;
  place-items: center;
}

.v2-design-card--themes .v2-design-card__visual {
  background:
    linear-gradient(90deg, rgba(181, 178, 175, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(181, 178, 175, 0.16) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
}

.v2-design-card--stickers .v2-design-card__visual {
  background: linear-gradient(140deg, rgba(212, 207, 201, 0.55), var(--paper));
}

/* Die Fotos (Farbdesigns, Sticker) sitzen auf dem Kartenhintergrund.
   height: auto ist noetig, weil die globale img-Regel nur max-width begrenzt
   und die Hoehe sonst aus dem HTML-Attribut uebernommen wird (verzerrt). */
.v2-design-card__visual img {
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

.v2-design-card__copy {
  padding: 1.6rem 1.7rem 1.8rem;
}

.v2-design-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.v2-design-card p {
  color: var(--ink-70);
  font-size: 0.95rem;
  line-height: 1.7;
}

.v2-design-card p + p {
  margin-top: 0.85rem;
}

/* ===== ANNOUNCEMENTS ===== */
.v2-announce {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.v2-announce::before {
  content: "\201E";
  position: absolute;
  top: -0.12em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(16rem, 34vw, 26rem);
  line-height: 1;
  color: rgba(142, 132, 122, 0.14);
  pointer-events: none;
}

.v2-announce__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.v2-announce__label {
  margin: 0 auto 2.6rem;
}

.v2-announce__viewport {
  display: grid;
  align-items: center;
}

.v2-announce__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  pointer-events: none;
  visibility: hidden;
}

.v2-announce__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.v2-announce__wish {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.6;
  color: var(--sand);
  margin-bottom: 1.4rem;
  max-width: 760px;
}

.v2-announce__answer {
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: rgba(244, 244, 244, 0.75);
  max-width: 560px;
}

.v2-announce__answer::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1px;
  background: var(--taupe);
  margin: 0 auto 1.1rem;
}

/* Kompakte Variante ohne Karussell und ohne Anfuehrungszeichen-Deko */
.v2-announce--plain::before {
  content: none;
}

.v2-announce__list {
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.v2-announce__list li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 244, 244, 0.85);
}

.v2-announce__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1px;
  background: var(--taupe);
  transform: translateY(-0.3em);
}

.v2-announce__more {
  margin-top: 2.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(244, 244, 244, 0.65);
}

.v2-announce__more a {
  color: var(--sand);
}

/* ===== TESTIMONIALS ===== */
.v2-testimonials {
  padding: var(--section-pad) 0 clamp(2rem, 4vw, 3rem);
  background: var(--paper);
}

.v2-testimonials__header {
  max-width: 760px;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.v2-testimonials__label {
  margin-bottom: 1.3rem;
}

.v2-testimonials__header h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  margin-bottom: 1rem;
}

.v2-testimonials__header p:not(.v2-testimonials__label) {
  color: var(--ink-70);
  font-size: 1.04rem;
  line-height: 1.75;
}

.v2-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.v2-testimonial-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  background-color: #f8f8f8;
  background-image: url("images/paper-texture.webp");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 4.2rem 1.45rem 1.55rem;
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.18), 0 3px 7px rgba(36, 36, 36, 0.12);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.v2-testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.55rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(142, 132, 122, 0.24);
}

.v2-testimonial-card::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 18px;
  width: 50px;
  height: 50px;
  background: url("images/paperclip-heart.png") no-repeat center / contain;
  transform: rotate(9deg);
  pointer-events: none;
}

.v2-testimonial-card:hover {
  box-shadow: 0 15px 32px rgba(36, 36, 36, 0.22), 0 5px 12px rgba(36, 36, 36, 0.13);
  transform: translateY(-4px);
}

.v2-testimonial-card p {
  color: var(--ink);
  font-family: "Miluja Notes", var(--font-display), serif;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.6;
}

.v2-testimonial-card:nth-child(1),
.v2-testimonial-card:nth-child(4) {
  background-position: right center;
}

/* ===== VISION ===== */
.v2-vision {
  padding: var(--section-pad) 0;
  background: var(--paper);
}

.v2-testimonials + .v2-vision {
  padding-top: clamp(1rem, 2.5vw, 2rem);
}

.v2-vision:has(+ .v2-newsletter) {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.v2-vision__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.v2-vision__media {
  position: relative;
  justify-self: center;
  width: min(100%, 270px);
}

.v2-vision__media::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-l);
  pointer-events: none;
}

.v2-vision__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-l);
  background: linear-gradient(165deg, #ece8e3, var(--sand));
  filter: saturate(0.92);
}

.v2-vision__copy h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  margin-bottom: 1.4rem;
}

.v2-vision__copy h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--taupe);
  margin-top: 1.2rem;
}

.v2-vision__copy p {
  line-height: 1.8;
  color: var(--ink-70);
  margin-bottom: 1.1rem;
  font-size: 1.03rem;
  max-width: 62ch;
}

.v2-vision__quote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--ink);
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
  max-width: 56ch;
}

/* ===== WARTELISTE =====
   Eigenes Formular, keine Fremdscripts. Der Proof-of-Work laeuft in
   js/warteliste.js, abgesendet wird an form/warteliste-submit.php. */
.v2-waitlist {
  padding: var(--section-pad) 0 clamp(2rem, 4vw, 3rem);
  background: var(--paper);
}

.v2-waitlist__inner {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}

.v2-waitlist__header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.v2-waitlist__title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.v2-waitlist__teaser {
  color: var(--ink-70);
  line-height: 1.75;
  margin: 1.1rem auto 0;
  max-width: 54ch;
  font-size: 1rem;
}

/* --- Felder --- */
.waitlist-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.waitlist-field {
  margin-bottom: 1.25rem;
}

.waitlist-form__row .waitlist-field {
  margin-bottom: 0;
}

.waitlist-form__row + .waitlist-field {
  margin-top: 1.25rem;
}

.waitlist-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.waitlist-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-s);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.waitlist-field input::placeholder {
  color: var(--stone);
}

.waitlist-field input:focus {
  border-color: var(--taupe);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(142, 132, 122, 0.22);
  outline: none;
}

.waitlist-field input:user-invalid {
  border-color: #c0504d;
  background: #fdf6f5;
}

/* Honeypot: aus dem Sichtfeld geschoben statt display:none, damit auch
   Bots ihn im DOM finden und ausfuellen. */
.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Hinweis, Button, Rechtstexte --- */
.v2-waitlist__note {
  margin-top: 1.35rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border-left: 2px solid var(--taupe);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-70);
}

.v2-waitlist__submit {
  margin: 1.75rem 0 0.5rem;
}

.v2-waitlist__submit .button {
  width: 100%;
}

.v2-waitlist__submit .button:disabled {
  cursor: progress;
  opacity: 0.75;
  transform: none;
}

.waitlist-form.is-busy .waitlist-field input {
  opacity: 0.6;
}

.v2-waitlist__legal {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-55);
}

.v2-waitlist__legal a {
  color: var(--taupe);
  text-decoration: underline;
}

/* --- Rueckmeldung --- */
.waitlist-status {
  display: none;
}

.waitlist-status.is-success,
.waitlist-status.is-error {
  display: block;
  margin-bottom: 1.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid;
  border-radius: var(--radius-s);
  font-size: 0.95rem;
  line-height: 1.5;
}

.waitlist-status.is-success {
  color: #085229;
  background: #e7faf0;
  border-color: #13ce66;
}

.waitlist-status.is-error {
  color: #661d1d;
  background: #ffeded;
  border-color: #ff4949;
}

@media (max-width: 640px) {
  .waitlist-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .waitlist-form__row .waitlist-field {
    margin-bottom: 1.25rem;
  }
}

/* ===== NEWSLETTER ===== */
.v2-newsletter {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--paper), var(--sand));
}

.v2-vision + .v2-newsletter,
.v2-waitlist + .v2-newsletter {
  padding-top: clamp(1rem, 2.5vw, 2rem);
}

.v2-newsletter__inner {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}

.v2-newsletter__header {
  text-align: center;
  margin-bottom: 1rem;
}

.v2-newsletter__header h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
}


.v2-newsletter__teaser {
  text-align: center;
  color: var(--ink-70);
  line-height: 1.75;
  margin: 0 auto 2rem;
  max-width: 58ch;
  font-size: 1rem;
}

/* ===== BESTAETIGUNGSSEITE (warteliste-bestaetigt.html, newsletter-bestaetigt.html) ===== */
.v2-confirm {
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(180deg, var(--paper), var(--sand));
}

.v2-confirm__brand {
  display: block;
  width: fit-content;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.v2-confirm__brand img {
  width: auto;
  height: clamp(1.5rem, 2.4vw, 1.95rem);
}

.v2-confirm__card {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
}

.v2-confirm__mark {
  color: var(--taupe);
  margin: 0 auto 1.75rem;
  width: 3.5rem;
  height: 3.5rem;
}

.v2-confirm__mark svg {
  width: 100%;
  height: 100%;
}

.v2-confirm__card h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.v2-confirm__lead {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
}

.v2-confirm__text {
  margin: 1.1rem auto 0;
  max-width: 46ch;
  line-height: 1.8;
  color: var(--ink-70);
  font-size: 1rem;
}

.v2-confirm__actions {
  margin-top: 2.25rem;
}

.v2-confirm__contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-soft);
  font-size: 0.85rem;
  color: var(--ink-55);
}

.v2-confirm__contact a {
  color: var(--taupe);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
/* Schmale Leiste, die immer sichtbar am unteren Rand klebt. Der Platzhalter
   dafuer ist das padding-bottom am body (mehr auf schmalen Bildschirmen, weil
   die Zeile dort umbricht). */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

body {
  padding-bottom: 3rem;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 5.5rem;
  }
}

.footer-bar {
  padding: 0.55rem 0;
}

.footer-bar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.footer-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.site-footer a {
  color: var(--paper);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-footer a:hover {
  color: var(--sand);
  border-color: var(--sand);
}

/* ===== TOAST ===== */
.form-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: min(92vw, 440px);
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-m);
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow-lift);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-toast.is-error {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--stone);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FÜR WEN (AUDIENCE) ===== */
.v2-audience {
  padding: var(--section-pad) 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
}

.v2-audience__header {
  max-width: 780px;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.v2-audience__label {
  margin-bottom: 1.3rem;
}

.v2-audience__header h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.v2-audience__header p {
  color: var(--ink-70);
  font-size: 1.06rem;
  line-height: 1.75;
}

.v2-audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.v2-audience-card {
  background-color: #f8f8f8;
  background-image: url("images/paper-texture.webp");
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 18px;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.18), 0 3px 7px rgba(36, 36, 36, 0.12);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.v2-audience-card:hover {
  box-shadow: 0 15px 32px rgba(36, 36, 36, 0.22), 0 5px 12px rgba(36, 36, 36, 0.13);
  transform: translateY(-4px);
}

.v2-audience-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.v2-audience-card p {
  color: var(--ink-70);
  font-size: 0.95rem;
  line-height: 1.7;
}

.v2-audience__note {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 820px;
  color: var(--ink-55);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

/* ===== WARUM WIR PLANEN ===== */
.v2-why {
  padding: var(--section-pad) 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
}

.v2-why__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.v2-why__label {
  display: block;
  width: fit-content;
  margin: 0 auto 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background-image: url("images/washi/washi-tape-03.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 1.4rem 4.2rem 2.25rem 3rem;
}

.v2-why__inner h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 1.6rem;
}

.v2-why__inner p:not(.v2-why__label) {
  color: var(--ink-70);
  font-size: 1.06rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.v2-why__inner p.v2-why__closing {
  margin-top: 1.8rem;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--ink);
}

/* ===== FAQ ===== */
.v2-faq {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--hairline-soft);
}

.v2-faq__header {
  max-width: 780px;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.v2-faq__label {
  margin-bottom: 1.3rem;
}

.v2-faq__header h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
}

.v2-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 820px;
}

.v2-faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.v2-faq-item[open] {
  border-color: var(--stone);
  box-shadow: 0 9px 22px rgba(36, 36, 36, 0.08), 0 3px 7px rgba(36, 36, 36, 0.05);
}

/* Ganze Kopfzeile klickbar; nativer Marker entfernt, eigener Chevron via ::after */
.v2-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s var(--ease-out);
}

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

.v2-faq-item summary:hover {
  background: var(--paper);
}

.v2-faq-item summary:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: -2px;
}

.v2-faq-item summary h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.v2-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 0.25rem;
  border-right: 2px solid var(--taupe);
  border-bottom: 2px solid var(--taupe);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s var(--ease-out);
}

.v2-faq-item[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.v2-faq-item__answer {
  padding: 0 1.5rem 1.4rem;
}

.v2-faq-item__answer ul {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.v2-faq-item__answer li,
.v2-faq-item__answer p {
  color: var(--ink-70);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* Antworten in Satzform: Abstand zwischen Absaetzen (globaler Reset setzt margin: 0) */
.v2-faq-item__answer p + p {
  margin-top: 0.6rem;
}

/* ===== RESPONSIVE ===== */

/* Hero stapelt erst spaet: Text linksbuendig, Screenshot buendig darunter,
   laeuft rechts aus dem Viewport statt zentriert im Weissraum zu schweben */
@media (max-width: 960px) {
  .v2-hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.2rem, 4.5vw, 3.2rem);
  }

  .v2-hero__media {
    min-width: 0;
    min-height: 0;
    margin: 0 calc(50% - 50vw) 0 0;
    place-items: center start;
  }

  .v2-hero__photo {
    width: calc(100% + clamp(1.5rem, 4vw, 4rem));
    margin: 0;
  }

  .v2-hero__media::before {
    top: 50%;
    right: auto;
    left: 0;
    width: min(100%, 880px);
    transform: translateY(-50%) rotate(1.4deg);
  }
}

@media (max-width: 1100px) {
  .v2-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .v2-block-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .v2-features__header,
  .v2-webapp-note,
  .v2-planner-flow,
  .v2-design-section__grid,
  .v2-module-section__grid,
  .v2-vision__grid {
    grid-template-columns: 1fr;
  }

  .v2-vision__media {
    justify-self: start;
    width: min(78vw, 260px);
    margin-left: 1.2rem;
  }
}

@media (max-width: 720px) {
  .sticky-waitlist-button {
    top: auto;
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.85rem 1.05rem;
    writing-mode: horizontal-tb;
    transform: none;
    border: 1px solid rgba(244, 244, 244, 0.3);
    border-radius: var(--radius-s);
  }

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

  .v2-hero {
    padding-top: 5.5rem;
  }

  .v2-hero__title {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .v2-hero__list li {
    font-size: 0.98rem;
  }

  .v2-features__grid {
    grid-template-columns: 1fr;
  }

  .v2-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .v2-testimonial-card {
    min-height: auto;
  }

  .v2-block-library__grid {
    grid-template-columns: 1fr;
  }

  .v2-block-card,
  .v2-block-card--featured {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .v2-hero__photo {
    width: min(104%, 640px);
  }

  .v2-planner-flow__item {
    grid-template-columns: 3rem 1fr;
    gap: 0.9rem;
  }

  .v2-newsletter .cr-web-row {
    width: 100%;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }

  .v2-hero__eyebrow,
  .v2-hero__title,
  .v2-hero__list,
  .v2-hero__launch,
  .hero-actions,
  .v2-hero__media,
  .reveal,
  .v2-feature-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
