:root {
  --lp-navy: #102b3a;
  --lp-navy-deep: #0a202c;
  --lp-teal: #0f766e;
  --lp-teal-dark: #0b5f59;
  --lp-mint: #dff7f0;
  --lp-mint-soft: #f0faf7;
  --lp-yellow: #f3b63f;
  --lp-paper: #f8fbfa;
  --lp-white: #ffffff;
  --lp-text: #18313d;
  --lp-muted: #60747c;
  --lp-line: #dce9e6;
  --lp-shadow: 0 28px 70px rgba(16, 43, 58, 0.12);
  --lp-radius: 28px;
}

html {
  scroll-padding-top: 92px;
}

.landing-v2,
.legal-v2 {
  margin: 0;
  overflow-x: clip;
  background: var(--lp-paper);
  color: var(--lp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.landing-v2 *,
.legal-v2 * {
  box-sizing: border-box;
  min-width: 0;
}

.landing-v2 img,
.legal-v2 img {
  max-width: 100%;
}

.landing-v2 h1,
.landing-v2 h2,
.landing-v2 h3,
.legal-v2 h1,
.legal-v2 h2,
.legal-v2 h3 {
  margin-top: 0;
  color: var(--lp-navy);
  letter-spacing: -0.035em;
}

.landing-v2 p,
.legal-v2 p {
  color: var(--lp-muted);
}

.landing-v2 a,
.legal-v2 a {
  text-underline-offset: 0.2em;
}

.landing-v2 :focus-visible,
.legal-v2 :focus-visible {
  outline: 3px solid var(--lp-yellow);
  outline-offset: 4px;
  border-radius: 6px;
}

.lp-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--lp-navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.lp-skip-link:focus {
  transform: translateY(0);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 233, 230, 0.82);
  background: rgba(248, 251, 250, 0.93);
  backdrop-filter: blur(18px);
}

.lp-header-inner {
  width: min(1320px, calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--lp-navy);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.lp-brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.15);
}

.lp-brand strong {
  color: var(--lp-teal);
  font-weight: 850;
}

.lp-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  margin-left: auto;
}

.lp-desktop-nav a {
  color: #536970;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.lp-desktop-nav a:hover {
  color: var(--lp-teal);
}

.lp-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--lp-teal);
  border-radius: 999px;
  background: var(--lp-teal);
  color: white !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.2);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.lp-button:hover {
  background: var(--lp-teal-dark);
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.25);
  transform: translateY(-1px);
}

.lp-button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.lp-button-light {
  border-color: white;
  background: white;
  color: var(--lp-navy) !important;
  box-shadow: none;
}

.lp-button-light:hover {
  background: var(--lp-mint);
}

.lp-mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.lp-mobile-menu summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: white;
  color: var(--lp-navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.lp-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.lp-mobile-menu summary svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.lp-mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(310px, calc(100vw - 32px));
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--lp-shadow);
}

.lp-mobile-menu nav > a:not(.lp-button) {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--lp-text);
  font-weight: 700;
  text-decoration: none;
}

.lp-mobile-menu nav > a:not(.lp-button):hover {
  background: var(--lp-mint-soft);
  color: var(--lp-teal-dark);
}

.lp-mobile-menu .lp-button {
  margin-top: 8px;
}

.lp-hero,
.lp-section,
.lp-footer-main,
.lp-footer-bottom,
.lp-legal-main {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  min-height: min(820px, calc(100vh - 76px));
  padding-block: clamp(64px, 8vw, 112px);
}

.lp-hero-copy {
  max-width: 620px;
}

.lp-kicker {
  margin: 0 0 18px;
  color: var(--lp-teal-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.lp-hero h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(3.5rem, 6.8vw, 6.8rem);
  line-height: 0.93;
  hyphens: auto;
  overflow-wrap: break-word;
}

.lp-hero h1 span {
  color: var(--lp-teal);
}

.lp-lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem) !important;
  line-height: 1.72;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.lp-text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lp-navy);
  font-weight: 800;
  text-decoration: none;
}

.lp-text-action:hover {
  color: var(--lp-teal);
}

.lp-status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 27px 0 0;
  font-size: 0.88rem !important;
  font-weight: 700;
}

.lp-status-line span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lp-yellow);
  box-shadow: 0 0 0 5px rgba(243, 182, 63, 0.16);
}

.lp-product-stage {
  position: relative;
  overflow: clip;
  padding: clamp(18px, 4vw, 48px) 0;
}

.lp-product-glow {
  position: absolute;
  inset: 5% -8% 0 8%;
  border-radius: 48% 52% 45% 55%;
  background: linear-gradient(135deg, rgba(199, 242, 230, 0.9), rgba(228, 246, 241, 0.3));
  filter: blur(2px);
  transform: rotate(-3deg);
}

.lp-product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 188, 181, 0.5);
  border-radius: 27px;
  background: white;
  box-shadow: 0 34px 80px rgba(16, 43, 58, 0.16);
  transform: rotate(1.2deg);
}

.lp-product-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border-bottom: 1px solid #e7efed;
}

.lp-product-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--lp-navy);
  font-size: 0.8rem;
  font-weight: 850;
}

.lp-product-brand img {
  width: 30px;
  height: 30px;
}

.lp-preview-label {
  color: #76898f;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-product-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 430px;
}

.lp-product-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 14px;
  border-right: 1px solid #e7efed;
  background: #f8fbfa;
}

.lp-product-nav span {
  padding: 9px 11px;
  border-radius: 10px;
  color: #71838a;
  font-size: 0.68rem;
  font-weight: 750;
}

.lp-product-nav .is-active {
  background: var(--lp-mint);
  color: var(--lp-teal-dark);
}

.lp-product-content {
  padding: clamp(20px, 3.4vw, 34px);
  background: linear-gradient(155deg, white 40%, #f5faf8);
}

.lp-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.lp-preview-heading div {
  display: grid;
  gap: 3px;
}

.lp-preview-heading small,
.lp-event-preview small,
.lp-preview-grid small {
  color: #819096;
  font-size: 0.68rem;
  font-weight: 650;
}

.lp-preview-heading strong {
  color: var(--lp-navy);
  font-size: 1.05rem;
}

.lp-preview-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--lp-navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
}

.lp-event-preview {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid #d8e9e5;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 34px rgba(16, 43, 58, 0.08);
}

.lp-event-date {
  display: grid;
  width: 65px;
  min-height: 65px;
  place-content: center;
  border-radius: 15px;
  background: var(--lp-teal);
  color: white;
  text-align: center;
}

.lp-event-date small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.lp-event-date strong {
  font-size: 0.85rem;
}

.lp-event-preview h2 {
  margin: 2px 0 2px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lp-event-preview p {
  margin: 0;
  font-size: 0.7rem !important;
}

.lp-rsvp {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff6dc;
  color: #8a5d06;
  font-size: 0.58rem;
  font-weight: 800;
}

.lp-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.lp-preview-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid #e0ece9;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.lp-preview-grid article > div {
  display: grid;
}

.lp-preview-grid strong {
  color: var(--lp-text);
  font-size: 0.72rem;
}

.lp-message-preview {
  grid-column: 1 / -1;
}

.lp-mini-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: #e9f1f3;
  color: var(--lp-navy);
  font-size: 0.68rem;
  font-weight: 900;
}

.lp-icon-mint {
  background: var(--lp-mint);
  color: var(--lp-teal-dark);
}

.lp-icon-sun {
  background: #fff2cf;
  color: #8a5d06;
}

.lp-preview-note {
  position: relative;
  margin: 16px 0 0;
  color: #7c8e94 !important;
  font-size: 0.72rem !important;
  text-align: center;
}

.lp-section {
  padding-block: clamp(78px, 10vw, 140px);
}

.lp-section-intro {
  max-width: 860px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.lp-section-intro h2,
.lp-origin h2,
.lp-contact h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.02;
  hyphens: auto;
  overflow-wrap: break-word;
}

.lp-intro-split {
  display: grid;
  max-width: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 100px);
}

.lp-intro-split .lp-kicker {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.lp-intro-split > p:last-child {
  align-self: end;
  max-width: 560px;
  margin: 0 0 4px;
  font-size: 1.08rem !important;
}

.lp-problem {
  border-top: 1px solid var(--lp-line);
}

.lp-problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lp-line);
}

.lp-problem-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-problem-list article:nth-child(odd) {
  border-right: 1px solid var(--lp-line);
}

.lp-problem-list article:nth-child(even) {
  padding-left: 32px;
}

.lp-problem-list article > span,
.lp-values-list li > span {
  color: var(--lp-teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.lp-problem-list h3,
.lp-values-list h3 {
  margin: 0 0 7px;
  font-size: 1.15rem;
}

.lp-problem-list p,
.lp-values-list p {
  margin: 0;
}

.lp-audiences {
  position: relative;
}

.lp-audiences::before {
  position: absolute;
  z-index: -1;
  inset: 4% calc(50% - 50vw);
  background: var(--lp-mint-soft);
  content: "";
}

.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp-audience-grid article {
  min-height: 285px;
  padding: 27px;
  border: 1px solid var(--lp-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.lp-audience-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--lp-mint);
  color: var(--lp-teal-dark);
  font-size: 0.7rem;
  font-weight: 850;
}

.lp-audience-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.lp-audience-grid p {
  margin-bottom: 16px;
}

.lp-audience-grid small {
  color: #8a5d06;
  font-weight: 750;
}

.lp-feature-list {
  border-top: 1px solid var(--lp-line);
}

.lp-feature-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--lp-mint-soft);
  color: var(--lp-teal);
}

.lp-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lp-feature-list h3 {
  margin: 0 0 3px;
  font-size: 1.18rem;
}

.lp-feature-list p {
  margin: 0;
}

.lp-feature-list small {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f3f7f6;
  color: #687d83;
  font-size: 0.7rem;
  font-weight: 750;
  white-space: nowrap;
}

.lp-roadmap {
  position: relative;
}

.lp-roadmap::before {
  position: absolute;
  z-index: -1;
  inset: 2% calc(50% - 50vw);
  background: var(--lp-navy-deep);
  content: "";
}

.lp-roadmap .lp-kicker,
.lp-roadmap .lp-intro-split > p:last-child {
  color: #9bc4c0 !important;
}

.lp-roadmap .lp-section-intro h2 {
  color: white;
}

.lp-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.lp-roadmap-grid article {
  min-height: 420px;
  padding: clamp(25px, 3vw, 36px);
  background: #102b3a;
}

.lp-roadmap-grid article.is-now {
  background: #143d48;
}

.lp-roadmap-grid article.is-later {
  background: #0d2633;
}

.lp-roadmap-label {
  margin-bottom: 38px;
  color: #8fe1d2 !important;
  font-size: 0.72rem !important;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lp-roadmap-grid h3 {
  min-height: 62px;
  margin-bottom: 24px;
  color: white;
  font-size: 1.4rem;
  line-height: 1.2;
}

.lp-roadmap-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #c5d4d7;
  list-style: none;
}

.lp-roadmap-grid li {
  position: relative;
  padding-left: 18px;
}

.lp-roadmap-grid li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #67cabb;
  content: "";
}

.lp-responsibility-note {
  display: flex;
  max-width: 980px;
  gap: 15px;
  align-items: flex-start;
  margin: 28px 0 0;
  color: #c8d6d8 !important;
  font-size: 0.94rem !important;
}

.lp-responsibility-note span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 182, 63, 0.16);
  color: var(--lp-yellow);
  font-weight: 900;
}

.lp-origin-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(36px, 7vw, 78px);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: white;
  box-shadow: 0 20px 55px rgba(16, 43, 58, 0.07);
}

.lp-origin-copy p:first-child {
  color: var(--lp-navy) !important;
  font-size: 1.23rem !important;
  font-weight: 700;
}

.lp-origin-copy p {
  margin-bottom: 20px;
}

.lp-values-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lp-line);
  list-style: none;
}

.lp-values-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(40px, 9vw, 120px);
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 110px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--lp-radius);
  background: var(--lp-mint);
}

.lp-contact p {
  color: #456268 !important;
}

.lp-footer {
  background: var(--lp-navy-deep);
  color: white;
}

.lp-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 0.65fr 1fr;
  gap: clamp(44px, 7vw, 100px);
  padding-block: 72px 58px;
}

.lp-footer .lp-brand {
  color: white;
}

.lp-footer-main > div > p {
  margin: 22px 0 28px;
  color: #aebfc3;
  font-size: 1.08rem;
}

.lp-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.lp-footer nav h2 {
  margin: 0 0 9px;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-footer nav a {
  color: #bdcbce;
  font-size: 0.92rem;
  text-decoration: none;
}

.lp-footer nav a:hover {
  color: white;
}

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93a8ad;
  font-size: 0.8rem;
}

/* Shared legal and transparency pages */
.lp-legal-main {
  padding-block: clamp(54px, 8vw, 100px) 110px;
}

.lp-legal-hero {
  max-width: 880px;
  padding-bottom: clamp(42px, 6vw, 70px);
  border-bottom: 1px solid var(--lp-line);
}

.lp-legal-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  hyphens: auto;
  overflow-wrap: break-word;
}

.lp-legal-hero > p:not(.lp-kicker) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.15rem;
}

.lp-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lp-legal-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lp-mint-soft);
  color: var(--lp-teal-dark);
  font-size: 0.74rem;
  font-weight: 750;
}

.lp-legal-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  padding-top: clamp(42px, 6vw, 70px);
}

.lp-legal-toc {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.lp-legal-toc strong {
  margin-bottom: 5px;
  color: var(--lp-navy);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-legal-toc a {
  color: var(--lp-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.lp-legal-toc a:hover {
  color: var(--lp-teal);
}

.lp-legal-sections {
  display: grid;
  gap: 0;
}

.lp-legal-section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-legal-section:last-child {
  margin-bottom: 0;
}

.lp-legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.2;
}

.lp-legal-section h3 {
  margin: 24px 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.lp-legal-section p,
.lp-legal-section li,
.lp-legal-address {
  font-size: 1rem;
}

.lp-legal-section ul,
.lp-legal-section ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.lp-legal-section a {
  color: var(--lp-teal-dark);
  font-weight: 700;
}

.lp-legal-address {
  color: var(--lp-text);
  font-style: normal;
}

.lp-legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--lp-yellow);
  border-radius: 0 14px 14px 0;
  background: #fff8e6;
  color: #644b1a;
}

.lp-contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  margin-top: 30px;
}

.lp-contact-option {
  padding: 24px;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  background: white;
}

.lp-contact-option h2 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.lp-contact-option p {
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .lp-desktop-nav,
  .lp-header-cta {
    display: none;
  }

  .lp-mobile-menu {
    display: block;
  }

  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lp-hero-copy {
    max-width: 780px;
  }

  .lp-product-stage {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .lp-audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-audience-grid article {
    min-height: 240px;
  }

  .lp-audience-symbol {
    margin-bottom: 28px;
  }
}

@media (max-width: 780px) {
  .lp-header-inner,
  .lp-hero,
  .lp-section,
  .lp-footer-main,
  .lp-footer-bottom,
  .lp-legal-main {
    width: min(1240px, calc(100% - 32px));
  }

  .lp-header-inner {
    min-height: 68px;
  }

  .lp-brand img {
    width: 38px;
    height: 38px;
  }

  .lp-hero {
    padding-block: 54px 72px;
  }

  .lp-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .lp-product-window {
    transform: none;
  }

  .lp-product-nav {
    display: none;
  }

  .lp-product-body {
    grid-template-columns: 1fr;
    min-height: 390px;
  }

  .lp-intro-split,
  .lp-origin-panel,
  .lp-contact {
    grid-template-columns: 1fr;
  }

  .lp-intro-split .lp-kicker {
    margin-bottom: -4px;
  }

  .lp-problem-list {
    grid-template-columns: 1fr;
  }

  .lp-problem-list article,
  .lp-problem-list article:nth-child(even) {
    padding: 25px 0;
    border-right: 0;
  }

  .lp-feature-list article {
    grid-template-columns: 52px 1fr;
  }

  .lp-feature-list small {
    grid-column: 2;
    width: fit-content;
  }

  .lp-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .lp-roadmap-grid article {
    min-height: auto;
  }

  .lp-roadmap-grid h3 {
    min-height: auto;
  }

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

  .lp-footer-main > div {
    grid-column: 1 / -1;
  }

  .lp-legal-content {
    grid-template-columns: 1fr;
  }

  .lp-legal-toc {
    position: static;
    grid-template-columns: 1fr 1fr;
    padding: 18px;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    background: white;
  }

  .lp-legal-toc strong {
    grid-column: 1 / -1;
  }

  .lp-contact-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .lp-header-inner,
  .lp-hero,
  .lp-section,
  .lp-footer-main,
  .lp-footer-bottom,
  .lp-legal-main {
    width: min(1240px, calc(100% - 28px));
  }

  .lp-brand {
    font-size: 0.93rem;
  }

  .lp-mobile-menu summary span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .lp-mobile-menu summary {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .lp-hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.5rem);
  }

  .lp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lp-actions .lp-button,
  .lp-actions .lp-text-action {
    justify-content: center;
  }

  .lp-product-bar {
    padding-inline: 13px;
  }

  .lp-preview-label {
    display: none;
  }

  .lp-product-content {
    padding: 16px;
  }

  .lp-event-preview {
    grid-template-columns: auto 1fr;
    padding: 13px;
  }

  .lp-rsvp {
    position: static;
    grid-column: 1 / -1;
    width: fit-content;
  }

  .lp-preview-grid {
    grid-template-columns: 1fr;
  }

  .lp-message-preview {
    grid-column: auto;
  }

  .lp-section {
    padding-block: 72px;
  }

  .lp-section-intro h2,
  .lp-origin h2,
  .lp-contact h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .lp-audience-grid {
    grid-template-columns: 1fr;
  }

  .lp-audience-grid article {
    min-height: 0;
  }

  .lp-origin-panel,
  .lp-contact {
    padding: 26px 22px;
  }

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

  .lp-footer-main nav,
  .lp-footer-main > div {
    grid-column: auto;
  }

  .lp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-legal-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .lp-legal-toc {
    grid-template-columns: 1fr;
  }

  .lp-legal-toc strong {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lp-button,
  .lp-skip-link {
    transition: none;
  }
}

/* Landingpage 3.0: ruhiger, kompakter und näher am Teamalltag */
.landing-plain .lp-button {
  box-shadow: 0 5px 14px rgba(15, 118, 110, 0.14);
}

.landing-plain .lp-button:hover {
  box-shadow: 0 7px 18px rgba(15, 118, 110, 0.18);
}

.landing-plain .lp-kicker {
  margin-bottom: 13px;
  font-size: 0.88rem !important;
  letter-spacing: 0;
  text-transform: none;
}

.landing-plain .lp-hero-plain {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(42px, 6vw, 80px);
  min-height: 0;
  padding-block: clamp(46px, 5vw, 66px);
}

.landing-plain .lp-hero-copy {
  max-width: 720px;
}

.landing-plain .lp-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 4.55vw, 4.25rem);
  line-height: 1.02;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.landing-plain .lp-lead {
  max-width: 660px;
  margin: 0 0 25px;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  line-height: 1.62;
}

.landing-plain .lp-status-line {
  max-width: 620px;
  margin-top: 22px;
  color: #60747c;
  font-weight: 650;
}

.landing-plain .lp-status-line span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.lp-compact-preview {
  width: min(100%, 390px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  background: var(--lp-white);
  box-shadow: 0 12px 30px rgba(16, 43, 58, 0.08);
}

.lp-compact-preview-head {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid var(--lp-line);
  background: #fbfdfc;
}

.lp-compact-preview-head > span {
  color: #71858b;
  font-size: 0.7rem;
}

.lp-compact-preview-body {
  padding: 20px;
}

.lp-compact-preview-body > p {
  margin: 0 0 9px;
  color: #71858b;
  font-size: 0.72rem;
  font-weight: 750;
}

.lp-next-event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-next-event time {
  color: var(--lp-teal-dark);
  font-size: 1.2rem;
  font-weight: 850;
}

.lp-next-event div {
  display: grid;
  gap: 1px;
}

.lp-next-event strong {
  color: var(--lp-navy);
  font-size: 0.95rem;
}

.lp-next-event span {
  color: var(--lp-muted);
  font-size: 0.75rem;
}

.lp-compact-preview ul {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.lp-compact-preview li {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--lp-muted);
  font-size: 0.76rem;
}

.lp-compact-preview li + li {
  border-top: 1px solid #edf3f1;
}

.lp-compact-preview li strong {
  color: var(--lp-text);
  font-size: 0.76rem;
  text-align: right;
}

.lp-compact-preview .lp-preview-note {
  margin: 0;
  padding: 0 20px 15px;
  text-align: left;
}

.landing-plain .lp-section {
  padding-block: clamp(68px, 7vw, 92px);
}

.landing-plain .lp-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.lp-reading-column {
  max-width: 800px;
}

.lp-section-lead {
  margin: 24px 0 12px;
  color: #445f67 !important;
  font-size: clamp(1.08rem, 1.55vw, 1.25rem) !important;
  line-height: 1.72;
}

.lp-real-life {
  border-top: 1px solid var(--lp-line);
}

.lp-real-life .lp-reading-column > p:not(.lp-section-lead) {
  margin: 0;
  font-weight: 750;
}

.lp-everyday-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-block: 1px solid var(--lp-line);
  list-style: none;
}

.lp-everyday-questions li {
  padding: 20px 24px 20px 0;
  color: var(--lp-navy);
  font-weight: 750;
  line-height: 1.45;
}

.lp-everyday-questions li + li {
  padding-left: 24px;
  border-left: 1px solid var(--lp-line);
}

.lp-product-explained {
  border-top: 1px solid var(--lp-line);
}

.landing-plain .lp-intro-split {
  grid-template-columns: 0.55fr 1.35fr 0.8fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-bottom: 46px;
}

.landing-plain .lp-intro-split h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
}

.landing-plain .lp-intro-split > p:last-child {
  margin: 8px 0 0;
}

.lp-calm-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lp-line);
}

.lp-calm-feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-calm-feature-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid var(--lp-line);
}

.lp-calm-feature-list article > span {
  color: var(--lp-teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.lp-calm-feature-list h3 {
  margin-bottom: 7px;
  font-size: 1.13rem;
}

.lp-calm-feature-list p {
  margin: 0;
  line-height: 1.65;
}

.lp-for-teams {
  border-radius: var(--lp-radius);
  background: var(--lp-mint-soft);
}

.lp-for-teams .lp-reading-column {
  max-width: 920px;
  margin-inline: auto;
}

.lp-audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.lp-audience-list li {
  color: var(--lp-navy);
  font-weight: 750;
}

.lp-audience-list li:not(:last-child)::after {
  content: "·";
  margin-inline: 13px;
  color: var(--lp-teal);
}

.lp-development-grid,
.lp-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 115px);
  align-items: start;
}

.lp-reading-copy {
  max-width: 660px;
}

.lp-reading-copy p {
  margin-top: 0;
  font-size: 1.04rem;
  line-height: 1.75;
}

.lp-reading-copy p + p {
  margin-top: 19px;
}

.lp-feedback-note {
  padding-top: 20px;
  border-top: 1px solid var(--lp-line);
  color: var(--lp-text) !important;
  font-weight: 700;
}

.lp-about {
  border-top: 1px solid var(--lp-line);
}

.landing-plain .lp-contact {
  margin-bottom: clamp(68px, 7vw, 92px);
  padding: clamp(32px, 4vw, 50px);
  border-radius: 22px;
}

.landing-plain .lp-contact h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

@media (max-width: 1080px) {
  .landing-plain .lp-hero-plain {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
  }

  .landing-plain .lp-hero h1 {
    font-size: clamp(2.8rem, 5.2vw, 3.8rem);
  }
}

@media (max-width: 900px) {
  .landing-plain .lp-hero-plain,
  .lp-development-grid,
  .lp-about-grid {
    grid-template-columns: 1fr;
  }

  .lp-compact-preview {
    width: min(100%, 440px);
    justify-self: start;
  }

  .landing-plain .lp-intro-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-plain .lp-intro-split .lp-kicker {
    margin-bottom: 0;
  }
}

@media (max-width: 780px) {
  .landing-plain .lp-hero-plain {
    padding-block: 44px 58px;
  }

  .lp-everyday-questions {
    grid-template-columns: 1fr;
  }

  .lp-everyday-questions li,
  .lp-everyday-questions li + li {
    padding: 15px 0;
    border-left: 0;
  }

  .lp-everyday-questions li + li {
    border-top: 1px solid var(--lp-line);
  }

  .lp-calm-feature-list {
    grid-template-columns: 1fr;
  }

  .lp-calm-feature-list article,
  .lp-calm-feature-list article:nth-child(even) {
    padding: 23px 0;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .landing-plain .lp-hero h1 {
    font-size: clamp(2.25rem, 11.8vw, 3rem);
    line-height: 1.05;
  }

  .landing-plain .lp-lead {
    line-height: 1.55;
  }

  .landing-plain .lp-status-line {
    align-items: flex-start;
    font-size: 0.8rem !important;
    line-height: 1.45;
  }

  .landing-plain .lp-status-line span {
    margin-top: 0.4em;
  }

  .lp-compact-preview-body {
    padding: 17px;
  }

  .landing-plain .lp-section {
    padding-block: 60px;
  }

  .landing-plain .lp-section h2 {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
    line-height: 1.08;
  }

  .lp-calm-feature-list article {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .lp-audience-list {
    display: grid;
    gap: 10px;
  }

  .lp-audience-list li:not(:last-child)::after {
    content: none;
  }

  .landing-plain .lp-contact {
    padding: 27px 22px;
  }
}
