@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;
}

/* ===== RESET & VARIABLES ===== */
:root {
  color-scheme: light;
  --ci-ink: #242424;
  --ci-gold: #8e847a;
  --ci-cream: #f4f4f4;
  --ci-rose: #d4cfc9;
  --ci-gray: #b5b2af;
  --ci-white: #f4f4f4;
  --ci-ink-muted: rgba(36, 36, 36, 0.7);
  --ui-surface: #ffffff;
  --ui-border: 1px solid var(--ci-gray);
  --ui-radius-card: 20px;
  --ui-radius-field: 12px;
  --ui-shadow-card: 0 16px 30px rgba(12, 10, 10, 0.1);
  --ui-shadow-soft: 0 10px 20px rgba(12, 10, 10, 0.06);
  --ui-focus-ring: 0 0 0 3px rgba(142, 132, 122, 0.4);
}

.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;
}

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

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  color: var(--ci-ink);
  background: var(--ci-cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

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


/* ===== FLOATING LANG SWITCH ===== */
.v2-hero__lang {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.v2-hero__lang .lang-active {
  font-weight: 700;
  color: #ffffff;
}

.v2-hero__lang .lang-sep {
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
}

.v2-hero__lang .lang-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.v2-hero__lang .lang-link:hover {
  color: #ffffff;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: var(--ci-gold);
  color: var(--ci-cream);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(12, 10, 10, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(12, 10, 10, 0.24);
}

/* High-contrast hero buttons */
.v2-hero .button {
  background: #ffffff;
  color: var(--ci-ink);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.v2-hero .button:hover {
  background: var(--ci-rose);
}

.v2-hero .button.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.v2-hero .button.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

.button.ghost {
  background: transparent;
  color: var(--ci-gold);
  border: 1px solid var(--ci-gray);
  box-shadow: none;
}

/* ===== HERO ===== */
.v2-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ci-cream);
}

.v2-hero--legal {
  min-height: 420px;
}

.v2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v2-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.v2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(36, 36, 36, 0.55) 0%, rgba(36, 36, 36, 0.15) 60%, transparent 100%);
  z-index: 1;
}

.v2-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 560px;
  margin-left: 6vw;
}

.v2-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--ci-rose);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.v2-hero__title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.v2-hero__list {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  list-style: disc;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

/* ===== SCHLANKE NAVIGATION AUF DEN RECHTSSEITEN ===== */
.legal-nav {
  background: var(--ci-cream);
  border-bottom: 1px solid rgba(36, 36, 36, 0.14);
}

.legal-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.legal-nav__home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ci-ink);
  transition: color 0.25s ease;
}

.legal-nav__home:hover {
  color: var(--ci-gold);
}

/* Pfeil rueckt beim Hover leicht nach links, als Richtungshinweis */
.legal-nav__arrow {
  transition: transform 0.25s ease;
}

.legal-nav__home:hover .legal-nav__arrow {
  transform: translateX(-3px);
}

.legal-nav__lang {
  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: #ffffff;
  border: 1px solid rgba(36, 36, 36, 0.14);
  border-radius: 999px;
}

.legal-nav__lang .lang-active {
  color: var(--ci-ink);
}

.legal-nav__lang .lang-sep {
  color: var(--ci-gray);
  user-select: none;
}

.legal-nav__lang .lang-link {
  color: var(--ci-gold);
  transition: color 0.25s ease;
}

.legal-nav__lang .lang-link:hover {
  color: var(--ci-ink);
}

.legal-section {
  padding: 4rem 0 5rem;
}

/* Gleiche Breite wie die Inhaltsboxen darunter, damit die Kanten fluchten */
.legal-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  max-width: 860px;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
}

@media (max-width: 520px) {
  .legal-nav__row {
    padding: 0.9rem 0;
  }

  .legal-nav__home {
    font-size: 0.85rem;
  }
}

.legal-embed-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  background: rgba(255, 255, 255, 0.96);
  border: var(--ui-border);
  border-radius: 24px;
  box-shadow: var(--ui-shadow-card);
}

.legal-embed-wrap .itrk-legaltext {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  color: var(--ci-ink);
  line-height: 1.75;
  font-size: 1.02rem;
}

.legal-embed-wrap .itrk-legaltext :is(p, li, td, th, span, div, a, strong, em, h1, h2, h3, h4) {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif !important;
  color: var(--ci-ink);
}

.legal-embed-wrap .itrk-legaltext :is(h1, h2, h3, h4) {
  font-family: "Fraunces", serif !important;
  line-height: 1.2;
  margin: 2.2rem 0 0.9rem;
  letter-spacing: 0.01em;
}

.legal-embed-wrap .itrk-legaltext h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.legal-embed-wrap .itrk-legaltext h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.legal-embed-wrap .itrk-legaltext h3,
.legal-embed-wrap .itrk-legaltext h4 {
  font-size: 1.15rem;
}

.legal-embed-wrap .itrk-legaltext :is(p, ul, ol, table) {
  margin: 0 0 1rem;
}

.legal-embed-wrap .itrk-legaltext :is(ul, ol) {
  padding-left: 1.4rem;
}

.legal-embed-wrap .itrk-legaltext li {
  margin-bottom: 0.45rem;
}

.legal-embed-wrap .itrk-legaltext a {
  color: var(--ci-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-embed-wrap .itrk-legaltext iframe {
  width: 100%;
  border: 0;
  background: transparent;
}

.legal-embed-wrap .itrk-legaltext table {
  width: 100%;
  border-collapse: collapse;
}

.legal-embed-wrap .itrk-legaltext :is(td, th) {
  padding: 0.5rem 0.25rem;
  vertical-align: top;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: var(--ui-border);
  border-radius: 24px;
  box-shadow: var(--ui-shadow-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.legal-card p,
.legal-card div,
.legal-card li {
  line-height: 1.7;
}

.legal-card iframe {
  width: 100%;
  min-height: 1800px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

.legal-fallback {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--ci-ink-muted);
}



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

/* ===== FEATURES ===== */
.v2-features {
  padding: 5rem 0 4rem;
  background: var(--ci-cream);
}

.v2-features__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.v2-features__header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.v2-features__header p {
  color: var(--ci-ink-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.v2-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .v2-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.v2-feature-card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 2rem 1.8rem;
  box-shadow: var(--ui-shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

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

.v2-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 10, 10, 0.14);
}

.v2-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ci-rose);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--ci-ink);
}

.v2-feature-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

.v2-planner-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(12, 10, 10, 0.12);
}

.v2-planner-flow__intro {
  max-width: 560px;
}

.v2-planner-flow__label {
  color: var(--ci-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.v2-planner-flow__intro h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.v2-planner-flow__intro p:not(.v2-planner-flow__label) {
  color: var(--ci-ink-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.v2-planner-flow__list {
  display: grid;
  gap: 1rem;
}

.v2-planner-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 1.25rem;
}

.v2-planner-flow__number {
  color: var(--ci-gold);
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.v2-planner-flow__item h4 {
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.v2-planner-flow__item p {
  color: var(--ci-ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (min-width: 960px) {
  .v2-planner-flow {
    grid-template-columns: minmax(260px, 0.8fr) 1.4fr;
    align-items: start;
  }

  .v2-planner-flow__intro {
    position: sticky;
    top: 2rem;
  }
}

.v2-block-library {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(12, 10, 10, 0.12);
}

.v2-block-library__header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.v2-block-library__label {
  color: var(--ci-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.v2-block-library__header h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

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

.v2-block-card {
  background: rgba(255, 255, 255, 0.74);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 1.25rem;
}

.v2-block-card--featured {
  background: var(--ui-surface);
  box-shadow: var(--ui-shadow-card);
}

.v2-block-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.v2-block-card p {
  color: var(--ci-ink-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.v2-block-card p + p {
  margin-top: 0.8rem;
}

@media (min-width: 700px) {
  .v2-block-library__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1100px) {
  .v2-block-library__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .v2-block-card--featured {
    grid-column: span 2;
  }
}

.v2-module-section {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.55);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
}

.v2-module-section__header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.v2-module-section__label {
  color: var(--ci-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.v2-module-section__header h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

.v2-module-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.v2-module-card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 1.35rem;
}

.v2-module-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

@media (min-width: 820px) {
  .v2-module-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .v2-module-section {
    padding: 2rem 1.25rem;
  }
}

.v2-design-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(12, 10, 10, 0.12);
}

.v2-design-section__header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.v2-design-section__label {
  color: var(--ci-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.v2-design-section__header h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

.v2-design-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.v2-design-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  min-height: 100%;
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 1rem;
  box-shadow: var(--ui-shadow-soft);
  overflow: hidden;
}

.v2-design-card__visual {
  min-height: 190px;
  background: #f4f1ee;
  border: 1px solid rgba(142, 132, 122, 0.28);
  border-radius: 16px;
  padding: 1rem;
  position: relative;
}

.v2-design-card--themes .v2-design-card__visual {
  background:
    linear-gradient(90deg, rgba(212, 207, 201, 0.28) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 207, 201, 0.28) 1px, transparent 1px),
    #f7f5f2;
  background-size: 22px 22px;
}

.v2-design-card--stickers .v2-design-card__visual {
  background:
    linear-gradient(135deg, rgba(218, 205, 196, 0.58), rgba(244, 244, 244, 0.92)),
    #f7f5f2;
}

.v2-theme-preview {
  width: min(230px, 82%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(36, 36, 36, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(12, 10, 10, 0.12);
  overflow: hidden;
}

.v2-theme-preview__bar {
  height: 34px;
  background: linear-gradient(90deg, #d8b7aa, #b8c5ae, #c7bdd8);
}

.v2-theme-preview__body {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.v2-theme-preview__body span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(36, 36, 36, 0.12);
}

.v2-theme-preview__body span:nth-child(2) {
  width: 76%;
}

.v2-theme-preview__body span:nth-child(3) {
  width: 58%;
}

.v2-theme-swatches {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.v2-theme-swatches span {
  width: 32px;
  height: 32px;
  border: 3px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(12, 10, 10, 0.14);
}

.v2-theme-swatches .is-rose {
  background: #d8b7aa;
}

.v2-theme-swatches .is-sage {
  background: #b8c5ae;
}

.v2-theme-swatches .is-lilac {
  background: #c7bdd8;
}

.v2-theme-swatches .is-sky {
  background: #acc5d6;
}

.v2-theme-swatches .is-graphite {
  background: #5e5c5a;
}

.v2-sticker-preview {
  height: 100%;
  min-height: 158px;
  position: relative;
}

.v2-sticker-preview__tape,
.v2-sticker-preview__label,
.v2-sticker-preview__icon,
.v2-sticker-preview__pill {
  position: absolute;
  box-shadow: 0 14px 26px rgba(12, 10, 10, 0.14);
}

.v2-sticker-preview__tape {
  width: 58%;
  height: 34px;
  left: 5%;
  top: 18%;
  background: repeating-linear-gradient(
    135deg,
    rgba(184, 197, 174, 0.9) 0 10px,
    rgba(184, 197, 174, 0.58) 10px 20px
  );
  border-radius: 8px;
  transform: rotate(-7deg);
}

.v2-sticker-preview__label {
  left: 18%;
  top: 48%;
  background: #ffffff;
  border: 1px solid rgba(36, 36, 36, 0.16);
  border-radius: 999px;
  color: var(--ci-ink);
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  padding: 0.45rem 1.1rem;
  transform: rotate(3deg);
}

.v2-sticker-preview__icon {
  width: 58px;
  height: 58px;
  right: 12%;
  top: 18%;
  background: #d8b7aa;
  border: 4px solid #ffffff;
  border-radius: 18px;
  transform: rotate(10deg);
}

.v2-sticker-preview__icon::before,
.v2-sticker-preview__icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
}

.v2-sticker-preview__icon::before {
  width: 24px;
  height: 24px;
  left: 13px;
  top: 13px;
}

.v2-sticker-preview__icon::after {
  width: 8px;
  height: 8px;
  right: 11px;
  top: 11px;
}

.v2-sticker-preview__pill {
  width: 46%;
  height: 24px;
  right: 8%;
  bottom: 10%;
  background: #c7bdd8;
  border: 3px solid #ffffff;
  border-radius: 999px;
  transform: rotate(-3deg);
}

.v2-design-card__copy {
  padding: 0.35rem 0.2rem 0.2rem;
}

.v2-design-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

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

@media (min-width: 820px) {
  .v2-design-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .v2-design-card {
    grid-template-rows: auto 1fr;
  }
}

/* ===== ANNOUNCEMENTS CAROUSEL ===== */
.v2-announce {
  padding: 5rem 0;
  background: var(--ci-ink);
  color: var(--ci-cream);
  position: relative;
  overflow: hidden;
}

.v2-announce::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(142, 132, 122, 0.08);
}

.v2-announce::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(142, 132, 122, 0.06);
}

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

.v2-announce__label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--ci-gold);
  margin-bottom: 2rem;
}

.v2-announce__viewport {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-announce__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

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

.v2-announce__wish {
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  line-height: 1.65;
  color: var(--ci-rose);
  margin-bottom: 1rem;
  font-style: italic;
}

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



/* ===== VISION ===== */
.v2-vision {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ci-cream) 0%, var(--ci-rose) 100%);
}

.v2-vision__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.v2-vision__portrait {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(12, 10, 10, 0.15);
  border: 4px solid var(--ui-surface);
  justify-self: center;
}

.v2-vision__copy h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.v2-vision__copy p {
  line-height: 1.8;
  color: var(--ci-ink-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.v2-vision__quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ci-ink);
  border-left: 3px solid var(--ci-gold);
  padding-left: 1.2rem;
  margin-top: 1.5rem;
}

/* ===== TESTER PROGRAM ===== */
.v2-tester {
  padding: 4rem 0 3rem;
  background: var(--ci-cream);
}

.v2-tester__inner {
  max-width: 900px;
  margin: 0 auto;
}

.v2-tester h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.v2-tester__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ci-ink-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.v2-tester-capacity {
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: 18px;
  background: var(--ui-surface);
  border: var(--ui-border);
  box-shadow: var(--ui-shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.v2-tester-capacity::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: var(--ci-gold);
}

.v2-tester-capacity__summary {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ci-ink-muted);
  letter-spacing: 0.01em;
}

.v2-tester-capacity__detail {
  margin: 0.5rem 0 0;
  color: var(--ci-gold);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}

.v2-tester-form.is-closed {
  opacity: 0.72;
}

.v2-tester-form.is-closed input,
.v2-tester-form.is-closed select,
.v2-tester-form.is-closed button,
.v2-tester-form.is-closed textarea {
  pointer-events: none;
}

.v2-tester__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.v2-tester__step {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius-card);
  padding: 1.5rem;
  box-shadow: var(--ui-shadow-card);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.v2-tester__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--ci-gold);
  color: var(--ci-cream);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.v2-tester__step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.v2-tester__step p {
  color: var(--ci-ink-muted);
  line-height: 1.6;
  font-size: 0.93rem;
}

/* ===== TESTER FORM ===== */
.v2-tester-form-section {
  padding: 1rem 0 5rem;
  background: var(--ci-cream);
}

.v2-tester-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.v2-tester-form-copy h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.v2-tester-form-copy p {
  color: var(--ci-ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.v2-tester-benefits {
  display: grid;
  gap: 0.8rem;
}

.v2-tester-benefits li {
  background: var(--ui-surface);
  border-radius: 16px;
  border: var(--ui-border);
  padding: 0.9rem 1rem;
  box-shadow: var(--ui-shadow-soft);
}

.v2-tester-form {
  background: var(--ui-surface);
  border-radius: var(--ui-radius-card);
  border: var(--ui-border);
  padding: 2rem;
  box-shadow: var(--ui-shadow-card);
  display: grid;
  gap: 1rem;
}

.v2-tester-field {
  display: grid;
  gap: 0.4rem;
}

.v2-tester-field label {
  font-weight: 600;
  color: var(--ci-gold);
}

.v2-tester-form input:not([type="checkbox"]),
.v2-tester-form select {
  border: var(--ui-border);
  border-radius: var(--ui-radius-field);
  padding: 0.7rem 0.9rem;
  min-height: 46px;
  background: var(--ci-cream);
  font-size: 1rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.v2-tester-form input:not([type="checkbox"]):focus,
.v2-tester-form select:focus {
  border-color: var(--ci-gold);
  box-shadow: var(--ui-focus-ring);
  outline: none;
}

.v2-tester-consent {
  margin-top: 0.5rem;
}

.v2-tester-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-weight: 400;
  color: var(--ci-ink-muted);
}

.v2-tester-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.v2-tester-privacy p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ci-ink-muted);
  line-height: 1.6;
}

.v2-tester-form .button {
  justify-self: start;
}

.v2-tester-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== NEWSLETTER ===== */
.v2-newsletter {
  padding: 4rem 0 5rem;
  background: var(--ci-rose);
}

.v2-newsletter__inner {
  background: var(--ui-surface);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 50px rgba(12, 10, 10, 0.12);
  border: 1px solid var(--ci-gray);
  max-width: 720px;
  margin: 0 auto;
}

.v2-newsletter__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0.5rem;
}

.v2-newsletter__header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.v2-newsletter__teaser {
  text-align: center;
  color: var(--ci-ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.v2-newsletter .cr-text,
.v2-newsletter .cr-web-form input,
.v2-newsletter .cr-web-form select,
.v2-newsletter .cr-web-form button,
.v2-newsletter .cr-web-form label,
.v2-newsletter .cr-web-label {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  color: var(--ci-ink);
}

.v2-newsletter .cr-web-wrapper {
  justify-content: stretch;
}

.v2-newsletter .cr-web-row {
  max-width: none;
  width: 100%;
  border-radius: 16px;
}

.v2-newsletter .bgcolor-1 {
  background-color: transparent;
}

.v2-newsletter .bgcolor-2 {
  background-color: var(--ci-white);
}

.v2-newsletter .cr-web-form input,
.v2-newsletter .cr-web-form select {
  border-color: var(--ci-gray);
  background: var(--ci-cream);
}

.v2-newsletter .cr-web-form label {
  font-weight: 600;
  color: var(--ci-gold);
  letter-spacing: 0.02em;
}

.v2-newsletter .cr-web-form button {
  background: var(--ci-gold) !important;
  color: var(--ci-cream) !important;
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  border: none;
  box-shadow: 0 12px 24px rgba(12, 10, 10, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-newsletter .cr-web-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(12, 10, 10, 0.24);
}

.v2-newsletter .cr-consent-required {
  color: var(--ci-ink-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ci-ink);
  color: var(--ci-cream);
  padding-top: 1.5rem;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 0;
}

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

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

.site-footer a {
  color: var(--ci-cream);
}

.site-footer a:hover {
  color: var(--ci-rose);
}

/* ===== TOAST ===== */
.form-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: min(92vw, 440px);
  background: var(--ci-gold);
  color: var(--ci-cream);
  border: 1px solid var(--ci-gray);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: var(--ui-shadow-card);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

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

.form-toast.is-error {
  background: var(--ci-rose);
  color: var(--ci-ink);
  border-color: var(--ci-gray);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.9rem 1rem 1rem;
    text-align: center;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    justify-content: center;
    margin-left: 0;
  }

  .v2-vision__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .v2-vision__portrait {
    width: 200px;
    height: 200px;
  }

  .v2-vision__quote {
    text-align: left;
  }

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

@media (max-width: 720px) {
  .v2-hero {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
  }

  .v2-hero__bg {
    position: relative !important;
    inset: auto !important;
    height: 300px !important;
    width: 100% !important;
    z-index: 1;
  }

  .v2-hero__bg img {
    filter: none !important;
    object-position: right center !important;
  }

  .v2-hero__overlay {
    display: none !important;
  }

  .v2-hero__content {
    position: relative !important;
    margin: 0 !important;
    padding: 2.5rem 6vw 4rem !important;
    max-width: none !important;
    background: var(--ci-cream) !important;
    z-index: 2;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .v2-hero__eyebrow {
    color: var(--ci-gold) !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .v2-hero__title {
    font-size: clamp(2.2rem, 9vw, 2.8rem) !important;
    color: var(--ci-ink) !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  .v2-hero__list {
    color: var(--ci-ink-muted) !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }

  /* Adjust buttons for light background */
  .v2-hero .button {
    background: var(--ci-gold) !important;
    color: var(--ci-cream) !important;
  }

  .v2-hero .button.ghost {
    background: transparent !important;
    color: var(--ci-gold) !important;
    border: 2px solid var(--ci-gold) !important;
    backdrop-filter: none !important;
  }

  .v2-announce__viewport {
    min-height: 280px;
  }

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

  .v2-newsletter__inner {
    border-radius: 18px;
  }
}

/* ===== DESIGN REFRESH ===== */
body {
  background:
    linear-gradient(90deg, rgba(181, 178, 175, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(181, 178, 175, 0.1) 1px, transparent 1px),
    var(--ci-cream);
  background-size: 72px 72px;
}

.v2-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) 6vw clamp(4rem, 7vw, 6rem);
  isolation: isolate;
}

.v2-hero::after {
  content: "";
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  z-index: 2;
}

.v2-hero__bg img {
  filter: saturate(0.85) brightness(0.66);
  transform: scale(1.04);
}

.v2-hero__overlay {
  background:
    radial-gradient(circle at 78% 28%, rgba(244, 244, 244, 0.18), transparent 30%),
    linear-gradient(110deg, rgba(36, 36, 36, 0.86) 0%, rgba(36, 36, 36, 0.66) 42%, rgba(36, 36, 36, 0.32) 72%, rgba(36, 36, 36, 0.1) 100%);
}

.v2-hero__content {
  margin-left: 0;
  max-width: 620px;
  padding: 0;
}

.v2-hero__eyebrow,
.v2-features__header::before,
.v2-planner-flow__label,
.v2-block-library__label,
.v2-module-section__label,
.v2-design-section__label {
  width: fit-content;
  padding: 0.35rem 0.7rem;
  background: rgba(244, 244, 244, 0.1);
  border: 1px solid rgba(244, 244, 244, 0.18);
  border-radius: 999px;
}

.v2-hero__title {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  max-width: 720px;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.v2-hero__list {
  display: grid;
  gap: 0.7rem;
  padding-left: 0;
  list-style: none;
  max-width: 500px;
}

.v2-hero__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.v2-hero__list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  background: var(--ci-rose);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(212, 207, 201, 0.16);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.v2-hero__showcase {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(52vw, 720px);
}

.v2-device-frame {
  padding: 1rem;
  background: rgba(244, 244, 244, 0.12);
  border: 1px solid rgba(244, 244, 244, 0.3);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}

.v2-device-frame img {
  width: 100%;
  border-radius: 24px;
}

.v2-floating-note {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(181, 178, 175, 0.75);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(12, 10, 10, 0.2);
  color: var(--ci-ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.v2-floating-note--top {
  top: 6%;
  left: -4%;
}

.v2-floating-note--bottom {
  right: 2%;
  bottom: -1rem;
}

.v2-features {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    linear-gradient(180deg, rgba(244, 244, 244, 0.92), rgba(212, 207, 201, 0.2)),
    var(--ci-cream);
  position: relative;
}

.v2-features__header {
  text-align: left;
  max-width: 980px;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.v2-features__header::before {
  content: "Produkt";
  grid-column: 1 / -1;
  color: var(--ci-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(181, 178, 175, 0.6);
}

.v2-features__header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  margin-bottom: 0;
  text-wrap: balance;
}

.v2-features__header p {
  margin-bottom: 0.15rem;
}

.v2-product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.44fr);
  gap: 1rem;
  align-items: stretch;
  margin: 0 0 3rem;
}

.v2-product-stage__screen {
  min-height: 340px;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--ci-ink);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(12, 10, 10, 0.18);
}

.v2-app-window {
  display: grid;
  grid-template-columns: 74px 1fr;
  height: 100%;
  min-height: 300px;
  background: #f9f8f6;
  border-radius: 22px;
  overflow: hidden;
}

.v2-app-window__sidebar {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.2rem 0.9rem;
  background: rgba(212, 207, 201, 0.45);
}

.v2-app-window__sidebar span {
  height: 38px;
  border-radius: 12px;
  background: #ffffff;
}

.v2-app-window__main {
  padding: 1.4rem;
}

.v2-app-window__topline {
  width: 44%;
  height: 26px;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: var(--ci-ink);
  opacity: 0.16;
}

.v2-app-window__columns {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.v2-app-window__columns span,
.v2-app-window__blocks span {
  display: block;
  background: rgba(181, 178, 175, 0.25);
  border: 1px solid rgba(181, 178, 175, 0.35);
  border-radius: 16px;
}

.v2-app-window__columns span {
  height: 120px;
}

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

.v2-app-window__blocks span {
  height: 82px;
}

.v2-product-stage__notes {
  display: flex;
  align-items: end;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: var(--ui-border);
  border-radius: 30px;
  box-shadow: var(--ui-shadow-soft);
}

.v2-product-stage__notes p {
  color: var(--ci-ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.v2-features__grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.v2-feature-card {
  grid-column: span 3;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  border-color: rgba(181, 178, 175, 0.65);
  box-shadow: 0 18px 40px rgba(12, 10, 10, 0.08);
}

.v2-feature-card:nth-child(2),
.v2-feature-card:nth-child(4) {
  transform: translateY(56px);
}

.v2-feature-card.is-visible:nth-child(2),
.v2-feature-card.is-visible:nth-child(4) {
  transform: translateY(26px);
}

.v2-feature-card:hover,
.v2-feature-card.is-visible:hover {
  transform: translateY(-4px);
}

.v2-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ci-rose), #ffffff);
}

.v2-planner-flow {
  margin-top: 6rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--ci-ink);
  border: 0;
  border-radius: 34px;
  color: var(--ci-cream);
  box-shadow: 0 26px 70px rgba(12, 10, 10, 0.18);
}

.v2-planner-flow__label,
.v2-block-library__label,
.v2-module-section__label,
.v2-design-section__label {
  background: rgba(142, 132, 122, 0.13);
  border-color: rgba(142, 132, 122, 0.25);
}

.v2-planner-flow__intro h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ci-cream);
}

.v2-planner-flow__intro p:not(.v2-planner-flow__label) {
  color: rgba(244, 244, 244, 0.74);
}

.v2-planner-flow__list {
  gap: 0;
  border-top: 1px solid rgba(244, 244, 244, 0.16);
}

.v2-planner-flow__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 244, 244, 0.16);
  border-radius: 0;
  padding: 1.3rem 0;
}

.v2-planner-flow__number {
  color: var(--ci-rose);
  min-width: 3rem;
}

.v2-planner-flow__item h4 {
  color: #ffffff;
}

.v2-planner-flow__item p {
  color: rgba(244, 244, 244, 0.72);
}

.v2-block-library {
  margin-top: 6rem;
  padding-top: 0;
  border-top: 0;
}

.v2-block-library__header,
.v2-design-section__header {
  max-width: 920px;
}

.v2-block-library__header h3,
.v2-module-section__header h3,
.v2-design-section__header h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 760px;
  text-wrap: balance;
}

.v2-block-library__grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.v2-block-card {
  grid-column: span 3;
  min-height: 178px;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(12, 10, 10, 0.05);
  position: relative;
  overflow: hidden;
}

.v2-block-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(212, 207, 201, 0.85), rgba(255, 255, 255, 0.45));
  opacity: 0.9;
}

.v2-block-card--featured {
  grid-column: span 6;
  background:
    linear-gradient(135deg, #ffffff, rgba(212, 207, 201, 0.42));
}

.v2-block-card h4 {
  padding-right: 3rem;
  font-size: 1.18rem;
}

.v2-module-section {
  margin-top: 6rem;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(212, 207, 201, 0.42));
  border-radius: 36px;
  box-shadow: 0 22px 60px rgba(12, 10, 10, 0.1);
}

.v2-module-section__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.v2-module-card {
  min-height: 320px;
  border-radius: 26px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(12, 10, 10, 0.08);
}

.v2-module-card::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  height: 96px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.12) 26%, transparent 26% 34%, rgba(36, 36, 36, 0.08) 34%),
    rgba(212, 207, 201, 0.48);
}

.v2-module-card:nth-child(2)::before {
  background:
    radial-gradient(circle at 22% 50%, #ffffff 0 18px, transparent 19px),
    radial-gradient(circle at 50% 50%, #ffffff 0 18px, transparent 19px),
    radial-gradient(circle at 78% 50%, #ffffff 0 18px, transparent 19px),
    rgba(212, 207, 201, 0.58);
}

.v2-module-card:nth-child(3)::before {
  background:
    linear-gradient(90deg, #ffffff 0 30%, transparent 30% 34%, #ffffff 34% 64%, transparent 64% 68%, #ffffff 68%),
    rgba(212, 207, 201, 0.5);
}

.v2-module-card:nth-child(4)::before {
  background:
    linear-gradient(180deg, transparent 64%, rgba(142, 132, 122, 0.44) 64% 70%, transparent 70%),
    linear-gradient(90deg, rgba(36, 36, 36, 0.1) 1px, transparent 1px),
    rgba(212, 207, 201, 0.45);
  background-size: auto, 18px 18px, auto;
}

.v2-design-section {
  margin-top: 6rem;
  padding-top: 0;
  border-top: 0;
}

.v2-design-section__grid {
  gap: 1.25rem;
}

.v2-design-card {
  border-radius: 32px;
  box-shadow: 0 22px 56px rgba(12, 10, 10, 0.1);
}

.v2-announce {
  margin-top: 0;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.v2-announce__inner {
  max-width: 960px;
}

.v2-announce__viewport {
  min-height: 320px;
  border: 1px solid rgba(244, 244, 244, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.v2-vision {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--ci-cream);
}

.v2-vision__grid {
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(212, 207, 201, 0.38));
  border: var(--ui-border);
  border-radius: 38px;
  box-shadow: 0 24px 70px rgba(12, 10, 10, 0.1);
}

.v2-vision__portrait {
  width: min(310px, 100%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 32px;
}

.v2-newsletter {
  background:
    linear-gradient(180deg, rgba(212, 207, 201, 0.2), var(--ci-cream));
}

.v2-newsletter__inner {
  border-radius: 38px;
  box-shadow: 0 24px 70px rgba(12, 10, 10, 0.12);
}

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

  .v2-hero__showcase {
    justify-self: start;
    width: min(760px, 88vw);
  }

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

  .v2-feature-card,
  .v2-block-card {
    grid-column: span 3;
  }

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

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

@media (max-width: 820px) {
  .v2-features__header,
  .v2-product-stage,
  .v2-vision__grid {
    grid-template-columns: 1fr;
  }

  .v2-product-stage__screen {
    min-height: 260px;
  }

  .v2-app-window {
    grid-template-columns: 54px 1fr;
    min-height: 240px;
  }

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

  .v2-feature-card:nth-child(2),
  .v2-feature-card:nth-child(4),
  .v2-feature-card.is-visible:nth-child(2),
  .v2-feature-card.is-visible:nth-child(4) {
    transform: none;
  }

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

@media (max-width: 720px) {
  .v2-hero {
    display: grid !important;
    padding: 0 !important;
    background: var(--ci-cream) !important;
  }

  .v2-hero__bg {
    position: absolute !important;
    inset: 0 !important;
    height: 320px !important;
  }

  .v2-hero__bg img {
    filter: saturate(0.82) brightness(0.6) !important;
  }

  .v2-hero__overlay {
    display: block !important;
    height: 320px;
  }

  .v2-hero__content {
    padding: 5rem 6vw 2rem !important;
    background: transparent !important;
    color: #ffffff;
  }

  .v2-hero__title {
    color: #ffffff !important;
    font-size: clamp(3rem, 16vw, 4.6rem) !important;
  }

  .v2-hero__list {
    color: rgba(255, 255, 255, 0.86) !important;
  }

  .v2-hero__showcase {
    width: 100%;
    padding: 0 6vw 3rem;
    justify-self: stretch;
  }

  .v2-device-frame {
    transform: none;
    border-radius: 24px;
    padding: 0.55rem;
  }

  .v2-device-frame img {
    border-radius: 18px;
  }

  .v2-floating-note {
    position: static;
    display: inline-block;
    margin-top: 0.75rem;
    margin-right: 0.5rem;
  }

  .v2-features__header h2,
  .v2-block-library__header h3,
  .v2-module-section__header h3,
  .v2-design-section__header h3 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .v2-planner-flow,
  .v2-module-section,
  .v2-vision__grid,
  .v2-newsletter__inner {
    border-radius: 26px;
  }

  .v2-module-section {
    padding: 2rem 1.25rem;
  }
}
