/* ==========================================================================
   NihonPass · Offizielle Webseite
   Designsprache: Japanisches Reisepapier (Washi), Hanko-Siegel, Tickets & Seigaiha
   Vollständig responsive für PC, iPad und iPhone
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Noto+Serif+JP:wght@600;900&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

:root {
  /* Master Spezifikation: Farbpalette & Tokens */
  --bg-canvas: #F7F4EC;         /* Washi-Elfenbein Grundhintergrund */
  --bg-card: #FFFFFF;           /* Reines Papierweiß */
  --bg-card-tint: #FAF7F2;      /* Getönter Washi-Container */
  
  --color-primary: #C23A2B;     /* Echtes Zinnoberrot (Shu-iro) */
  --color-primary-dark: #9A281C;
  --color-primary-soft: rgba(194, 58, 43, 0.12); /* Pinselklecks-Akzente */
  
  --text-heading: #1F1D1A;      /* Sumi-Tinte Tiefschwarz */
  --text-body: #4A4641;         /* Gedämpftes Schiefergrau */
  --text-muted: #666059;        /* Sanftes Steingrau mit WCAG AA Kontrast */
  
  --border-subtle: rgba(180, 160, 140, 0.18);
  --border-strong: rgba(180, 160, 140, 0.35);

  /* Schatten (Haptischer Papierschatten) */
  --shadow-card: 0 4px 20px rgba(50, 40, 30, 0.05), 0 1px 3px rgba(50, 40, 30, 0.03);
  --shadow-hover: 0 12px 32px rgba(50, 40, 30, 0.09), 0 2px 6px rgba(50, 40, 30, 0.04);
  --shadow-float: 0 20px 48px rgba(194, 58, 43, 0.15);

  /* Typografie-Skalierung (Fluid Typography) */
  --font-hero: clamp(2.4rem, 5.5vw, 4.2rem);
  --font-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --font-h3: clamp(1.3rem, 2.2vw, 1.8rem);
  --font-body: clamp(0.95rem, 1.1vw, 1.05rem);
  --font-small: 0.85rem;

  /* Spacing */
  --section-padding-desktop: 120px 24px;
  --section-padding-mobile: 64px 20px;
  --container-max-width: 1160px;
  --radius-card: 24px;
  --radius-pill: 9999px;
  --radius-ticket: 18px;

  /* Aliase & Abwärtskompatibilität */
  --c-hanko-red: var(--color-primary);
  --c-hanko-dark: var(--color-primary-dark);
  --c-zinnober: var(--color-primary);
  --c-gold: #E0AD33;
  --c-gold-light: #FBF4DC;
  --c-washi: var(--bg-card-tint);
  --c-washi-pure: var(--bg-card);
  --c-bg-top: #ECE2D4;
  --c-bg-mid: #F6F2EA;
  --c-bg-bottom: #FDFCFA;
  --c-ink: var(--text-heading);
  --c-ink-light: var(--text-body);
  --c-pass-gray: var(--text-muted);
  --c-pine: #2C6B4F;
  --c-mint: #D6EBE0;
  --c-mint-dark: #2C6B4F;
  --c-border-subtle: var(--border-subtle);
  --max-width: var(--container-max-width);
  --shadow-washi: var(--shadow-card);
  --shadow-floating: var(--shadow-hover);
  --shadow-hanko: var(--shadow-float);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

  /* System-Fonts nach Spezifikation */
  --font-serif: -apple-system-ui-serif, "New York", "Noto Serif JP", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Nunito", "M PLUS Rounded 1c", sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-stamp: 'Noto Serif JP', 'Yu Mincho', serif;
}

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

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

html {
  background-color: #FBF7EF;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-heading);
  background-color: #FBF7EF;
  background: linear-gradient(180deg, #FBF7EF 0%, var(--c-bg-mid) 28%, #F7F4EC 100%);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section-title, .hero-title, .watch-title {
  font-family: var(--font-serif);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Kopfzeile (Header) mit traditionellem Seigaiha-Muster
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FBF7EF;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(45, 30, 15, 0.04);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  transition: var(--transition);
}

/* Subtiles Seigaiha-Wasserzeichen im Header mit sanftem Einblend-Verlauf unter der Statusleiste */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/icons/seigaiha.svg');
  background-repeat: repeat;
  background-size: 64px 32px;
  opacity: 0.055;
  pointer-events: none;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) calc(env(safe-area-inset-top, 0px) * 0.25),
    rgba(0, 0, 0, 1) calc(env(safe-area-inset-top, 0px) * 0.8 + 6px),
    rgba(0, 0, 0, 1) calc(100% - 10px),
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) calc(env(safe-area-inset-top, 0px) * 0.25),
    rgba(0, 0, 0, 1) calc(env(safe-area-inset-top, 0px) * 0.8 + 6px),
    rgba(0, 0, 0, 1) calc(100% - 10px),
    rgba(0, 0, 0, 0) 100%
  );
}

.header-pattern-strip {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
  z-index: 3;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  line-height: 1.1;
  color: var(--c-ink);
  font-weight: 900;
}

.brand-kanji {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--c-hanko-red);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink-light);
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--c-hanko-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-hanko-red);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-backdrop,
.mobile-menu-brand,
.mobile-menu-divider,
.mobile-menu-bottom,
.mobile-menu-lang,
.mobile-menu-lang-wrap,
.mobile-menu-cta,
.btn-cta-mobile,
.nav-icon,
.nav-kanji-badge,
.nav-sub-desc,
.nav-arrow {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sprachwechsler */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(128, 120, 110, 0.12);
  padding: 3px;
  border-radius: 24px;
  width: fit-content;
  gap: 2px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--c-pass-gray);
  transition: var(--transition);
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--c-washi-pure);
  color: var(--c-hanko-red);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-weight: 800;
}

.btn-cta-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--c-hanko-red);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 24px;
  box-shadow: var(--shadow-hanko);
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-cta-small:hover {
  transform: translateY(-1px);
  background: var(--c-hanko-dark);
  box-shadow: 0 10px 26px rgba(209, 13, 20, 0.35);
}

/* Hamburger Menü-Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
  border-radius: 10px;
  background: rgba(128, 120, 110, 0.08);
  transition: var(--transition);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animiertes "X" bei geöffnetem Menü */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 56px 0 68px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.sub-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-hanko-red);
  background: rgba(209, 13, 20, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.sub-label .torii-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  color: var(--c-ink-light);
  font-weight: 600;
  line-height: 1.58;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.app-store-btn {
  display: inline-block;
  transition: var(--transition);
  flex-shrink: 0;
}

.app-store-btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

.app-store-btn img {
  height: 48px;
  width: auto;
}

.text-primary {
  color: var(--color-primary);
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 4px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--c-border-subtle);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--c-pass-gray);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.trust-pill:hover {
  border-color: rgba(194, 58, 43, 0.3);
  transform: translateY(-1px);
}

.trust-pill-icon {
  font-size: 0.85rem;
  line-height: 1;
}

.hero-privacy-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-pass-gray);
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  padding: 9px 14px;
  border-radius: 12px;
}

.hero-privacy-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--c-mint-dark);
  flex-shrink: 0;
}

.hero-companion-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.hero-companion-strip:hover {
  border-color: rgba(209, 13, 20, 0.35);
  box-shadow: 0 4px 14px rgba(74, 52, 33, 0.08);
  transform: translateY(-1px);
}

.companion-strip-arrow {
  font-size: 0.88rem;
  color: var(--c-hanko-red);
  font-weight: 800;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.hero-companion-strip:hover .companion-strip-arrow {
  transform: translateX(3px);
}

.companion-avatars {
  display: flex;
  align-items: center;
}

.companion-avatar-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--c-washi-pure);
  margin-left: -8px;
  background: #fff;
  overflow: hidden;
}

.companion-avatar-item:first-child {
  margin-left: 0;
}

.companion-strip-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-ink);
}

/* ==========================================================================
   Hero Visual: Hinode & iPhone Mockup
   ========================================================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

/* Hinode: Aufgehende Sonne */
.hinode-sun {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 173, 51, 0.22) 0%, rgba(189, 51, 38, 0.15) 45%, rgba(209, 13, 20, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  animation: pulseSun 8s ease-in-out infinite alternate;
}

@keyframes pulseSun {
  0% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

/* iPhone Pro Max Chassis */
.iphone-mockup {
  position: relative;
  z-index: 2;
  width: 285px;
  max-width: 100%;
  flex-shrink: 0;
  background: #141416;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 
    0 30px 70px -12px rgba(45, 30, 15, 0.32), 
    0 0 0 1px #3A3A3C inset, 
    0 0 0 2.5px #0E0E10,
    0 0 0 3.5px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

.iphone-mockup:hover {
  transform: translateY(-6px) rotate(-0.8deg);
}

.iphone-screen {
  width: 100%;
  aspect-ratio: 472 / 1024;
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  display: block;
}

.iphone-screen-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iphone-island {
  position: absolute;
  top: 1.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 29.1%;
  height: 3.97%;
  background: #000000;
  border-radius: 9999px;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.08) inset;
  display: block;
}

.iphone-island::after {
  content: '';
  position: absolute;
  right: 14%;
  top: 50%;
  transform: translateY(-50%);
  width: 22%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2536 0%, #070b12 60%, #000000 100%);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.app-screen-content {
  padding-top: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #FBF7EF 0%, #F5EDE0 100%);
  position: relative;
}

.mockup-header {
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-route-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-hanko-red);
  letter-spacing: 0.1em;
}

.mockup-station-count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--c-pass-gray);
}

.mockup-card {
  margin: 6px 14px 12px;
  background: var(--c-washi-pure);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.mockup-img-wrap {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.mockup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
}

.mockup-card-body {
  padding: 10px 12px;
}

.mockup-station-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.2;
}

.mockup-station-sub {
  font-size: 0.72rem;
  color: var(--c-pass-gray);
  margin-top: 2px;
}

.mockup-map-area {
  flex: 1;
  margin: 0 14px 14px;
  background: #EFE8DA;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border-subtle);
}

.mockup-trail-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mockup-tanuki-walker {
  position: absolute;
  top: 45%;
  left: 55%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.mockup-stamp-float {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  border: 2px solid var(--c-hanko-red);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-hanko-red);
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 10px rgba(209, 13, 20, 0.2);
}

.mockup-stamp-float .stamp-kanji {
  font-family: var(--font-stamp);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.mockup-stamp-float .stamp-sub {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Floating Hero Badge (Health) */
.hero-floating-badge {
  position: absolute;
  bottom: 210px;
  left: -36px;
  background: var(--c-washi-pure);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-floating);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--c-border-subtle);
  z-index: 10;
  transition: transform 0.3s ease;
}

.hero-floating-badge:hover {
  transform: scale(1.03);
}

.badge-icon-heart {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(209, 13, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-hanko-red);
  font-size: 1.2rem;
}

.badge-text-primary {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--c-ink);
}

.badge-text-secondary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-pass-gray);
}

.hero-floating-badge-watch {
  bottom: 80px;
  left: auto;
  right: -32px;
}

.badge-icon-watch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(194, 58, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ==========================================================================
   Sections Allgemein
   ========================================================================== */
.section {
  padding: 70px 0;
  position: relative;
}

/* Sektionstrenner: Japanische Ticket-Perforation mit Hanko-Punkt */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  border-top: 1.5px dashed rgba(128, 120, 110, 0.22);
  height: 0;
}

.section-divider-dot {
  width: 7px;
  height: 7px;
  background: var(--c-hanko-red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(194, 58, 43, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.section-divider:hover .section-divider-dot {
  transform: scale(1.35);
}

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

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-hanko-red);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1.22;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--c-ink-light);
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================================================================
   So funktioniert's: Interaktive Reisebildschirm-Tour
   ========================================================================== */
.tour-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 32px auto 10px;
}

.tour-mobile-tabs {
  display: none;
}

.tour-mobile-controls {
  display: none;
}

.tour-layout {
  display: grid;
  grid-template-columns: 1fr 290px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "card1 phone card2"
    "card3 phone card4";
  gap: 28px 48px;
  align-items: center;
  position: relative;
}

.tour-card[data-step="1"] { grid-area: card1; }
.tour-card[data-step="2"] { grid-area: card2; }
.tour-card[data-step="3"] { grid-area: card3; }
.tour-card[data-step="4"] { grid-area: card4; }
.tour-center { grid-area: phone; align-self: center; }

.tour-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Phone Mockup im Tour-Bereich */
.tour-phone-chassis {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 290px;
  background: #141416;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 
    0 30px 70px -12px rgba(45, 30, 15, 0.32), 
    0 0 0 1px #3A3A3C inset, 
    0 0 0 2.5px #0E0E10,
    0 0 0 3.5px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

.tour-phone-chassis:hover {
  transform: translateY(-4px);
}

.tour-phone-screen {
  width: 100%;
  aspect-ratio: 472 / 1024;
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  display: block;
}

.tour-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hotspots auf dem Screenshot */
.tour-hotspot {
  position: absolute;
  z-index: 15;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotspot-1 { top: 7.2%; left: 32%; }
.hotspot-2 { top: 7.2%; left: 81%; }
.hotspot-3 { top: 44.5%; left: 51%; }
.hotspot-4 { top: 79.5%; left: 88%; }

.hotspot-pin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-hanko-red);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(209, 13, 20, 0.5), 0 0 0 2px #FFFFFF;
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hotspot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(209, 13, 20, 0.45);
  animation: hotspotRadar 2.4s infinite ease-out;
  pointer-events: none;
}

@keyframes hotspotRadar {
  0% { transform: scale(0.9); opacity: 0.95; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.tour-hotspot:hover .hotspot-pin,
.tour-hotspot.is-active .hotspot-pin {
  transform: scale(1.3);
  background: #B00A10;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 4px 14px rgba(209, 13, 20, 0.7);
}

/* Hotspot Callouts (Auf dem Screen sichtbare Pfeile & Labels) */
.hotspot-callout {
  position: absolute;
  background: rgba(18, 20, 24, 0.94);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 25;
}

.tour-hotspot.is-active .hotspot-callout,
.tour-hotspot:hover .hotspot-callout {
  opacity: 1;
  transform: scale(1);
}

.callout-arrow {
  color: var(--c-hanko-red);
  font-size: 0.85rem;
  font-weight: 900;
}

.callout-1 {
  left: 26px;
  top: -4px;
}

.callout-2 {
  right: 26px;
  top: -4px;
}

.callout-3 {
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  bottom: 26px;
}

.tour-hotspot.is-active .callout-3,
.tour-hotspot:hover .callout-3 {
  transform: translateX(-50%) scale(1);
}

.callout-4 {
  right: 26px;
  bottom: -4px;
}

/* Tour Cards */
.tour-card {
  position: relative;
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-washi);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tour-card:hover,
.tour-card.is-active {
  transform: translateY(-4px);
  border-color: var(--c-hanko-red);
  box-shadow: 0 14px 34px rgba(209, 13, 20, 0.1), var(--shadow-washi);
}

.step-badge-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--bg-card);
  border: 1px solid var(--c-border-subtle);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.step-pin-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-hanko-red);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  margin-right: 8px;
  box-shadow: 0 1px 4px rgba(209, 13, 20, 0.35);
}

/* Pfeile zwischen Cards und Phone (Desktop) */
.tour-arrow {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.tour-card:hover .tour-arrow,
.tour-card.is-active .tour-arrow {
  opacity: 1;
  transform: scale(1.08);
}

/* Positionen der Pfeile */
.arrow-step-1 {
  right: -52px;
  top: 36px;
}

.arrow-step-3 {
  right: -52px;
  top: 40px;
}

.arrow-step-2 {
  left: -52px;
  top: 36px;
}

.arrow-step-4 {
  left: -52px;
  top: 50px;
}

.step-card {
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  position: relative;
  box-shadow: var(--shadow-washi);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--c-pass-gray);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-num-kanji {
  color: var(--c-hanko-red);
  font-family: var(--font-stamp);
  font-size: 1.05rem;
  font-weight: 900;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(209, 13, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--c-ink-light);
  line-height: 1.55;
}

/* ==========================================================================
   Routen-Tickets
   ========================================================================== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.route-ticket {
  background: var(--c-washi);
  border-radius: var(--radius-ticket);
  box-shadow: var(--shadow-washi);
  border: 1px solid var(--c-border-subtle);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.route-ticket:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.ticket-header-img {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.ticket-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-ticket:hover .ticket-header-img img {
  transform: scale(1.05);
}

.ticket-access-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-free {
  background: rgba(44, 107, 79, 0.88);
  color: #fff;
}

.badge-pass {
  background: rgba(224, 173, 51, 0.94);
  color: #26262E;
}

.ticket-region-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
}

/* Perforation mit halbkreisförmigen Kerben */
.ticket-perforation {
  position: relative;
  height: 22px;
  background: var(--c-washi);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticket-dash-line {
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--c-pass-gray) 0, var(--c-pass-gray) 6px, transparent 6px, transparent 12px);
  opacity: 0.45;
}

.ticket-perforation::before,
.ticket-perforation::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--c-bg-mid);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--c-border-subtle);
  z-index: 2;
}

.ticket-perforation::before {
  left: -9px;
}

.ticket-perforation::after {
  right: -9px;
}

.ticket-body {
  padding: 10px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ticket-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-pass-gray);
  flex-wrap: wrap;
  gap: 8px;
}

.ticket-meta-item strong {
  color: var(--c-ink);
  font-weight: 700;
}

.ticket-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ticket-subtitle {
  font-size: 0.92rem;
  color: var(--c-ink-light);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.45;
}

.ticket-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--c-border-subtle);
  flex-wrap: nowrap;
  gap: 8px;
}

.ticket-code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #73737a;
}

.ticket-barcode {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 12px;
  flex-shrink: 0;
}

.ticket-barcode span {
  display: inline-block;
  height: 100%;
  width: 1px;
  background-color: #404047;
  border-radius: 0.5px;
}

.ticket-barcode span:nth-child(3n+1) {
  width: 2.5px;
}

/* ==========================================================================
   Stempelbuch & Serie (Monatskalender & Ruhetag)
   ========================================================================== */
.streak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.streak-device-card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.streak-phone-chassis {
  width: 100%;
  max-width: 285px;
  background: #141416;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 
    0 25px 60px -10px rgba(45, 30, 15, 0.25), 
    0 0 0 1px #3A3A3C inset, 
    0 0 0 2.5px #0E0E10;
  transition: transform 0.4s ease;
  position: relative;
}

.streak-phone-chassis:hover {
  transform: translateY(-6px);
}

.streak-phone-screen {
  width: 100%;
  aspect-ratio: 472 / 1024;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  display: block;
  position: relative;
}

.streak-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fächer-Mockup (Dual Device Layering: Goshuin-Buch & Profil-Kalender) */
.fanned-showcase-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 570px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fanned-phone {
  position: absolute;
  width: 260px;
  background: #141416;
  border-radius: 48px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 
    0 25px 60px -10px rgba(45, 30, 15, 0.28), 
    0 0 0 1px #3A3A3C inset, 
    0 0 0 2.5px #0E0E10;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.fanned-phone-back {
  left: 15px;
  top: 25px;
  transform: rotate(-6deg) scale(0.93);
  z-index: 1;
  filter: brightness(0.95);
}

.fanned-phone-front {
  right: 15px;
  top: 45px;
  transform: rotate(3deg);
  z-index: 2;
}

.fanned-showcase-container:hover .fanned-phone-back {
  transform: rotate(-9deg) translate(-12px, -6px) scale(0.95);
  filter: brightness(1);
}

.fanned-showcase-container:hover .fanned-phone-front {
  transform: rotate(4deg) translate(8px, -4px) scale(1.02);
}



.calendar-card {
  background: var(--c-washi);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  position: relative;
  width: 100%;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--c-border-subtle);
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-month {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink);
}

.calendar-streak-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-hanko-red);
  background: rgba(209, 13, 20, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}

.cal-day-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-pass-gray);
  margin-bottom: 6px;
}

.cal-cell {
  aspect-ratio: 1;
  background: var(--c-washi-pure);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  transition: var(--transition);
  min-width: 0;
}

.cal-cell:hover {
  transform: scale(1.08);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cal-cell .day-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--c-pass-gray);
  position: absolute;
  top: 2px;
  left: 4px;
}

/* Stempel im Kalender */
.stamp-mini-hanko {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--c-hanko-red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-hanko-red);
  font-family: var(--font-stamp);
  font-size: 0.95rem;
  font-weight: 900;
  transform: rotate(-5deg);
  background: rgba(209, 13, 20, 0.04);
}

.stamp-mini-rest {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--c-pass-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-pass-gray);
  font-family: var(--font-stamp);
  font-size: 0.95rem;
  font-weight: 900;
  transform: rotate(3deg);
  background: rgba(128, 120, 110, 0.06);
}

.streak-info-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.bullet-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.bullet-text {
  font-size: 0.92rem;
  color: var(--c-ink-light);
  line-height: 1.5;
}

.rest-highlight {
  background: rgba(224, 173, 51, 0.12);
  border-left: 4px solid var(--c-gold);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  color: var(--c-ink);
  font-weight: 700;
}

/* ==========================================================================
   Begleiter (Tanuki, Shiba, Neko)
   ========================================================================== */
.companions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.companion-card {
  background: var(--c-washi);
  border-radius: var(--radius-card);
  padding: 24px 20px 28px;
  border: 1.5px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  margin-top: 24px;
}

#card-tanuki {
  background: linear-gradient(180deg, rgba(44, 107, 79, 0.06) 0%, var(--c-washi) 50%);
}

#card-shiba {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.06) 0%, var(--c-washi) 50%);
}

#card-neko {
  background: linear-gradient(180deg, rgba(224, 90, 110, 0.06) 0%, var(--c-washi) 50%);
}

.companion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(194, 58, 43, 0.35);
}

.companion-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--c-pass-gray);
  letter-spacing: 0.04em;
  z-index: 3;
}

.companion-img-wrap {
  width: 140px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -38px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.companion-img-wrap::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 173, 51, 0.16) 0%, rgba(209, 13, 20, 0.05) 70%);
  z-index: 1;
}

.companion-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.14));
  transition: transform 0.3s ease;
}

.companion-card:hover .companion-img-wrap img {
  transform: scale(1.05) translateY(-3px);
}

.companion-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.companion-kanji {
  font-family: var(--font-stamp);
  font-size: 0.95rem;
  color: var(--c-hanko-red);
  margin-bottom: 12px;
}

.companion-role {
  font-size: 0.92rem;
  color: var(--c-ink-light);
  line-height: 1.5;
}

/* ==========================================================================
   App-Einblicke (Original In-App Screenshots)
   ========================================================================== */
.showcase-deck-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  padding: 8px 0;
}

/* Tabs oben */
.showcase-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.showcase-tab-btn {
  appearance: none;
  border: 1px solid var(--c-border-subtle);
  background: var(--c-washi);
  color: var(--c-ink-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-washi);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-tab-pin {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.65;
  background: rgba(45, 30, 15, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.showcase-tab-btn:hover {
  color: var(--c-ink);
  border-color: rgba(184, 51, 42, 0.4);
  transform: translateY(-2px);
}

.showcase-tab-btn.is-active {
  background: var(--c-ink);
  color: #ffffff;
  border-color: var(--c-ink);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.22);
  transform: translateY(-2px);
}

.showcase-tab-btn.is-active .showcase-tab-pin {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  opacity: 1;
}

/* 3D Stage */
.showcase-stage {
  position: relative;
  width: 100%;
  height: 690px;
  perspective: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  touch-action: pan-y;
}

.showcase-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  background: var(--c-washi);
  border-radius: 28px;
  padding: 14px 14px 22px;
  border: 1px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.48s ease,
              filter 0.48s ease;
  will-change: transform, opacity;
}

/* 3D Card States */
.showcase-card.pos-active {
  transform: translateX(-50%) scale(1.02) rotate(0deg);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 26px 56px rgba(45, 30, 15, 0.20), 0 0 0 1.5px rgba(184, 51, 42, 0.22);
  pointer-events: auto;
  filter: blur(0);
}

.showcase-card.pos-prev {
  transform: translateX(calc(-50% - 240px)) scale(0.88) rotate(-4deg);
  opacity: 0.65;
  z-index: 5;
  box-shadow: 0 14px 32px rgba(45, 30, 15, 0.12);
  filter: blur(0.4px);
}

.showcase-card.pos-prev:hover {
  opacity: 0.88;
  transform: translateX(calc(-50% - 240px)) scale(0.91) rotate(-2deg);
}

.showcase-card.pos-next {
  transform: translateX(calc(-50% + 240px)) scale(0.88) rotate(4deg);
  opacity: 0.65;
  z-index: 5;
  box-shadow: 0 14px 32px rgba(45, 30, 15, 0.12);
  filter: blur(0.4px);
}

.showcase-card.pos-next:hover {
  opacity: 0.88;
  transform: translateX(calc(-50% + 240px)) scale(0.91) rotate(2deg);
}

.showcase-card.pos-hidden {
  transform: translateX(-50%) scale(0.7) translateY(40px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.showcase-device {
  width: 100%;
  background: #141416;
  border-radius: 36px;
  padding: 6px;
  box-shadow: 0 16px 36px rgba(45, 30, 15, 0.16), 0 0 0 1px #3A3A3C inset;
  margin-bottom: 18px;
  position: relative;
}

.showcase-screen {
  width: 100%;
  aspect-ratio: 472 / 1024;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  display: block;
  position: relative;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.showcase-info {
  padding: 0 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 110px;
}

.showcase-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-hanko-red);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.showcase-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.showcase-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-ink-light);
  margin: 0;
}

/* Stage Nav Buttons */
.showcase-stage-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  color: var(--c-ink);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 6px 20px rgba(45, 30, 15, 0.12);
  transition: all 0.2s ease;
}

.showcase-stage-btn:hover {
  background: var(--c-ink);
  color: #ffffff;
  border-color: var(--c-ink);
  transform: translateY(-50%) scale(1.08);
}

.showcase-stage-btn.stage-prev {
  left: calc(50% - 380px);
}

.showcase-stage-btn.stage-next {
  right: calc(50% - 380px);
}

/* Stage Indicator Dots */
.showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.showcase-dot {
  appearance: none;
  border: none;
  padding: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--c-border-subtle);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-dot:hover {
  background: var(--c-ink-light);
}

.showcase-dot.is-active {
  width: 28px;
  background: var(--c-hanko-red);
}

/* ==========================================================================
   Apple Watch Showcase & Mockups
   ========================================================================== */
.watch-showcase-section {
  margin-top: 68px;
  padding-top: 54px;
  border-top: 1px dashed var(--c-border-subtle);
  position: relative;
}

.watch-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
}

.watch-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.watch-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-ink-light);
  margin: 0 auto;
}

/* ==========================================================================
   Apple Watch & iPhone Duo Stage (Marius' Detailseite + Apple Watch Series 10)
   ========================================================================== */
.duo-stage-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  max-width: 720px;
  margin: 32px auto 0;
  position: relative;
}

.duo-iphone-wrap {
  flex-shrink: 0;
}

.showcase-iphone {
  width: 255px;
  max-width: 100%;
}

.duo-watch-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.duo-watch-img {
  width: 195px;
  height: auto;
  display: block;
  filter: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
}

.duo-watch-img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Washi & Sumi Homescreen Widgets Preview Row */
.widgets-compact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 44px auto 0;
  padding-top: 36px;
  border-top: 1px dashed var(--c-border-subtle);
}

.widget-preview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.3s ease;
}

.widget-preview-item:hover {
  transform: translateY(-5px);
}

.widget-preview-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
  transition: box-shadow 0.3s ease;
}

.widget-preview-item:hover .widget-preview-img {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.widget-preview-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-pass-gray);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Home Screen Widgets: Der kreative Ticket- & Widget-Haufen (Pile)
   ========================================================================== */
.widgets-pile-container {
  position: relative;
  max-width: 1040px;
  margin: 16px auto 10px;
  padding: 10px 0 20px;
}

.widgets-pile-stage {
  position: relative;
  width: 100%;
  height: 570px;
  margin: 0 auto 24px;
}

.pile-item {
  position: absolute;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.36s cubic-bezier(0.175, 0.885, 0.32, 1.25), box-shadow 0.3s ease, z-index 0s;
  will-change: transform;
}

.pile-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
  background: rgba(0, 0, 0, 0.03);
}

.pile-img {
  width: 100%;
  height: auto;
  display: block;
}



/* Hover-Effekt: Schweben & Aufrichten */
.pile-item:hover {
  transform: scale(1.08) translateY(-14px) rotate(0deg) !important;
  z-index: 50 !important;
}

.pile-item:hover .pile-card {
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.24);
}

/* Exakte Desktop-Koordinaten für den organischen Haufen */
/* 1. Ticket Washi (Center-Left) */
.pile-ticket-light {
  width: 375px;
  left: 20%;
  top: 130px;
  transform: rotate(-3.5deg);
  z-index: 4;
}

/* 2. Ticket Sumi (Center-Right, leicht versetzt darüber) */
.pile-ticket-dark {
  width: 375px;
  left: 36%;
  top: 220px;
  transform: rotate(3deg);
  z-index: 6;
}

/* 3. Small Station Washi (Links oben) */
.pile-station-light {
  width: 175px;
  left: 10%;
  top: 60px;
  transform: rotate(-7deg);
  z-index: 5;
}

/* 4. Small Station Sumi (Rechts oben) */
.pile-station-dark {
  width: 175px;
  left: 74%;
  top: 150px;
  transform: rotate(6deg);
  z-index: 7;
}

/* 5. Medium Week Washi (Links unten) */
.pile-week-light {
  width: 375px;
  left: 5%;
  top: 310px;
  transform: rotate(-2deg);
  z-index: 5;
}

/* 6. Medium Week Sumi (Rechts oben) */
.pile-week-dark {
  width: 375px;
  left: 50%;
  top: 50px;
  transform: rotate(-1.5deg);
  z-index: 3;
}

/* 7. Small Steps Washi (Rechts unten) */
.pile-steps-light {
  width: 175px;
  left: 73%;
  top: 320px;
  transform: rotate(-4.5deg);
  z-index: 8;
}

/* 8. Small Steps Sumi (Mitte unten) */
.pile-steps-dark {
  width: 175px;
  left: 33%;
  top: 360px;
  transform: rotate(5deg);
  z-index: 7;
}

/* Interaktions-Hinweisleiste */
.pile-hint-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 14px auto 0;
  padding: 14px 24px;
  background: var(--c-washi);
  border-radius: 30px;
  border: 1px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  max-width: 820px;
}

.pile-hint-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--c-ink-light);
  font-weight: 600;
}

.pile-hint-icon {
  font-size: 0.88rem;
  color: var(--c-hanko-red);
}

/* ==========================================================================
   Preise (Explorer Pass)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  gap: 22px;
}

.pricing-card {
  background: var(--c-washi);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  border: 1.5px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card-free {
  border: 1.5px solid rgba(44, 107, 79, 0.35);
  background: linear-gradient(180deg, rgba(44, 107, 79, 0.04) 0%, var(--c-washi) 35%);
}

.pricing-card.featured {
  background: var(--c-washi-pure);
  border: 2px solid var(--c-gold);
  box-shadow: 0 12px 36px rgba(224, 173, 51, 0.2);
}

.pricing-badge-popular {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--c-gold);
  color: #26262E;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-badge-free {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--c-pine);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(44, 107, 79, 0.25);
}

.pricing-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: 6px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 6px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--c-ink);
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--c-pass-gray);
  font-weight: 600;
}

.pricing-savings {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-mint-dark);
  margin-bottom: 22px;
  min-height: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-ink-light);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--c-hanko-red);
  flex-shrink: 0;
}

.pricing-card .btn-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  background: var(--c-washi);
  border: 1.5px solid var(--c-border-subtle);
  color: var(--c-ink);
  transition: var(--transition);
  display: block;
}

.pricing-card.featured .btn-cta {
  background: var(--c-hanko-red);
  color: #fff;
  border-color: var(--c-hanko-red);
  box-shadow: var(--shadow-hanko);
}

.pricing-card .btn-cta.btn-cta-free {
  border-color: rgba(44, 107, 79, 0.45);
  color: var(--c-pine);
  background: var(--c-washi);
}

.pricing-card .btn-cta.btn-cta-free:hover {
  background: var(--c-pine);
  border-color: var(--c-pine);
  color: #fff;
}

.pricing-card .btn-cta:hover {
  transform: translateY(-2px);
  background: var(--c-hanko-dark);
  color: #fff;
}

.pricing-note {
  display: block;
  width: fit-content;
  max-width: 92%;
  margin: 28px auto 0;
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--c-border-subtle);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}

/* ==========================================================================
   Datenschutz-Aussage
   ========================================================================== */
.privacy-banner-card {
  background: var(--c-washi);
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.privacy-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(44, 107, 79, 0.1);
  color: var(--c-mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.privacy-point-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.privacy-point-text {
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--c-washi);
  border: 1px solid var(--c-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: none;
}

.faq-icon-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  fill: var(--c-pass-gray);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
  fill: var(--c-hanko-red);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: var(--c-ink-light);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: 60px;
  padding: 56px 0 calc(40px + env(safe-area-inset-bottom, 0px));
  background: rgba(236, 226, 212, 0.5);
  border-top: 1.5px solid rgba(224, 173, 51, 0.3);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--c-ink-light);
  margin: 14px 0 20px;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-pass-gray);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--c-hanko-red);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--c-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--c-pass-gray);
}

/* ==========================================================================
   Rechtliche Unterseiten (Datenschutz, Impressum, Support, Presse)
   ========================================================================== */
.legal-page-wrap {
  padding: 50px 0 90px;
}

.legal-card {
  background: var(--c-washi);
  border-radius: var(--radius-card);
  padding: 44px;
  border: 1px solid var(--c-border-subtle);
  box-shadow: var(--shadow-washi);
  max-width: 820px;
  margin: 0 auto;
}

.legal-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.legal-card .legal-subtitle {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--c-hanko-red);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  display: block;
}

.legal-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: 30px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-border-subtle);
}

.legal-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: 20px 0 8px;
}

.legal-card p {
  font-size: 0.98rem;
  color: var(--c-ink-light);
  line-height: 1.65;
  margin-bottom: 14px;
}

.legal-card ul {
  padding-left: 22px;
  margin-bottom: 18px;
  color: var(--c-ink-light);
}

.legal-card li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.legal-bullet-box {
  background: var(--c-washi-pure);
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--c-border-subtle);
  margin: 20px 0;
}

.contact-card-box {
  background: var(--c-washi-pure);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--c-border-subtle);
  margin-top: 22px;
}

.contact-info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--c-ink);
  font-weight: 700;
  margin-bottom: 8px;
}

.press-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.asset-download-card {
  background: var(--c-washi-pure);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--c-border-subtle);
  display: flex;
  align-items: center;
  gap: 16px;
}

.asset-thumb {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESPONSIVE DESIGN: iPad & Tablets (768px bis 1024px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .iphone-mockup {
    width: 255px;
    border-radius: 46px;
    padding: 7px;
  }

  .iphone-screen {
    border-radius: 39px;
  }

  .hinode-sun {
    width: 380px;
    height: 380px;
  }

  .hero-floating-badge {
    left: -15px;
    bottom: 180px;
    padding: 10px 14px;
  }

  .hero-floating-badge-watch {
    left: auto;
    right: -15px;
    bottom: 60px;
  }

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

  .tour-mobile-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }

  .tour-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--c-washi);
    border: 1px solid var(--c-border-subtle);
    border-radius: 9999px;
    padding: 7px 16px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--c-ink-light);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .tour-tab-btn .tab-pin {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(209, 13, 20, 0.1);
    color: var(--c-hanko-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    transition: all 0.25s ease;
  }

  .tour-tab-btn.is-active {
    background: #FFFFFF;
    border-color: var(--c-hanko-red);
    color: var(--c-ink);
    box-shadow: 0 4px 14px rgba(209, 13, 20, 0.16);
    transform: translateY(-2px);
  }

  .tour-tab-btn.is-active .tab-pin {
    background: var(--c-hanko-red);
    color: #FFFFFF;
  }

  .tour-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .tour-center {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .tour-card {
    order: 2;
    width: 100%;
    display: none;
    animation: fadeInTourStep 0.35s ease;
  }

  .tour-card.is-active {
    display: flex;
  }

  .tour-arrow {
    display: none;
  }

  .tour-hotspot.is-active .hotspot-callout {
    opacity: 1;
    transform: scale(1);
  }

  .tour-mobile-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
  }

  .tour-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-washi);
    border: 1px solid var(--c-border-subtle);
    color: var(--c-ink);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-washi);
    transition: all 0.2s ease;
  }

  .tour-nav-btn:hover,
  .tour-nav-btn:active {
    border-color: var(--c-hanko-red);
    color: var(--c-hanko-red);
    transform: scale(1.08);
  }

  .tour-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .tour-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.16);
    border: none;
    padding: 0;
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .tour-dot.is-active {
    width: 24px;
    border-radius: 9999px;
    background: var(--c-hanko-red);
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .streak-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .calendar-card {
    max-width: 580px;
    margin: 0 auto;
  }

  .companions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .showcase-stage {
    height: 640px;
  }

  .showcase-card {
    width: 290px;
  }

  .showcase-card.pos-prev {
    transform: translateX(calc(-50% - 200px)) scale(0.86) rotate(-3.5deg);
  }

  .showcase-card.pos-next {
    transform: translateX(calc(-50% + 200px)) scale(0.86) rotate(3.5deg);
  }

  .showcase-stage-btn.stage-prev {
    left: 10px;
  }

  .showcase-stage-btn.stage-next {
    right: 10px;
  }

  .companion-card {
    padding: 24px 14px;
  }

  .companion-img-wrap {
    width: 120px;
    height: 140px;
  }

  .widgets-pile-stage {
    height: 500px;
  }

  .pile-ticket-light,
  .pile-ticket-dark,
  .pile-week-light,
  .pile-week-dark {
    width: 320px;
  }

  .pile-station-light,
  .pile-station-dark,
  .pile-steps-light,
  .pile-steps-dark {
    width: 150px;
  }

  .fanned-showcase-container {
    max-width: 420px;
    height: 520px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-grid-3col {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 24px;
  }

  .privacy-banner-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .duo-stage-wrap {
    gap: 24px;
    max-width: 600px;
  }
  .showcase-iphone {
    width: 220px;
  }
  .duo-watch-img {
    width: 160px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN: iPhone & Mobile (< 900px)
   Speziell optimiert für elegante Darstellung auf Smartphones & Tablets
   ========================================================================== */
@media (max-width: 900px) {
  .container {
    padding: 0 16px;
  }

  /* Header & Navigation auf dem Smartphone */
  .site-header {
    height: auto;
  }

  .site-header::before {
    background-size: 46px 23px;
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) calc(env(safe-area-inset-top, 0px) * 0.25),
      rgba(0, 0, 0, 1) calc(env(safe-area-inset-top, 0px) * 0.8 + 6px),
      rgba(0, 0, 0, 1) calc(100% - 8px),
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) calc(env(safe-area-inset-top, 0px) * 0.25),
      rgba(0, 0, 0, 1) calc(env(safe-area-inset-top, 0px) * 0.8 + 6px),
      rgba(0, 0, 0, 1) calc(100% - 8px),
      rgba(0, 0, 0, 0) 100%
    );
  }

  .nav-wrap {
    height: 60px;
  }

  .brand-logo {
    gap: 9px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-kanji {
    font-size: 0.62rem;
  }

  /* Header Nav-Actions auf dem Smartphone: Nur der Sprachchange-Button */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-actions .lang-switcher {
    display: inline-flex !important;
    align-items: center;
    background: rgba(128, 120, 110, 0.12);
    padding: 3px;
    border-radius: 20px;
    gap: 2px;
  }

  .nav-actions .lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    background: transparent;
    color: var(--c-ink-muted);
    cursor: pointer;
    transition: var(--transition);
  }

  .nav-actions .lang-btn.active {
    background: #ffffff;
    color: var(--c-hanko-red);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-weight: 800;
  }

  /* Mobil den Header ultraclean halten: Nur der Sprachchange-Button */
  .nav-actions .btn-cta-small {
    display: none !important;
  }

  /* Auf Mobilgeräten kein Hamburger-Menü nötig: Nutzer scrollt ganz natürlich */
  .nav-menu,
  .menu-toggle,
  .mobile-menu-backdrop {
    display: none !important;
  }

  /* Hero Section auf dem Phone */
  .hero-section {
    padding: 24px 0 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-content {
    align-items: center;
  }

  .sub-label {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.52;
    margin-bottom: 18px;
  }

  .hero-badges {
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
  }

  .app-store-btn img {
    height: 44px;
  }

  .hero-trust-pills {
    justify-content: center;
    gap: 6px 8px;
  }

  .trust-pill {
    padding: 5px 10px;
    font-size: 0.74rem;
  }

  .hero-privacy-pill {
    padding: 7px 12px;
    font-size: 0.74rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-companion-strip {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 7px 12px;
  }

  /* iPhone-Mockup auf Smartphones */
  .hero-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-bottom: 10px;
    position: relative;
  }

  .hinode-sun {
    width: min(320px, 82vw);
    height: min(320px, 82vw);
    top: 40%;
  }

  .iphone-mockup {
    width: 250px;
    max-width: 72vw;
    flex-shrink: 0;
    margin: 0 auto;
    border-radius: 46px;
    padding: 7px;
    box-shadow: 0 18px 45px -10px rgba(45, 30, 15, 0.28), 0 0 0 1px #48484A inset, 0 0 0 2px #121214;
  }

  .iphone-screen {
    width: 100%;
    aspect-ratio: 472 / 1024;
    border-radius: 39px;
    overflow: hidden;
    background: #000;
    position: relative;
    display: block;
  }

  .iphone-screen-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mockup-img-wrap {
    height: 110px;
  }

  .mockup-stamp-float {
    width: 44px;
    height: 44px;
  }

  .mockup-stamp-float .stamp-kanji {
    font-size: 1.1rem;
  }

  /* Floating Badges auf Smartphones ausblenden (verhindert klobiges Drunterstehen) */
  .hero-floating-badge {
    display: none;
  }

  /* So funktioniert's auf Smartphones */
  .section {
    padding: 38px 0;
  }

  .section-divider {
    max-width: 220px;
    gap: 12px;
  }

  .section-divider-dot {
    width: 6px;
    height: 6px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tour-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 440px;
    margin: 0 auto;
  }

  .tour-phone-chassis {
    max-width: 235px;
    border-radius: 44px;
    padding: 6.5px;
  }

  .tour-phone-screen {
    border-radius: 38px;
  }

  .tour-card {
    padding: 18px 16px;
  }

  .step-card {
    padding: 20px 16px;
  }

  /* Routen-Tickets auf Smartphones */
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ticket-header-img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 170px;
  }

  .ticket-body {
    padding: 10px 18px 18px;
  }

  .ticket-title {
    font-size: 1.15rem;
  }

  .ticket-subtitle {
    font-size: 0.88rem;
  }

  /* Kalender & Serie auf Smartphones */
  .streak-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fanned-showcase-container {
    max-width: 310px;
    height: 420px;
    margin-bottom: 8px;
  }

  .fanned-phone {
    width: 180px;
    border-radius: 36px;
    padding: 6px;
    overflow: hidden;
    box-shadow: 
      0 18px 45px -8px rgba(45, 30, 15, 0.26), 
      0 0 0 1px #48484A inset, 
      0 0 0 2px #121214;
  }

  .fanned-phone .streak-phone-screen {
    border-radius: 30px;
  }

  .fanned-phone-back {
    left: 10px;
    top: 10px;
    transform: rotate(-5deg) scale(0.92);
  }

  .fanned-phone-front {
    right: 10px;
    top: 22px;
    transform: rotate(3deg);
  }

  .calendar-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .calendar-month {
    font-size: 1.05rem;
  }

  .calendar-grid {
    gap: 5px;
  }

  .cal-cell {
    border-radius: 8px;
  }

  .cal-cell .day-num {
    font-size: 0.55rem;
    top: 1px;
    left: 3px;
  }

  .stamp-mini-hanko,
  .stamp-mini-rest {
    width: 22px;
    height: 22px;
    font-size: 0.78rem;
    border-width: 1.2px;
  }

  /* Begleiter auf Smartphones: Horizontaler Swipe-Snap Strip */
  .companions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 36px 16px 20px;
    margin: 0 -16px;
    gap: 16px;
    scrollbar-width: none;
  }

  .companions-grid::-webkit-scrollbar {
    display: none;
  }

  .companion-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
    padding: 22px 18px 24px;
    margin-top: 20px;
  }

  .companion-img-wrap {
    width: 130px;
    height: 150px;
    margin-top: -34px;
  }

  /* App-Einblicke 3D Spotlight auf Smartphones */
  .showcase-tabs {
    gap: 8px;
    margin-bottom: 22px;
  }

  .showcase-tab-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
    gap: 6px;
  }

  .showcase-stage {
    height: 570px;
    overflow: hidden;
  }

  .showcase-card {
    width: 260px;
    padding: 10px 10px 16px;
    border-radius: 24px;
  }

  .showcase-card.pos-prev {
    transform: translateX(calc(-50% - 150px)) scale(0.82) rotate(-3deg);
    opacity: 0.45;
  }

  .showcase-card.pos-next {
    transform: translateX(calc(-50% + 150px)) scale(0.82) rotate(3deg);
    opacity: 0.45;
  }

  .showcase-device {
    border-radius: 24px;
    padding: 5px;
    margin-bottom: 12px;
  }

  .showcase-screen {
    border-radius: 19px;
  }

  .showcase-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .showcase-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .showcase-stage-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .showcase-stage-btn.stage-prev {
    left: 4px;
  }

  .showcase-stage-btn.stage-next {
    right: 4px;
  }

  .showcase-dots {
    margin-top: 18px;
  }

  /* Widget-Haufen auf Smartphones (Fließender Stapel) */
  .widgets-pile-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 20px;
  }

  .pile-item {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 92% !important;
    max-width: 350px !important;
  }

  .pile-ticket-light {
    transform: rotate(-2deg);
    z-index: 2;
  }

  .pile-ticket-dark {
    transform: rotate(2.5deg);
    margin-top: -36px;
    z-index: 3;
  }

  .pile-station-light {
    transform: rotate(-3.5deg);
    margin-top: -26px;
    width: 210px !important;
    z-index: 4;
  }

  .pile-station-dark {
    transform: rotate(4deg);
    margin-top: -30px;
    width: 210px !important;
    z-index: 5;
  }

  .pile-week-light {
    transform: rotate(-1.5deg);
    margin-top: -26px;
    z-index: 6;
  }

  .pile-week-dark {
    transform: rotate(2.5deg);
    margin-top: -36px;
    z-index: 7;
  }

  .pile-steps-light {
    transform: rotate(-3deg);
    margin-top: -26px;
    width: 210px !important;
    z-index: 8;
  }

  .pile-steps-dark {
    transform: rotate(3.5deg);
    margin-top: -30px;
    width: 210px !important;
    z-index: 9;
  }

  .pile-hint-bar {
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 20px;
    text-align: center;
  }

  /* Apple Watch & iPhone Duo Stage auf Smartphones */
  .duo-stage-wrap {
    gap: 14px;
    max-width: 320px;
    margin: 14px auto 0;
    justify-content: center;
    align-items: center;
  }

  .showcase-iphone {
    width: 160px;
    border-radius: 32px;
    padding: 5px;
  }

  .showcase-iphone .iphone-screen {
    border-radius: 27px;
  }

  .duo-watch-img {
    width: 125px;
  }

  @media (max-width: 350px) {
    .duo-stage-wrap {
      gap: 8px;
      max-width: 290px;
    }
    .showcase-iphone {
      width: 145px;
    }
    .duo-watch-img {
      width: 115px;
    }
  }

  /* Widgets horizontal durchswipebar auf Smartphones */
  .widgets-compact-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    max-width: 100%;
    margin: 20px -16px 0;
    padding: 8px 16px 16px;
    scrollbar-width: none;
    border-top: 1px dashed var(--c-border-subtle);
  }

  .widgets-compact-row::-webkit-scrollbar {
    display: none;
  }

  .widget-preview-item {
    flex: 0 0 230px;
    scroll-snap-align: center;
  }

  .widget-preview-img {
    max-width: 230px;
  }

  /* Preise auf Smartphones */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
  }

  .pricing-grid-3col {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 16px;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-price {
    font-size: 2.2rem;
  }

  /* Datenschutz-Aussage auf Smartphones */
  .privacy-banner-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  /* Footer auf Smartphones */
  .site-footer {
    margin-top: 24px;
    padding: 36px 0 calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Rechtliche Seiten */
  .legal-card {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .press-assets-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header::before {
    background-size: 40px 20px;
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) calc(env(safe-area-inset-top, 0px) * 0.2),
      rgba(0, 0, 0, 1) calc(env(safe-area-inset-top, 0px) * 0.75 + 6px),
      rgba(0, 0, 0, 1) calc(100% - 6px),
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) calc(env(safe-area-inset-top, 0px) * 0.2),
      rgba(0, 0, 0, 1) calc(env(safe-area-inset-top, 0px) * 0.75 + 6px),
      rgba(0, 0, 0, 1) calc(100% - 6px),
      rgba(0, 0, 0, 0) 100%
    );
  }

  .section {
    padding: 32px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }
  .showcase-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  .showcase-tabs::-webkit-scrollbar {
    display: none;
  }

  .showcase-tab-btn {
    flex-shrink: 0;
    font-size: 0.76rem;
    padding: 7px 12px;
  }

  .showcase-stage {
    height: 540px;
  }

  .showcase-card {
    width: 236px;
  }

  .showcase-card.pos-prev {
    transform: translateX(calc(-50% - 130px)) scale(0.8) rotate(-3deg);
    opacity: 0.35;
  }

  .showcase-card.pos-next {
    transform: translateX(calc(-50% + 130px)) scale(0.8) rotate(3deg);
    opacity: 0.35;
  }
}

/* ==========================================================================
   Feinschliff für kleine iPhones (iPhone SE, iPhone mini, < 380px)
   ========================================================================== */
@media (max-width: 380px) {
  .brand-kanji {
    display: none;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .iphone-mockup {
    width: 228px;
    max-width: 76vw;
    flex-shrink: 0;
    margin: 0 auto;
    border-radius: 42px;
    padding: 6px;
  }

  .iphone-screen {
    border-radius: 36px;
  }

  .fanned-showcase-container {
    max-width: 280px;
    height: 388px;
    margin-bottom: 4px;
  }

  .fanned-phone {
    width: 165px;
    border-radius: 32px;
    padding: 5px;
    overflow: hidden;
  }

  .fanned-phone .streak-phone-screen {
    border-radius: 27px;
  }

  .fanned-phone-back {
    left: 4px;
    top: 8px;
  }

  .fanned-phone-front {
    right: 4px;
    top: 18px;
  }

  .calendar-grid {
    gap: 3px;
  }

  .stamp-mini-hanko,
  .stamp-mini-rest {
    width: 19px;
    height: 19px;
    font-size: 0.7rem;
  }

  .lang-btn {
    padding: 4px 6px;
    gap: 2px;
  }

  .lang-flag {
    font-size: 0.88rem;
  }

  .btn-cta-small {
    padding: 5px 11px;
    font-size: 0.75rem;
  }
}

@media (max-width: 350px) {
  .lang-switcher .lang-text {
    display: none;
  }
}




.footer-badge-ondevice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--c-border-subtle);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
