/* ============================================================================
   Holy Notes Landing Page v2
   Ein warmes, modernes Layout mit Bento-Grid und Sanctuary-Feeling
============================================================================ */

:root {
  --lp-ink: #14203a;
  --lp-ink-soft: #3b475e;
  --lp-text: #4e5a72;
  --lp-text-light: #7a8499;
  --lp-paper: #faf7f2;
  --lp-paper-dim: #f3eee5;
  --lp-card: #ffffff;
  --lp-line: #e8e1d3;
  --lp-line-soft: #f0ebe0;
  --lp-gold: #d49b2b;
  --lp-gold-warm: #e8a838;
  --lp-gold-soft: #f3c968;
  --lp-deep: #1a2a47;
  --lp-deep-dark: #0f1a2e;
  --lp-sage: #b8a888;
  --lp-violet: #7a5ea8;
  --lp-terra: #c36a4b;
  --lp-forest: #3e8a5a;
  --lp-sky: #4a82c4;

  --lp-radius: 20px;
  --lp-radius-sm: 14px;
  --lp-radius-lg: 28px;

  --lp-shadow-sm: 0 2px 8px rgba(20, 32, 58, 0.04), 0 1px 3px rgba(20, 32, 58, 0.06);
  --lp-shadow-md: 0 8px 24px rgba(20, 32, 58, 0.08), 0 2px 6px rgba(20, 32, 58, 0.04);
  --lp-shadow-lg: 0 24px 60px rgba(20, 32, 58, 0.12), 0 6px 16px rgba(20, 32, 58, 0.06);
  --lp-shadow-glow: 0 0 0 1px rgba(212, 155, 43, 0.2), 0 18px 48px rgba(212, 155, 43, 0.25);
}

/* Reset body for landing */
body {
  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main { display: block; }

/* Reusable Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--lp-gold);
  border-radius: 1px;
}
.eyebrow.eyebrow--center {
  justify-content: center;
}
.eyebrow--light {
  color: var(--lp-gold-soft);
}
.eyebrow--light::before {
  background: var(--lp-gold-soft);
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--lp-ink);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lp-text);
}

/* ============================================================================
   HERO
============================================================================ */
.hero-v2 {
  position: relative;
  padding: 100px 24px 140px;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #fff5e0 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(74, 130, 196, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #faf7f2 0%, #f5efe2 100%);
}

/* Subtle paper grain using SVG noise */
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Glowing orb behind hero */
.hero-v2::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

/* Animated gradient background — drifting colour blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  display: block;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.hero-blob--1 {
  top: -25%;
  left: -20%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.65) 0%, rgba(232, 168, 56, 0) 70%);
  animation: heroBlob1 23s ease-in-out infinite alternate;
}
.hero-blob--2 {
  top: -30%;
  right: -25%;
  background: radial-gradient(circle, rgba(74, 130, 196, 0.45) 0%, rgba(74, 130, 196, 0) 70%);
  animation: heroBlob2 29s ease-in-out infinite alternate;
}
.hero-blob--3 {
  bottom: -30%;
  left: -10%;
  background: radial-gradient(circle, rgba(212, 155, 43, 0.55) 0%, rgba(212, 155, 43, 0) 70%);
  animation: heroBlob3 31s ease-in-out infinite alternate;
}
.hero-blob--4 {
  bottom: -25%;
  right: -15%;
  background: radial-gradient(circle, rgba(195, 107, 77, 0.40) 0%, rgba(195, 107, 77, 0) 70%);
  animation: heroBlob4 37s ease-in-out infinite alternate;
}
.hero-blob--5 {
  top: 15%;
  left: 30%;
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(circle, rgba(243, 201, 104, 0.45) 0%, rgba(243, 201, 104, 0) 70%);
  animation: heroBlob5 41s ease-in-out infinite alternate;
}

@keyframes heroBlob1 {
  0%   { transform: translate(0, 0) scale(1); }
  22%  { transform: translate(28vw, 18vh) scale(1.12); }
  47%  { transform: translate(12vw, 42vh) scale(0.92); }
  68%  { transform: translate(40vw, 8vh) scale(1.08); }
  100% { transform: translate(20vw, 30vh) scale(1.05); }
}
@keyframes heroBlob2 {
  0%   { transform: translate(0, 0) scale(1); }
  19%  { transform: translate(-22vw, 25vh) scale(0.95); }
  44%  { transform: translate(-8vw, 48vh) scale(1.15); }
  73%  { transform: translate(-35vw, 14vh) scale(1.0); }
  100% { transform: translate(-18vw, 36vh) scale(1.1); }
}
@keyframes heroBlob3 {
  0%   { transform: translate(0, 0) scale(1); }
  27%  { transform: translate(34vw, -22vh) scale(1.1); }
  52%  { transform: translate(18vw, -8vh) scale(0.9); }
  78%  { transform: translate(46vw, -30vh) scale(1.08); }
  100% { transform: translate(28vw, -16vh) scale(1.04); }
}
@keyframes heroBlob4 {
  0%   { transform: translate(0, 0) scale(1); }
  21%  { transform: translate(-18vw, -28vh) scale(1.08); }
  49%  { transform: translate(-32vw, -12vh) scale(0.95); }
  74%  { transform: translate(-10vw, -38vh) scale(1.12); }
  100% { transform: translate(-26vw, -20vh) scale(1.0); }
}
@keyframes heroBlob5 {
  0%   { transform: translate(0, 0) scale(1); }
  24%  { transform: translate(-20vw, 22vh) scale(1.1); }
  53%  { transform: translate(25vw, 8vh) scale(0.88); }
  79%  { transform: translate(-12vw, -18vh) scale(1.15); }
  100% { transform: translate(15vw, 14vh) scale(1.05); }
}

.hero-content-v2 {
  position: relative;
  z-index: 3;
  max-width: 760px;
  animation: heroRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-v2 {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 24px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 12px 40px rgba(20, 32, 58, 0.18),
    0 4px 12px rgba(20, 32, 58, 0.08);
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero-eyebrow-v2 {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 20px;
}

.hero-title-v2 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--lp-ink);
  margin-bottom: 22px;
}
.hero-title-v2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lp-gold-warm) 0%, var(--lp-gold) 60%, var(--lp-terra) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero-tagline-v2 {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--lp-text);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 38px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--lp-gold-warm) 0%, var(--lp-gold) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--lp-shadow-glow);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(212, 155, 43, 0.3), 0 22px 52px rgba(212, 155, 43, 0.38);
  color: #fff;
}
.btn-cta-primary:active { transform: translateY(0); }

.btn-cta-primary .arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}
.btn-cta-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  color: var(--lp-ink);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--lp-line);
  transition: all 0.25s ease;
}
.btn-cta-secondary:hover {
  background: #fff;
  border-color: var(--lp-ink-soft);
  color: var(--lp-ink);
  transform: translateY(-1px);
}

.hero-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-ink-soft);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--lp-line);
  border-radius: 999px;
}
.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-gold);
}

/* Floating decorative cards */
.hero-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(20, 32, 58, 0.12));
  animation: floatDrift 10s ease-in-out infinite;
}

.hero-float--verse {
  top: 18%;
  left: 8%;
  width: 210px;
  animation-delay: -2s;
}
.hero-float--note {
  top: 30%;
  right: 7%;
  width: 230px;
  animation-delay: -5s;
}
.hero-float--sketch {
  bottom: 20%;
  left: 12%;
  width: 180px;
  animation-delay: -7s;
}
.hero-float--audio {
  bottom: 22%;
  right: 10%;
  width: 200px;
  animation-delay: -4s;
}

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -4deg)); }
  50%      { transform: translateY(-14px) rotate(calc(var(--rot, -4deg) + 1deg)); }
}

.float-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--lp-line);
  font-size: 12px;
  color: var(--lp-ink);
  line-height: 1.5;
}

.float-card--verse { --rot: -5deg; transform: rotate(-5deg); }
.float-card--note  { --rot: 4deg;  transform: rotate(4deg); }
.float-card--sketch{ --rot: -7deg; transform: rotate(-7deg); padding: 10px; }
.float-card--audio { --rot: 6deg;  transform: rotate(6deg); }

.float-card .fc-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-gold);
  margin-bottom: 8px;
}
.float-card .fc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lp-gold);
}
.float-card .fc-ref { font-weight: 700; font-size: 11px; color: var(--lp-ink); }
.float-card .fc-body { font-size: 12px; color: var(--lp-text); line-height: 1.45; }
.float-card .fc-tag {
  display: inline-block;
  padding: 2px 8px;
  background: #fff4da;
  color: #9b7419;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

/* Sketch mini */
.float-card--sketch svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Audio waveform */
.fc-audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin-top: 4px;
}
.fc-audio-wave span {
  flex: 1;
  background: linear-gradient(to top, var(--lp-gold-warm), var(--lp-gold));
  border-radius: 2px;
  opacity: 0.9;
  animation: wavePulse 1.4s ease-in-out infinite;
}
.fc-audio-wave span:nth-child(1) { height: 30%; animation-delay: -1.2s; }
.fc-audio-wave span:nth-child(2) { height: 65%; animation-delay: -1.0s; }
.fc-audio-wave span:nth-child(3) { height: 90%; animation-delay: -0.8s; }
.fc-audio-wave span:nth-child(4) { height: 55%; animation-delay: -0.6s; }
.fc-audio-wave span:nth-child(5) { height: 75%; animation-delay: -0.4s; }
.fc-audio-wave span:nth-child(6) { height: 40%; animation-delay: -0.2s; }
.fc-audio-wave span:nth-child(7) { height: 60%; animation-delay: 0s; }

@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.6); }
  50%      { transform: scaleY(1); }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text-light);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-scroll:hover {
  opacity: 1;
  color: var(--lp-ink-soft);
  transform: translateX(-50%) translateY(-2px);
}
.hero-scroll .scroll-dot {
  width: 20px;
  height: 30px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.hero-scroll .scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: currentColor;
  border-radius: 1px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 20%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%           { transform: translate(-50%, 8px); opacity: 0.3; }
}

/* ============================================================================
   BENTO GRID (Features)
============================================================================ */
.bento-section {
  padding: 100px 24px;
  background: var(--lp-paper);
  position: relative;
}

.bento-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}

.bento {
  position: relative;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.bento:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
  border-color: transparent;
}

.bento-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bento-accent, var(--lp-gold));
  background: color-mix(in srgb, var(--bento-accent, var(--lp-gold)) 14%, transparent);
  border-radius: 999px;
  margin-bottom: 14px;
}
.bento h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--lp-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.bento p {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.55;
}

/* Bento sizes */
.bento--hero {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(135deg, #1a2a47 0%, #2a3e60 55%, #3a5a8a 100%);
  color: #fff;
  padding: 40px;
  border-color: transparent;
}
.bento--hero h3 { color: #fff; font-size: 30px; }
.bento--hero p  { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 440px; }
.bento--hero .bento-tag {
  color: var(--lp-gold-soft);
  background: rgba(243, 201, 104, 0.14);
}

/* Big mockup inside the hero bento */
.bento-mockup {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 420px;
  pointer-events: none;
  transform: rotate(-3deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

.bento-mockup .mk {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--lp-ink);
  font-size: 13px;
}
.bento-mockup .mk-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--lp-line-soft);
}
.bento-mockup .mk-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #e8a838;
}
.bento-mockup .mk-dot:nth-child(2) { background: #c0ccd8; }
.bento-mockup .mk-dot:nth-child(3) { background: #c0ccd8; }
.bento-mockup .mk-ttl {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-text-light);
}
.bento-mockup .mk-h {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.bento-mockup .mk-l {
  height: 6px;
  background: #eef0f4;
  border-radius: 3px;
  margin-bottom: 8px;
}
.bento-mockup .mk-l.short { width: 60%; }
.bento-mockup .mk-l.medium { width: 82%; }
.bento-mockup .mk-verse {
  margin-top: 12px;
  padding: 10px 12px;
  background: #fff8ea;
  border-left: 3px solid var(--lp-gold);
  border-radius: 6px;
  font-size: 12px;
  color: #7a5b1a;
}
.bento-mockup .mk-verse-ref {
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Medium bento (2 cols) */
.bento--md { grid-column: span 2; }

/* Wide bento (3 cols) */
.bento--wide { grid-column: span 3; }

/* Tall (2 cols x 2 rows) */
.bento--tall { grid-column: span 2; grid-row: span 2; }

/* Bento icon */
.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--bento-accent, var(--lp-gold)) 14%, transparent);
  color: var(--bento-accent, var(--lp-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.bento-icon svg { width: 26px; height: 26px; }

/* Bento visual: drawing mini */
.bento-visual {
  margin-top: 18px;
  padding: 14px;
  background: var(--lp-paper-dim);
  border-radius: 12px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bento-visual svg { display: block; max-width: 100%; height: auto; }

/* Bento: audio waveform */
.bento-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  margin-top: 18px;
  padding: 10px 12px;
  background: var(--lp-paper-dim);
  border-radius: 10px;
}
.bento-wave span {
  flex: 1;
  background: linear-gradient(to top, var(--bento-accent, var(--lp-gold)), var(--lp-gold-soft));
  border-radius: 2px;
  min-height: 6px;
}

/* Bento: language chips */
.bento-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.bento-langs .chip {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  background: var(--lp-paper-dim);
  color: var(--lp-ink-soft);
  border-radius: 6px;
  border: 1px solid var(--lp-line);
}

/* ============================================================================
   WORKFLOW
============================================================================ */
.workflow {
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--lp-paper) 0%, var(--lp-paper-dim) 100%);
  position: relative;
}

.workflow-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Connecting line */
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--lp-gold) 0px,
    var(--lp-gold) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.4;
  z-index: 0;
}

.step {
  position: relative;
  background: var(--lp-card);
  padding: 28px 24px 24px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-gold-warm), var(--lp-gold));
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(212, 155, 43, 0.35);
  border: 3px solid var(--lp-paper);
}

.step-icon {
  font-size: 28px;
  margin-top: 16px;
  margin-bottom: 14px;
  line-height: 1;
}

.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 13.5px;
  color: var(--lp-text);
  line-height: 1.55;
}

/* ============================================================================
   READING PLANS TEASER
============================================================================ */
.plans-teaser {
  padding: 110px 24px;
  background: var(--lp-paper);
}

.plans-cards {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
}

.plan-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
}

.plan-card--featured {
  background: linear-gradient(135deg, #faf0d6 0%, #fff7e2 60%, #faf7f2 100%);
  border-color: #e9d79f;
}
.plan-card--featured::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.25), transparent 70%);
  pointer-events: none;
}

.plan-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 14px;
}
.plan-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lp-gold);
}
.plan-card h4 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--lp-ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.plan-card p {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.55;
  margin-bottom: 18px;
}
.plan-card .plan-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--lp-gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.plan-card .plan-cta:hover {
  color: var(--lp-gold);
  gap: 10px;
}

.plan-days {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--lp-line);
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ============================================================================
   TRUST / LANGUAGES
============================================================================ */
.trust {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--lp-paper-dim) 0%, var(--lp-paper) 100%);
}

.trust-grid {
  max-width: 1040px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
}

.trust-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lp-ink);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--lp-gold-warm), var(--lp-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-ink);
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.55;
}

.language-strip {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-ink-soft);
  transition: all 0.2s ease;
}
.lang-chip:hover {
  border-color: var(--lp-gold);
  color: var(--lp-ink);
  transform: translateY(-1px);
}
.lang-chip .flag {
  font-size: 15px;
  line-height: 1;
}

/* ============================================================================
   STORY (persönliche Note)
============================================================================ */
.story {
  padding: 120px 24px;
  background: linear-gradient(135deg, #1a2a47 0%, #0f1a2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12), transparent 70%);
  pointer-events: none;
}
.story::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 130, 196, 0.15), transparent 70%);
  pointer-events: none;
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.story-inner .eyebrow {
  color: var(--lp-gold-soft);
}
.story-inner .eyebrow::before {
  background: var(--lp-gold-soft);
}
.story h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #fff;
}
.story-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}
.story-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.story-author .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-gold-warm), var(--lp-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #1a2a47;
}
.story-author .name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.story-author .role {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* ============================================================================
   FINAL CTA
============================================================================ */
.final-cta {
  padding: 110px 24px;
  background: var(--lp-paper);
  position: relative;
}

.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 56px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, #fff5e0 0%, transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #faf2e2 100%);
  border: 1px solid #eadfc5;
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 30px 80px rgba(20, 32, 58, 0.08);
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.22), transparent 70%);
  pointer-events: none;
}
.final-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(74, 130, 196, 0.15), transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--lp-ink);
  margin-bottom: 14px;
  position: relative;
}
.final-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lp-text);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}
.final-cta .btn-cta-primary { position: relative; }

/* ============================================================================
   FOOTER (leicht angepasst)
============================================================================ */
.landing-footer {
  text-align: center;
  padding: 40px 24px 56px;
  background: var(--lp-paper);
  border-top: 1px solid var(--lp-line);
  color: var(--lp-text-light);
  font-size: 13px;
}
.landing-footer p {
  margin-bottom: 14px;
}
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--lp-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--lp-gold);
}
.footer-sep {
  opacity: 0.4;
}

/* ============================================================================
   RESPONSIVE
============================================================================ */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento--hero { grid-column: span 4; grid-row: span 1; }
  .bento-mockup { width: 340px; right: -30px; bottom: -40px; }
  .bento--md { grid-column: span 2; }
  .bento--wide { grid-column: span 2; }
  .bento--tall { grid-row: span 1; }

  .plans-cards { grid-template-columns: 1fr 1fr; }
  .plan-card--featured { grid-column: span 2; }

  .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .workflow-steps::before { display: none; }

  .hero-float--verse { top: 10%; left: 3%; width: 180px; }
  .hero-float--note  { top: 20%; right: 3%; width: 190px; }
  .hero-float--sketch{ bottom: 12%; left: 5%; width: 150px; }
  .hero-float--audio { bottom: 14%; right: 4%; width: 170px; }
}

@media (max-width: 768px) {
  .hero-v2 {
    padding: 80px 20px 120px;
    min-height: auto;
  }
  .hero-logo-v2 { width: 80px; height: 80px; border-radius: 20px; margin-bottom: 20px; }
  .hero-pills { gap: 6px; }
  .hero-pill { font-size: 12px; padding: 5px 12px; }

  .bento-section { padding: 72px 20px; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .bento--hero, .bento--md, .bento--wide, .bento--tall {
    grid-column: span 2;
    grid-row: auto;
  }
  .bento--hero { padding: 32px 28px; min-height: 320px; }
  .bento-mockup { width: 300px; right: -40px; bottom: -30px; }
  .bento--hero h3 { font-size: 24px; }

  .workflow { padding: 72px 20px; }
  .plans-teaser { padding: 72px 20px; }
  .trust { padding: 72px 20px; }
  .story { padding: 88px 20px; }
  .final-cta { padding: 80px 20px; }
  .final-cta-inner { padding: 52px 28px; }

  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-number { font-size: 44px; }

  .plans-cards { grid-template-columns: 1fr; }
  .plan-card--featured { grid-column: auto; }

  /* Hide distracting floats on small screens */
  .hero-float--verse { top: 6%; left: 2%; width: 140px; opacity: 0.5; }
  .hero-float--note  { top: 14%; right: 2%; width: 150px; opacity: 0.5; }
  .hero-float--sketch{ bottom: 8%; left: 4%; width: 120px; opacity: 0.5; }
  .hero-float--audio { bottom: 10%; right: 3%; width: 130px; opacity: 0.5; }
}

@media (max-width: 520px) {
  .hero-v2 { padding: 64px 16px 100px; }
  .hero-logo-v2 { width: 72px; height: 72px; border-radius: 18px; }
  .btn-cta-primary { padding: 14px 26px; font-size: 15px; }
  .btn-cta-secondary { padding: 13px 22px; font-size: 14px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group a { justify-content: center; }

  .bento-section { padding: 56px 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento--hero, .bento--md, .bento--wide, .bento--tall {
    grid-column: auto;
  }
  .bento { padding: 22px 20px; }
  .bento--hero { padding: 28px 22px; }
  .bento-mockup { width: 280px; right: -50px; bottom: -40px; }

  .workflow { padding: 56px 16px; }
  .workflow-steps { grid-template-columns: 1fr; gap: 36px 0; }
  .step { padding: 24px 20px 22px; }

  .plans-teaser { padding: 56px 16px; }
  .plan-card { padding: 24px 22px; }

  .trust { padding: 56px 16px; }
  .trust-card { padding: 28px 22px; }

  .story { padding: 72px 18px; }
  .story h2 { font-size: 26px; }
  .story-text { font-size: 15.5px; }

  .final-cta { padding: 64px 16px; }
  .final-cta-inner { padding: 42px 22px; }

  /* Remove floats entirely */
  .hero-float { display: none; }
  .hero-scroll { display: none; }

  .section-head { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2::after,
  .hero-logo-v2,
  .hero-float,
  .hero-blob,
  .fc-audio-wave span,
  .hero-scroll .scroll-dot::after {
    animation: none !important;
  }
  .hero-content-v2 { animation: none; }
}
