/* ==========================================================================
   styles-organic-mockup.css – Tiva Webseite
   Requires: base.css (loaded first in every HTML page)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Layout container (Webseite uses side-pad, Studio uses fixed max-width)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: none;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* --------------------------------------------------------------------------
   Landing page shell
   -------------------------------------------------------------------------- */
.landing-main {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(14px, 2.2vh, 24px);
  padding-top: calc(var(--header-h) + clamp(12px, 2.6vh, 24px));
  padding-bottom: clamp(30px, 6.4vh, 66px);
}

.logo-block,
.text-block,
.landing-footer {
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Landing content grid
   -------------------------------------------------------------------------- */
.landing-content {
  width: 100%;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 620px);
  gap: clamp(14px, 2.2vw, 28px);
  align-items: start;
  margin-top: clamp(8px, 1.8vh, 16px);
  margin-bottom: clamp(20px, 4vh, 34px);
}

/* --------------------------------------------------------------------------
   Logo block
   -------------------------------------------------------------------------- */
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-wrapper {
  width: 84px;
  height: 65px;
  overflow: hidden;
  margin: 0;
  animation: tiva-logo-breath 18s ease-in-out infinite;
}

.logo-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.logo-tagline {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-align: left;
}

.logo-tagline-line {
  display: block;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Text block – main copy
   -------------------------------------------------------------------------- */
.text-block {
  max-width: 63ch;
}

.offer-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}

.offer-accent {
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--accent);
}

.offer-body {
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
}

.offer-closure {
  margin: 24px 0 0;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}

.offer-context {
  margin-top: 24px;
  max-width: 64ch;
}

.offer-context-title {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}

.offer-context p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}

.offer-context p + .offer-context-title {
  margin-top: 20px;
}

.offer-context p:last-child {
  margin-bottom: 0;
}

.text-block strong {
  color: var(--accent);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Home preview panel (index only)
   -------------------------------------------------------------------------- */
.tiva-home-hero {
  position: relative;
  width: 100%;
  min-height: clamp(230px, 27vh, 294px);
  margin: clamp(4px, 0.8vh, 10px) 0 clamp(10px, 1.8vh, 20px);
  overflow: hidden;
  border: 1px solid rgba(172, 165, 151, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 58% 46%, rgba(221, 236, 214, 0.72), transparent 31%),
    linear-gradient(105deg, rgba(255, 253, 248, 0.86), rgba(244, 239, 230, 0.7));
  box-shadow: 0 18px 42px rgba(94, 85, 72, 0.11);
  padding: clamp(20px, 3.1vw, 42px);
}

.tiva-home-hero.reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

.tiva-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(94, 85, 72, 0.11) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
  opacity: 0.18;
  pointer-events: none;
}

.tiva-home-wave {
  position: absolute;
  left: 28%;
  right: 18%;
  top: 48%;
  height: 42px;
  pointer-events: none;
  opacity: 0.34;
}

.tiva-home-wave::before,
.tiva-home-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(107, 128, 100, 0.34);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.tiva-home-wave::after {
  top: 13px;
  border-color: rgba(157, 132, 103, 0.22);
  transform: rotate(3deg);
}

.tiva-home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(190px, 1fr) minmax(140px, 0.7fr) minmax(190px, 1fr);
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  min-height: inherit;
}

.tiva-home-statement h2,
.tiva-home-card h3,
.tiva-home-agent-name {
  margin: 0;
}

.tiva-home-statement h2 {
  color: var(--ink);
  font-size: clamp(1.38rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.tiva-home-statement .future {
  display: block;
  color: var(--accent);
}

.tiva-home-progress {
  width: min(100%, 190px);
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.tiva-home-progress span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(220, 232, 214, 0.68);
}

.tiva-home-progress span::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
}

.tiva-home-progress .green::before {
  width: 34%;
  background: rgba(107, 128, 100, 0.82);
}

.tiva-home-progress .brown {
  background: rgba(224, 218, 207, 0.72);
}

.tiva-home-progress .brown::before {
  width: 25%;
  background: rgba(157, 132, 103, 0.62);
}

.tiva-home-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(172, 165, 151, 0.32);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.tiva-home-card h3 {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.55vw, 1.26rem);
  line-height: 1.2;
}

.tiva-home-card.signal-card h3 {
  color: var(--ink);
}

.tiva-home-card.build-card h3 {
  color: var(--accent);
}

.tiva-mini-signals,
.tiva-mini-person,
.tiva-mini-stairs {
  width: min(130px, 48%);
  min-width: 82px;
  height: 64px;
}

.tiva-mini-signals {
  justify-self: center;
  position: relative;
}

.tiva-mini-signals::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 4px solid rgba(157, 132, 103, 0.72);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.42);
}

.tiva-mini-signals::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 42px;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(157, 132, 103, 0.72);
  transform: rotate(35deg);
  transform-origin: left center;
}

.tiva-mini-signals i,
.tiva-mini-signals i::before,
.tiva-mini-signals i::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tiva-mini-signals i {
  right: 32px;
  top: 14px;
  background: rgba(107, 128, 100, 0.82);
}

.tiva-mini-signals i::before {
  right: 28px;
  top: 22px;
  background: rgba(157, 132, 103, 0.68);
}

.tiva-mini-signals i::after {
  right: -18px;
  top: 28px;
  background: rgba(107, 128, 100, 0.7);
}

.tiva-mini-signals b {
  position: absolute;
  right: 18px;
  top: 28px;
  width: 74px;
  height: 22px;
  border-top: 3px solid rgba(107, 128, 100, 0.42);
  border-bottom: 3px solid rgba(157, 132, 103, 0.28);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.tiva-mini-person {
  justify-self: center;
  position: relative;
}

.tiva-mini-person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  width: 34px;
  height: 34px;
  border: 4px solid rgba(157, 151, 139, 0.86);
  border-radius: 50%;
  transform: translateX(-50%);
}

.tiva-mini-person::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 9px;
  height: 16px;
  border-bottom: 4px solid rgba(157, 151, 139, 0.86);
  border-radius: 50%;
}

.tiva-mini-stairs {
  justify-self: center;
  position: relative;
}

.tiva-mini-stairs::before,
.tiva-mini-stairs::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 42px;
  border-left: 5px solid rgba(107, 128, 100, 0.78);
  border-bottom: 5px solid rgba(107, 128, 100, 0.78);
  transform: skew(-30deg);
}

.tiva-mini-stairs::after {
  left: 42px;
  bottom: 24px;
  border-color: rgba(157, 132, 103, 0.72);
}

.tiva-card-bars {
  display: grid;
  gap: 7px;
}

.tiva-card-bars span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(224, 218, 207, 0.72);
}

.tiva-card-bars span::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
}

.tiva-card-bars .green::before { width: 34%; background: rgba(107, 128, 100, 0.78); }
.tiva-card-bars .brown::before { width: 25%; background: rgba(157, 132, 103, 0.56); }
.build-card .tiva-card-bars .green::before { width: 66%; }
.build-card .tiva-card-bars .brown::before { width: 75%; }

.tiva-home-agent {
  display: grid;
  justify-items: center;
  gap: 12px;
  align-self: center;
}

.tiva-agent-bubble {
  width: clamp(82px, 10vw, 128px);
  height: clamp(82px, 10vw, 128px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.76), rgba(210, 226, 204, 0.62)),
    rgba(220, 232, 214, 0.72);
  border: 10px solid rgba(236, 247, 231, 0.84);
  box-shadow: 0 0 0 1px rgba(114, 135, 109, 0.32);
}

.tiva-agent-bubble img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: saturate(0) brightness(0.68) sepia(0.95) hue-rotate(35deg) saturate(1.6);
}

.tiva-home-agent-name {
  color: var(--ink);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 800;
  text-align: center;
}

.home-preview-panel {
  width: 100%;
  align-self: start;
  margin-top: clamp(74px, 7.4vw, 98px);
}

.home-agent-preview {
  width: 100%;
  border: 1px dashed color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel-bg) 95%, #dce5d4 5%);
  box-shadow: 0 16px 32px rgba(94, 85, 72, 0.08);
  padding: clamp(12px, 1.5vw, 16px);
}

.home-agent-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.home-agent-name,
.home-agent-sub,
.home-experience-title,
.home-experience-label,
.home-experience-question,
.home-experience-answer,
.home-experience-feedback {
  margin: 0;
}

.home-agent-name {
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
}

.home-agent-sub {
  margin-top: 5px;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.home-agent-mark {
  flex: 0 0 auto;
  width: clamp(42px, 4.6vw, 54px);
  height: clamp(42px, 4.6vw, 54px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 135, 109, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.72), rgba(210, 226, 204, 0.6)),
    color-mix(in srgb, var(--accent) 12%, var(--panel-bg));
}

.home-agent-mark img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  opacity: 0.72;
}

.home-experience-preview {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--panel-bg) 90%, #dce5d4 10%),
    color-mix(in srgb, var(--panel-bg) 70%, #dce5d4 30%)
  );
}

.home-experience-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(180, 171, 154, 0.34);
}

.home-experience-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--muted);
}

.home-experience-title strong {
  color: var(--ink);
  font-weight: 800;
}

.home-experience-toggle {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(70, 96, 64, 0.42);
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf0;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.home-experience-toggle:hover,
.home-experience-toggle:focus-visible {
  background: color-mix(in srgb, var(--accent) 86%, #2f3b2d 14%);
}

.home-experience-stage {
  position: relative;
  min-height: clamp(132px, 14vw, 172px);
  padding: clamp(14px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.58);
}

.home-experience-playhead {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(180, 171, 154, 0.5);
}

.home-experience-playhead::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform-origin: left center;
  animation: home-experience-progress 15s linear infinite;
}

.home-experience-scene {
  position: absolute;
  inset: clamp(14px, 2vw, 20px) clamp(14px, 2vw, 20px) 28px;
  display: grid;
  align-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  animation: home-experience-scene 15s ease-in-out infinite;
}

.home-experience-scene-2 { animation-delay: 5s; }
.home-experience-scene-3 { animation-delay: 10s; }

.home-experience-label {
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-experience-question,
.home-experience-answer,
.home-experience-feedback {
  max-width: min(100%, 540px);
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.5;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(94, 85, 72, 0.06);
}

.home-experience-answer,
.home-experience-feedback {
  margin-left: auto;
  border-color: rgba(114, 135, 109, 0.34);
  background: rgba(236, 245, 233, 0.86);
}

.home-experience-preview.is-paused .home-experience-playhead::before,
.home-experience-preview.is-paused .home-experience-scene {
  animation-play-state: paused;
}

@keyframes home-experience-scene {
  0%, 28% {
    opacity: 1;
    transform: translateY(0);
  }

  33%, 100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes home-experience-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* --------------------------------------------------------------------------
   Home launch panel
   -------------------------------------------------------------------------- */
.home-launch-panel {
  width: 100%;
  margin-bottom: clamp(22px, 4.2vh, 42px);
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(94, 85, 72, 0.08);
  padding: clamp(18px, 2.4vh, 24px) clamp(20px, 2.8vw, 34px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(14px, 2.2vw, 30px);
}

.home-launch-copy {
  max-width: 88ch;
}

.home-launch-kicker {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-launch-title {
  margin: 8px 0 10px;
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.35;
  color: var(--ink);
}

.home-launch-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
  color: var(--ink-soft);
}

.home-launch-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Content page shell
   -------------------------------------------------------------------------- */
.page-main {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-h) + clamp(12px, 2.3vh, 20px));
  padding-bottom: clamp(26px, 5.5vh, 56px);
}

/* --------------------------------------------------------------------------
   Content panels
   -------------------------------------------------------------------------- */
.page-panel {
  width: 100%;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(94, 85, 72, 0.08);
  padding: clamp(18px, 2.8vh, 28px) clamp(20px, 2.8vw, 36px);
}

.page-panel h1,
.page-panel h2,
.page-panel p,
.page-panel ul,
.page-panel li {
  margin-left: 0;
  text-align: left;
}

.page-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  color: var(--ink);
}

.page-panel h2 {
  margin: 24px 0 10px;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.35;
  color: var(--ink);
}

.page-panel p {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.page-panel ul {
  margin: 0 0 0 18px;
  padding: 0;
}

.page-panel li {
  margin-bottom: 8px;
}

.page-intro {
  margin: 0 0 22px;
  max-width: 88ch;
  color: var(--muted);
}

.page-lead {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Footer (Webseite variant)
   -------------------------------------------------------------------------- */
.page-footer {
  margin-top: clamp(34px, 6.8vh, 68px);
}

.landing-footer {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Über Tiva – typography fine-tuning
   -------------------------------------------------------------------------- */
.ueber-panel h1 {
  margin-bottom: 14px;
  max-width: min(100%, 24ch);
  text-wrap: balance;
}

.ueber-panel h2 {
  margin-top: clamp(20px, 3vh, 28px);
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.75vw, 1.26rem);
  line-height: 1.28;
  max-width: min(100%, 52ch);
  text-wrap: balance;
  padding-left: 10px;
  border-left: 3px solid rgba(107, 128, 100, 0.68);
}

.ueber-panel p,
.ueber-panel ul {
  width: 100%;
  max-width: min(100%, 92ch);
}

.ueber-panel p {
  margin: 0 0 10px;
  line-height: 1.56;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: pretty;
}

.ueber-panel ul {
  margin: 6px 0 12px 20px;
}

.ueber-panel li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.ueber-panel .page-lead {
  margin-top: 16px;
  max-width: 24ch;
  line-height: 1.35;
  color: var(--accent);
  font-weight: 700;
}

.ueber-panel strong {
  color: var(--accent);
  font-weight: 700;
}

.ueber-panel + .page-footer {
  margin-top: clamp(18px, 3.5vh, 28px);
}

.ueber-structured {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.about-hero,
.about-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(248, 245, 240, 0.86), rgba(239, 235, 226, 0.58));
  box-shadow: 0 12px 30px rgba(94, 85, 72, 0.07);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.55fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.about-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.72rem, 2.55vw, 2.16rem);
  line-height: 1.16;
  max-width: 18.5ch;
}

.about-hero p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.58;
}

.about-photo-card {
  margin: 0;
  justify-self: end;
  width: min(100%, 300px);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 46% 50%;
  transform: scaleX(-1);
  border: 1px solid rgba(172, 165, 151, 0.42);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(94, 85, 72, 0.13);
}

.about-photo-card figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(14px, 2.2vh, 22px);
}

.about-card {
  padding: clamp(16px, 2.2vw, 24px);
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-card h2 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  max-width: none;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.24;
}

.about-card p,
.about-card ul {
  max-width: none;
}

.about-card p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.56;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.about-card li {
  margin-bottom: 6px;
  color: var(--ink-soft);
  line-height: 1.48;
}

.about-card strong,
.about-hero strong {
  color: var(--accent);
  font-weight: 700;
}

.about-closing {
  margin: clamp(14px, 2vh, 20px) 0 0;
  color: var(--accent);
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  font-weight: 800;
  line-height: 1.32;
}

@media (min-width: 1200px) {
  .ueber-panel p,
  .ueber-panel ul {
    max-width: min(100%, 104ch);
  }
}

/* --------------------------------------------------------------------------
   Format cards (Lernformate)
   -------------------------------------------------------------------------- */
.lernformate-panel,
.contact-panel,
.waitlist-panel {
  max-width: none;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: 18px;
  align-items: stretch;
}

.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(94, 85, 72, 0.08);
  padding: 20px 20px 18px;
}

.format-head {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-right: 48px;
  min-height: 74px;
}

.format-heading {
  display: block;
}

.card-icon-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  filter: var(--icon-filter);
}

.core-icon-img   { filter: var(--icon-filter-soft);   }
.future-icon-img { filter: var(--icon-filter);         }
.school-icon-img { filter: var(--icon-filter-strong);  }

.format-card h2 {
  margin: 0;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.34;
  text-align: left;
}

.format-claim {
  margin: 8px 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

.format-card > p {
  margin: 0 0 12px;
  flex: 1 1 auto;
}

.format-list {
  margin: 0 0 0 18px;
  padding: 0;
}

.format-list li {
  margin-bottom: 6px;
}

.format-list li:last-child {
  margin-bottom: 0;
}

.format-card-cta {
  margin-top: 12px;
}

@media (hover: hover) {
  .format-card,
  .contact-card {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .format-card:hover,
  .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }

  .format-contact-btn:hover,
  .format-contact-btn:focus-visible {
    transform: translateY(-1px);
  }
}

@media (min-width: 760px) {
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.1vw, 28px);
  }
}

@media (min-width: 1120px) {
  .format-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   Contact grid
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: 18px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(94, 85, 72, 0.08);
  padding: 20px 20px 18px;
}

.contact-card h2 {
  margin: 0 0 10px;
  min-height: 2.68em;
  max-width: 24ch;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.34;
  text-wrap: balance;
}

.contact-card p {
  margin: 0 0 10px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.1vw, 28px);
  }
}

/* --------------------------------------------------------------------------
   Waitlist form
   -------------------------------------------------------------------------- */
.waitlist-intro {
  margin: 0 0 12px;
  max-width: 76ch;
  color: var(--muted);
}

.waitlist-note {
  margin: 0 0 18px;
  font-size: 0.94rem;
  color: var(--legal);
}

.waitlist-form {
  display: block;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid rgba(172, 165, 151, 0.60);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font: inherit;
}

.form-field-full {
  grid-column: 1 / -1;
}

/* Honeypot – visually hidden, never shown to real users */
.form-field-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* Field-level error messages (injected by waitlist-form.js) */
.field-error {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--warning);
  line-height: 1.35;
}

.form-field input.is-invalid,
.form-field select.is-invalid {
  border-color: var(--warning);
  background: rgba(174, 109, 86, 0.06);
}

.consent-label input.is-invalid {
  outline: 2px solid var(--warning);
  outline-offset: 2px;
}

.consent-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  column-gap: 10px;
  margin: 0;
  font-weight: 400;
}

.consent-label input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  border-radius: 5px;
}

.consent-label span {
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
}

.waitlist-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.waitlist-submit {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--btn-green-border);
  border-radius: 999px;
  background: var(--btn-green-bg);
  color: var(--btn-green-text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.waitlist-submit:hover,
.waitlist-submit:focus-visible {
  background: var(--btn-green-bg-hover);
  border-color: var(--btn-green-border-strong);
  color: var(--btn-green-text-hover);
  transform: translateY(-1px);
}

.waitlist-submit:disabled {
  opacity: 0.68;
  cursor: progress;
}

.waitlist-status {
  margin: 0;
  min-height: 1.5em;
  font-size: 0.94rem;
  color: var(--muted);
}

.waitlist-status[data-tone="success"] { color: #7f765f; }
.waitlist-status[data-tone="error"]   { color: #7b6657; }

.waitlist-server-hint {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.waitlist-server-hint[data-tone="success"] { color: #5f7658; }
.waitlist-server-hint[data-tone="error"]   { color: #7b6657; }

/* --------------------------------------------------------------------------
   Responsive – Webseite-specific breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .landing-content {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
    gap: clamp(12px, 1.8vw, 24px);
  }

  .home-preview-panel {
    margin-top: clamp(68px, 7vw, 88px);
  }

  .home-launch-panel {
    padding: clamp(16px, 2.1vh, 22px) clamp(18px, 2.3vw, 28px);
    margin-bottom: clamp(24px, 4.5vh, 44px);
  }
}

@media (max-width: 900px) {
  .tiva-home-hero {
    min-height: auto;
    padding: 18px;
  }

  .tiva-home-hero-inner {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .tiva-home-statement,
  .tiva-home-agent {
    grid-column: 1 / -1;
  }

  .tiva-home-agent {
    grid-row: 2;
  }

  .tiva-home-wave {
    left: 10%;
    right: 10%;
    top: 48%;
  }

  .landing-content {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .home-preview-panel {
    margin-top: 0;
  }

  .home-agent-preview {
    border-radius: 12px;
  }

  .home-launch-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 10px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .text-block,
  .page-panel {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
  }

  .landing-main,
  .page-main {
    padding-top: calc(var(--header-h) + 16px);
    padding-bottom: 22px;
  }

  .tiva-home-hero {
    margin-bottom: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .tiva-home-hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tiva-home-statement h2 {
    font-size: clamp(1.42rem, 7vw, 1.75rem);
  }

  .tiva-home-progress {
    margin-top: 13px;
  }

  .tiva-home-card {
    min-height: 0;
    padding: 15px;
    border-radius: 14px;
  }

  .tiva-home-card h3 {
    font-size: 1.08rem;
  }

  .tiva-mini-signals,
  .tiva-mini-person,
  .tiva-mini-stairs {
    width: 96px;
    height: 52px;
  }

  .tiva-home-agent {
    grid-row: auto;
  }

  .tiva-agent-bubble {
    width: 88px;
    height: 88px;
    border-width: 8px;
  }

  .tiva-home-wave {
    display: none;
  }

  .logo-wrapper {
    width: 74px;
    height: 57px;
  }

  .logo-tagline {
    margin-top: 8px;
    font-size: 0.84rem;
  }

  .offer-title {
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }

  .offer-accent,
  .offer-body,
  .offer-closure {
    margin-top: 16px;
    font-size: 1rem;
  }

  .offer-context { margin-top: 18px; }

  .offer-context-title {
    margin-bottom: 9px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .offer-context p {
    margin-bottom: 10px;
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .offer-context p + .offer-context-title {
    margin-top: 16px;
  }

  .home-launch-title {
    font-size: clamp(1.02rem, 5.4vw, 1.18rem);
  }

  .home-launch-text {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .home-launch-cta {
    width: 100%;
    justify-content: center;
  }

  .page-panel {
    border-radius: 10px;
    padding: 16px;
  }

  .ueber-structured {
    padding: 0;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 14px;
  }

  .about-hero h1 {
    max-width: 20ch;
  }

  .about-photo-card {
    justify-self: start;
    width: min(100%, 240px);
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    border-radius: 14px;
    padding: 16px;
  }

  .ueber-panel h2 {
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .ueber-structured .about-card h2 {
    margin: 0 0 8px;
  }

  .ueber-panel p {
    margin-bottom: 9px;
    line-height: 1.52;
  }

  .ueber-panel ul {
    margin: 4px 0 10px 18px;
  }

  .ueber-panel + .page-footer {
    margin-top: 14px;
  }

  .format-grid,
  .contact-grid {
    gap: 12px;
    margin-top: 14px;
  }

  .format-card,
  .contact-card {
    padding: 15px 14px 14px;
    border-radius: 10px;
  }

  .format-head {
    min-height: 68px;
    margin-bottom: 10px;
    padding-right: 40px;
  }

  .card-icon-wrap {
    width: 24px;
    height: 24px;
  }

  .format-card > p {
    margin-bottom: 10px;
    flex: 0 0 auto;
  }

  .format-card-cta { margin-top: 10px; }

  .contact-card h2 {
    min-height: auto;
    max-width: none;
  }

  .waitlist-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .waitlist-actions {
    margin-top: 14px;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .format-card,
  .contact-card,
  .format-contact-btn {
    transition: none !important;
    transform: none !important;
  }
}
