/*
  EchoToFuture Lighthouse CSS Bundle v1
  Generated from existing small CSS files to reduce render-blocking requests.
*/

/* ===== BEGIN e2f-polish-v1.css ===== */
/* EchoToFuture Public Frontend Polish V1 */

:root {
  --e2f-bg: #0f172a;
  --e2f-surface: rgba(17, 24, 39, 0.92);
  --e2f-surface-soft: rgba(31, 41, 55, 0.72);
  --e2f-border: rgba(148, 163, 184, 0.18);
  --e2f-text: #f8fafc;
  --e2f-muted: #cbd5e1;
  --e2f-muted2: #94a3b8;
  --e2f-pink: #ec4899;
  --e2f-purple: #8b5cf6;
  --e2f-blue: #38bdf8;
  --e2f-green: #10b981;
  --e2f-radius: 24px;
  --e2f-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(236,72,153,.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(56,189,248,.15), transparent 30rem),
    linear-gradient(180deg, #0f172a 0%, #111827 48%, #0f172a 100%) !important;
  color: var(--e2f-text);
}

main {
  width: min(1120px, calc(100vw - 28px));
  margin-left: auto;
  margin-right: auto;
}

main h1 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

main h2 {
  letter-spacing: -0.025em;
}

main p,
main li {
  color: var(--e2f-muted);
  line-height: 1.72;
}

main a {
  color: #f9a8d4;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

main a:hover {
  color: #fff;
}

main section,
main .card,
main .box,
main .content-box,
main article {
  border-radius: var(--e2f-radius);
}

main form {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--e2f-border);
  box-shadow: var(--e2f-shadow);
  border-radius: var(--e2f-radius);
}

input,
select,
textarea {
  border-radius: 14px !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: rgba(236, 72, 153, 0.75) !important;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.13) !important;
}

button,
.button,
.btn,
a.button,
input[type="submit"] {
  border-radius: 999px !important;
  font-weight: 800 !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

button:hover,
.button:hover,
.btn:hover,
a.button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.e2f-polish-note,
.e2f-legal-update {
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid var(--e2f-border);
  border-radius: var(--e2f-radius);
  box-shadow: var(--e2f-shadow);
  padding: clamp(18px, 4vw, 28px);
  margin: 26px 0;
}

.e2f-polish-note strong,
.e2f-legal-update strong {
  color: #fff;
}

.e2f-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.e2f-trust-card {
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid var(--e2f-border);
  border-radius: 20px;
  padding: 16px;
  color: var(--e2f-muted);
}

.e2f-trust-card b {
  color: #fff;
}

.e2f-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 72, 153, 0.13);
  border: 1px solid rgba(236, 72, 153, 0.28);
  color: #f9a8d4;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: .88rem;
}

.e2f-soft-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,163,184,.35), transparent);
  margin: 28px 0;
}

@media (max-width: 760px) {
  main {
    width: min(100vw - 18px, 760px);
  }

  main h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .e2f-trust-row {
    grid-template-columns: 1fr;
  }

  main form {
    padding: 16px !important;
  }
}

/* ===== END e2f-polish-v1.css ===== */

/* ===== BEGIN e2f-responsive-v2.css ===== */
/* EchoToFuture Responsive Layout V2
   Goal: better scaling on mobile, desktop, large monitors and ultrawide screens.
*/

:root {
  --e2f-page-max: 1560px;
  --e2f-page-pad: clamp(14px, 4vw, 84px);
  --e2f-section-gap: clamp(22px, 4vw, 58px);
  --e2f-card-pad: clamp(18px, 3vw, 38px);
}

/* General public layout scaling */
main {
  width: min(var(--e2f-page-max), calc(100vw - (var(--e2f-page-pad) * 2))) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Keep text readable on very wide screens */
main p,
main li {
  max-width: 82ch;
}

/* But allow admin tables/cards and form elements to use their own width */
.e2fa-shell p,
.e2fa-shell li,
.e2fa-table p,
.e2fa-table li,
form p,
form li,
table p,
table li {
  max-width: none;
}

/* Public content spacing */
main section,
main article,
main form,
main .e2f-polish-note,
main .e2f-legal-update {
  padding: var(--e2f-card-pad);
}

main > * + * {
  margin-top: clamp(16px, 2.4vw, 34px);
}

/* Responsive media and assets */
img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* Forms should feel good on all screens */
main form {
  width: 100%;
  box-sizing: border-box;
}

main input,
main select,
main textarea,
main button {
  max-width: 100%;
  box-sizing: border-box;
}

/* Buttons and CTA areas */
main button,
main .button,
main .btn,
main a.button,
main input[type="submit"] {
  min-height: 44px;
  padding-left: clamp(16px, 2.4vw, 28px);
  padding-right: clamp(16px, 2.4vw, 28px);
}

/* Large desktop */
@media (min-width: 1280px) {
  :root {
    --e2f-page-max: 1440px;
    --e2f-page-pad: clamp(38px, 5vw, 96px);
  }

  main h1 {
    font-size: clamp(3.1rem, 4.5vw, 5.8rem);
  }

  main h2 {
    font-size: clamp(1.7rem, 2.4vw, 3rem);
  }

  main p,
  main li {
    font-size: clamp(1rem, .72vw, 1.14rem);
  }
}

/* Full HD and bigger */
@media (min-width: 1600px) {
  :root {
    --e2f-page-max: 1640px;
    --e2f-page-pad: clamp(64px, 6vw, 140px);
  }

  main {
    width: min(var(--e2f-page-max), calc(100vw - (var(--e2f-page-pad) * 2))) !important;
  }
}

/* Ultrawide monitors */
@media (min-width: 2200px) {
  :root {
    --e2f-page-max: 1840px;
    --e2f-page-pad: 180px;
  }

  main {
    width: min(var(--e2f-page-max), calc(100vw - 360px)) !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --e2f-page-pad: clamp(14px, 3vw, 32px);
    --e2f-card-pad: clamp(16px, 3vw, 28px);
  }

  main {
    width: min(100vw - 28px, 960px) !important;
  }

  main h1 {
    font-size: clamp(2.35rem, 7vw, 4rem);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --e2f-page-pad: 10px;
    --e2f-card-pad: 16px;
    --e2f-section-gap: 22px;
  }

  main {
    width: calc(100vw - 16px) !important;
  }

  main h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.03;
  }

  main h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  main p,
  main li {
    font-size: 1rem;
    line-height: 1.68;
  }

  main form,
  main section,
  main article,
  main .e2f-polish-note,
  main .e2f-legal-update {
    border-radius: 18px;
  }

  main input,
  main select,
  main textarea,
  main button,
  main .button,
  main .btn,
  main a.button,
  main input[type="submit"] {
    width: 100%;
  }

  .e2f-trust-row {
    grid-template-columns: 1fr !important;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  main {
    width: calc(100vw - 10px) !important;
  }

  main h1 {
    font-size: clamp(1.82rem, 10vw, 2.45rem);
  }

  main form,
  main section,
  main article,
  main .e2f-polish-note,
  main .e2f-legal-update {
    padding: 13px;
  }
}

/* Prevent horizontal overflow from long strings */
main {
  overflow-wrap: anywhere;
}

main table {
  max-width: 100%;
}

main pre,
main code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* Admin remains usable and wide enough */
.e2fa-shell {
  width: min(1540px, calc(100vw - 28px)) !important;
}

@media (min-width: 1700px) {
  .e2fa-shell {
    width: min(1680px, calc(100vw - 96px)) !important;
  }
}

@media (max-width: 700px) {
  .e2fa-shell {
    width: calc(100vw - 12px) !important;
  }
}

/* ===== END e2f-responsive-v2.css ===== */

/* ===== BEGIN e2f-desktop-wide-v21.css ===== */
/* EchoToFuture Desktop Wide Layout V2.1
   Mobile stays compact. Desktop and large monitors use more width.
*/

@media (min-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  main {
    width: min(1500px, calc(100vw - 96px)) !important;
    max-width: min(1500px, calc(100vw - 96px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  main > .max-w-xs,
  main > .max-w-sm,
  main > .max-w-md,
  main > .max-w-lg,
  main > .max-w-xl,
  main > .max-w-2xl,
  main > .max-w-3xl,
  main > .max-w-4xl,
  main > .max-w-5xl,
  main > .max-w-6xl,
  main > .max-w-7xl,
  main > .container,
  main > div[class*="max-w-"],
  main > section[class*="max-w-"],
  main > article[class*="max-w-"] {
    width: min(1320px, calc(100vw - 120px)) !important;
    max-width: min(1320px, calc(100vw - 120px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  main > div > .max-w-xs,
  main > div > .max-w-sm,
  main > div > .max-w-md,
  main > div > .max-w-lg,
  main > div > .max-w-xl,
  main > div > .max-w-2xl,
  main > div > .max-w-3xl,
  main > div > .max-w-4xl,
  main > div > .max-w-5xl,
  main > div > .max-w-6xl,
  main > div > .max-w-7xl {
    max-width: min(1180px, calc(100vw - 140px)) !important;
  }

  main form {
    max-width: min(960px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  main .e2f-trust-row {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
    width: min(1180px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 1350px) {
  main {
    width: min(1640px, calc(100vw - 128px)) !important;
    max-width: min(1640px, calc(100vw - 128px)) !important;
  }

  main > .max-w-xs,
  main > .max-w-sm,
  main > .max-w-md,
  main > .max-w-lg,
  main > .max-w-xl,
  main > .max-w-2xl,
  main > .max-w-3xl,
  main > .max-w-4xl,
  main > .max-w-5xl,
  main > .max-w-6xl,
  main > .max-w-7xl,
  main > .container,
  main > div[class*="max-w-"],
  main > section[class*="max-w-"],
  main > article[class*="max-w-"] {
    width: min(1440px, calc(100vw - 160px)) !important;
    max-width: min(1440px, calc(100vw - 160px)) !important;
  }

  main h1 {
    max-width: 18ch;
  }

  main p {
    max-width: 86ch;
  }
}

@media (min-width: 1700px) {
  main {
    width: min(1780px, calc(100vw - 180px)) !important;
    max-width: min(1780px, calc(100vw - 180px)) !important;
  }

  main > .max-w-xs,
  main > .max-w-sm,
  main > .max-w-md,
  main > .max-w-lg,
  main > .max-w-xl,
  main > .max-w-2xl,
  main > .max-w-3xl,
  main > .max-w-4xl,
  main > .max-w-5xl,
  main > .max-w-6xl,
  main > .max-w-7xl,
  main > .container,
  main > div[class*="max-w-"],
  main > section[class*="max-w-"],
  main > article[class*="max-w-"] {
    width: min(1520px, calc(100vw - 220px)) !important;
    max-width: min(1520px, calc(100vw - 220px)) !important;
  }
}

/* Try to make the start page less phone-like on desktop without touching mobile */
@media (min-width: 1150px) {
  main > div:first-child,
  main > section:first-child {
    min-width: min(1080px, 100%) !important;
  }

  main > div:first-child > div,
  main > section:first-child > div {
    max-width: none !important;
  }
}

/* Admin can also use more width, but remains controlled */
@media (min-width: 1200px) {
  .e2fa-shell {
    width: min(1560px, calc(100vw - 96px)) !important;
    max-width: min(1560px, calc(100vw - 96px)) !important;
  }
}

@media (min-width: 1700px) {
  .e2fa-shell {
    width: min(1720px, calc(100vw - 160px)) !important;
    max-width: min(1720px, calc(100vw - 160px)) !important;
  }
}

/* Mobile protection */
@media (max-width: 760px) {
  main,
  main > div,
  main > section,
  main > article {
    max-width: calc(100vw - 16px) !important;
  }
}

/* ===== END e2f-desktop-wide-v21.css ===== */

/* ===== BEGIN e2f-home-desktop-v22.css ===== */
/* EchoToFuture Home Desktop Hero V2.2 FIX1 */

.e2f-home-desktop-hero {
  display: none;
}

@media (min-width: 1024px) {
  body.e2f-home-page main {
    width: min(1640px, calc(100vw - 96px)) !important;
    max-width: min(1640px, calc(100vw - 96px)) !important;
  }

  .e2f-home-desktop-hero {
    display: grid;
    grid-template-columns: minmax(520px, 1.1fr) minmax(420px, .9fr);
    gap: clamp(32px, 5vw, 84px);
    align-items: center;
    width: min(1520px, calc(100vw - 120px));
    min-height: clamp(560px, 70vh, 760px);
    margin: 0 auto 48px auto;
    padding: clamp(42px, 5vw, 88px);
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(236,72,153,.24), transparent 34rem),
      radial-gradient(circle at 92% 5%, rgba(56,189,248,.20), transparent 30rem),
      rgba(15, 23, 42, .64);
    box-shadow: 0 30px 120px rgba(0, 0, 0, .32);
  }

  .e2f-home-desktop-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(236, 72, 153, .28);
    background: rgba(236, 72, 153, .12);
    color: #f9a8d4;
    font-weight: 900;
    margin-bottom: 24px;
  }

  .e2f-home-desktop-title {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(4.2rem, 6vw, 7.4rem);
    line-height: .92;
    letter-spacing: -0.075em;
    color: #fff;
  }

  .e2f-home-desktop-title span {
    color: #ec4899;
  }

  .e2f-home-desktop-lead {
    max-width: 64ch;
    margin-top: 28px;
    font-size: clamp(1.12rem, 1.15vw, 1.38rem);
    line-height: 1.72;
    color: #dbeafe;
  }

  .e2f-home-desktop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
    align-items: center;
  }

  .e2f-home-desktop-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    box-shadow: 0 18px 45px rgba(236,72,153,.22);
  }

  .e2f-home-desktop-secondary {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-weight: 800;
  }

  .e2f-home-desktop-panel {
    display: grid;
    gap: 16px;
  }

  .e2f-home-desktop-card {
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(15, 23, 42, .80);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 22px 70px rgba(0,0,0,.24);
  }

  .e2f-home-desktop-card b {
    display: block;
    color: #fff;
    font-size: 1.16rem;
    margin-bottom: 8px;
  }

  .e2f-home-desktop-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.62;
  }

  .e2f-home-desktop-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .e2f-home-desktop-mini {
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(2, 6, 23, .46);
    border-radius: 20px;
    padding: 16px;
    color: #cbd5e1;
  }

  .e2f-home-desktop-mini strong {
    display: block;
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
    margin-bottom: 7px;
  }
}

@media (min-width: 1500px) {
  .e2f-home-desktop-hero {
    width: min(1680px, calc(100vw - 150px));
    grid-template-columns: minmax(600px, 1.15fr) minmax(500px, .85fr);
  }
}

@media (max-width: 1023px) {
  .e2f-home-desktop-hero {
    display: none !important;
  }
}

/* ===== END e2f-home-desktop-v22.css ===== */

/* ===== BEGIN e2f-home-desktop-fix-v23.css ===== */
/* EchoToFuture Home Desktop Fix V2.3
   Desktop: hide old mobile intro under the new hero.
   Mobile: keep old intro.
*/

@media (min-width: 1024px) {
  body.e2f-home-page .cards-column {
    width: min(1120px, calc(100vw - 160px)) !important;
    max-width: min(1120px, calc(100vw - 160px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 28px !important;
  }

  body.e2f-home-page .cards-column > .card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Hide only the old phone-like intro card, not the form/community cards. */
  body.e2f-home-page .cards-column > section.card.text-center:first-of-type {
    display: none !important;
  }

  /* Hide the old intro text and old CTA directly following the hidden card. */
  body.e2f-home-page .cards-column > section.card.text-center:first-of-type + p,
  body.e2f-home-page .cards-column > section.card.text-center:first-of-type + p + a,
  body.e2f-home-page .cards-column > section.card.text-center:first-of-type + p + a + div {
    display: none !important;
  }

  /* Make the form feel like desktop, not phone. */
  body.e2f-home-page #form {
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.e2f-home-page #messageForm {
    max-width: 880px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.e2f-home-page .community-card {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 1500px) {
  body.e2f-home-page .cards-column {
    width: min(1240px, calc(100vw - 220px)) !important;
    max-width: min(1240px, calc(100vw - 220px)) !important;
  }

  body.e2f-home-page #form {
    max-width: 1040px !important;
  }
}

@media (max-width: 1023px) {
  body.e2f-home-page .cards-column {
    max-width: 540px;
  }
}

/* ===== END e2f-home-desktop-fix-v23.css ===== */

/* ===== BEGIN e2f-home-logo-v24.css ===== */
/* EchoToFuture Home Logo V2.4 */

@media (min-width: 1024px) {
  .e2f-home-desktop-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }

  .e2f-home-desktop-logo-shell {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 35% 25%, rgba(59,130,246,.26), transparent 2.4rem),
      rgba(15, 23, 42, .82);
    border: 1px solid rgba(148, 163, 184, .20);
    box-shadow:
      0 18px 48px rgba(0,0,0,.28),
      0 0 28px rgba(59,130,246,.18);
    overflow: hidden;
  }

  .e2f-home-desktop-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, .42));
  }

  .e2f-home-desktop-brand-text {
    display: grid;
    gap: 2px;
  }

  .e2f-home-desktop-brand-text strong {
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
  }

  .e2f-home-desktop-brand-text span {
    color: #94a3b8;
    font-weight: 700;
    font-size: .92rem;
  }

  .e2f-home-desktop-kicker {
    margin-top: 2px;
  }
}

@media (max-width: 1023px) {
  .e2f-home-desktop-brand {
    display: none !important;
  }
}

/* ===== END e2f-home-logo-v24.css ===== */

/* ===== BEGIN e2f-home-logo-placement-v25.css ===== */
/* EchoToFuture Home Logo Placement V2.5
   Removes the large misplaced hero brand block and turns the logo into a small badge icon.
*/

@media (min-width: 1024px) {
  .e2f-home-desktop-brand {
    display: none !important;
  }

  .e2f-home-kicker-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, .5));
  }

  .e2f-home-desktop-kicker {
    gap: 9px !important;
    padding-left: 11px !important;
  }
}

@media (max-width: 1023px) {
  .e2f-home-kicker-logo {
    display: none !important;
  }
}

/* ===== END e2f-home-logo-placement-v25.css ===== */

/* ===== BEGIN e2f-home-hero-v26.css ===== */
/* EchoToFuture Home Hero V2.6 Clean Final */

@media (min-width: 1024px) {
  body.e2f-home-page .e2f-home-desktop-brand,
  body.e2f-home-page .e2f-home-kicker-logo {
    display: none !important;
  }

  body.e2f-home-page .e2f-home-desktop-hero {
    display: grid !important;
    grid-template-columns: minmax(560px, 1.05fr) minmax(430px, .95fr) !important;
    gap: clamp(34px, 5vw, 82px) !important;
    align-items: center !important;
    width: min(1520px, calc(100vw - 120px)) !important;
    min-height: clamp(560px, 68vh, 760px) !important;
    margin: 0 auto 46px auto !important;
    padding: clamp(44px, 5vw, 86px) !important;
    border-radius: 34px !important;
    border: 1px solid rgba(148, 163, 184, .20) !important;
    background:
      radial-gradient(circle at 15% 12%, rgba(236,72,153,.22), transparent 32rem),
      radial-gradient(circle at 92% 8%, rgba(56,189,248,.20), transparent 32rem),
      rgba(15, 23, 42, .70) !important;
    box-shadow: 0 30px 120px rgba(0,0,0,.34) !important;
  }

  .e2f-hero-v26-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .e2f-hero-v26-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(15,23,42,.72);
    border: 1px solid rgba(148,163,184,.20);
    box-shadow: 0 14px 36px rgba(0,0,0,.26), 0 0 20px rgba(59,130,246,.22);
    padding: 6px;
  }

  .e2f-hero-v26-brand-text {
    display: grid;
    gap: 2px;
  }

  .e2f-hero-v26-brand-text strong {
    color: #fff;
    font-size: 1.16rem;
    line-height: 1.1;
  }

  .e2f-hero-v26-brand-text span {
    color: #94a3b8;
    font-size: .94rem;
    font-weight: 700;
  }

  .e2f-hero-v26-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(236,72,153,.13);
    border: 1px solid rgba(236,72,153,.30);
    color: #f9a8d4;
    font-weight: 900;
  }

  .e2f-home-desktop-title {
    margin: 0 !important;
    max-width: 14ch !important;
    font-size: clamp(4.1rem, 5.6vw, 7.1rem) !important;
    line-height: .94 !important;
    letter-spacing: -0.07em !important;
    color: #fff !important;
  }

  .e2f-home-desktop-title span {
    color: #ec4899 !important;
  }

  .e2f-home-desktop-lead {
    max-width: 68ch !important;
    margin-top: 26px !important;
    color: #dbeafe !important;
    font-size: clamp(1.1rem, 1.05vw, 1.32rem) !important;
    line-height: 1.72 !important;
  }

  .e2f-home-desktop-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    margin-top: 30px !important;
    align-items: center !important;
  }

  .e2f-home-desktop-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    background: linear-gradient(90deg,#ec4899,#8b5cf6) !important;
    box-shadow: 0 18px 45px rgba(236,72,153,.24) !important;
  }

  .e2f-home-desktop-secondary {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
  }

  .e2f-home-desktop-panel {
    display: grid !important;
    gap: 16px !important;
  }

  .e2f-home-desktop-card,
  .e2f-home-desktop-mini {
    border: 1px solid rgba(148,163,184,.18) !important;
    background: rgba(15,23,42,.82) !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.24) !important;
  }

  .e2f-home-desktop-card {
    border-radius: 24px !important;
    padding: 24px !important;
  }

  .e2f-home-desktop-card b {
    color: #fff !important;
    font-size: 1.18rem !important;
    display: block !important;
    margin-bottom: 8px !important;
  }

  .e2f-home-desktop-card p {
    color: #cbd5e1 !important;
    margin: 0 !important;
    line-height: 1.62 !important;
  }

  .e2f-home-desktop-metrics {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .e2f-home-desktop-mini {
    border-radius: 20px !important;
    padding: 16px !important;
    color: #cbd5e1 !important;
  }

  .e2f-home-desktop-mini strong {
    display: block !important;
    color: #fff !important;
    font-size: 1.45rem !important;
    line-height: 1.1 !important;
    margin-bottom: 7px !important;
  }
}

@media (min-width: 1500px) {
  body.e2f-home-page .e2f-home-desktop-hero {
    width: min(1680px, calc(100vw - 150px)) !important;
    grid-template-columns: minmax(620px, 1.12fr) minmax(500px, .88fr) !important;
  }
}

@media (max-width: 1023px) {
  .e2f-hero-v26-brand,
  .e2f-hero-v26-kicker {
    display: none !important;
  }
}

/* ===== END e2f-home-hero-v26.css ===== */

/* ===== BEGIN e2f-home-hero-card-align-v27.css ===== */
/* EchoToFuture Home Hero Card Align V2.7
   Fixes shifted desktop hero cards after V2.6.
*/

@media (min-width: 1024px) {
  body.e2f-home-page .e2f-home-desktop-hero {
    grid-template-columns: minmax(560px, 1fr) minmax(430px, 0.82fr) !important;
    align-items: center !important;
    overflow: hidden !important;
    padding-top: clamp(34px, 4vw, 64px) !important;
    padding-bottom: clamp(34px, 4vw, 64px) !important;
  }

  body.e2f-home-page .e2f-home-desktop-panel {
    align-self: center !important;
    justify-self: end !important;
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    display: grid !important;
    gap: 18px !important;
    margin: 0 !important;
    transform: none !important;
  }

  body.e2f-home-page .e2f-home-desktop-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 22px 24px !important;
  }

  body.e2f-home-page .e2f-home-desktop-card b {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  body.e2f-home-page .e2f-home-desktop-card p {
    max-width: none !important;
  }

  body.e2f-home-page .e2f-home-desktop-metrics {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }

  body.e2f-home-page .e2f-home-desktop-mini {
    min-width: 0 !important;
    padding: 16px 15px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  body.e2f-home-page .e2f-home-desktop-mini strong {
    font-size: clamp(1.05rem, 1.25vw, 1.35rem) !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (min-width: 1500px) {
  body.e2f-home-page .e2f-home-desktop-hero {
    grid-template-columns: minmax(620px, 1.05fr) minmax(500px, .85fr) !important;
  }

  body.e2f-home-page .e2f-home-desktop-panel {
    max-width: 620px !important;
  }
}

@media (max-width: 1280px) and (min-width: 1024px) {
  body.e2f-home-page .e2f-home-desktop-hero {
    grid-template-columns: minmax(480px, 1fr) minmax(380px, .82fr) !important;
    gap: 32px !important;
  }

  body.e2f-home-page .e2f-home-desktop-panel {
    max-width: 460px !important;
  }

  body.e2f-home-page .e2f-home-desktop-metrics {
    grid-template-columns: 1fr !important;
  }
}

/* ===== END e2f-home-hero-card-align-v27.css ===== */

/* ===== EchoToFuture Lighthouse FIX2: Accessibility + Agentic Browsing refinements ===== */

/* Improve contrast for muted text on dark backgrounds. */
.text-gray-400,
.text-slate-400,
.text-zinc-400,
.text-neutral-400,
.text-muted,
.muted,
.subtitle,
.subline,
.helper-text,
small {
  color: #e5e7eb !important;
}

/* Keep secondary text readable without changing the visual identity too much. */
.text-gray-500,
.text-slate-500,
.text-zinc-500,
.text-neutral-500 {
  color: #d1d5db !important;
}

/* Make keyboard focus visible for users and agents relying on accessibility tree state. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid #facc15;
  outline-offset: 3px;
}

/* Ensure common interactive elements meet mobile touch target expectations. */
button,
.button,
.btn,
a.btn,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
.main-header a,
nav a,
.footer a,
.social a,
.share a {
  min-height: 44px;
  min-width: 44px;
}

/* Icon-only/social links need actual hit area, not only the SVG size. */
.social a,
.share a,
a[aria-label],
button[aria-label] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Links are easier to distinguish for low-vision users. */
main a:not(.btn):not(.button) {
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

/* Placeholder contrast fix. */
::placeholder {
  color: #cbd5e1;
  opacity: 1;
}

/* Reduced motion users should not get decorative animation pressure. */
@media (prefers-reduced-motion: reduce) {
  lottie-player,
  .animate-pulse,
  .animate-bounce,
  .animate-spin {
    animation: none !important;
  }
}

/* ===== EchoToFuture Lighthouse FIX3: small perf + precise a11y refinements ===== */

/* Replace external Google Font dependency with fast native system font stack. */
html,
body,
input,
textarea,
select,
button {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji" !important;
}

/* Decorative animation should not cost mobile Lighthouse or reduced-motion users. */
html.e2f-no-lottie lottie-player {
  display: none !important;
}

@media (max-width: 899px) {
  lottie-player,
  .lottie-logo {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  lottie-player,
  .lottie-logo {
    display: none !important;
  }
}

/* Touch targets flagged by review. */
.menu-close,
button.menu-close,
button[aria-label="Datum wählen"] {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* More precise contrast fixes for inline legacy colors on dark surfaces. */
[style*="#b1b9c9"],
[style*="#a1a1aa"],
[style*="#94a3b8"],
[style*="#c3c6d1"],
[style*="#c9c8d2"] {
  color: #dbeafe !important;
}

[style*="#8b5cf6"] {
  color: #c4b5fd !important;
}

[style*="#a5b4fc"] {
  color: #c7d2fe !important;
}

/* Keep small helper text readable on mobile. */
small,
.helper-text,
.subline,
.subtitle {
  line-height: 1.45;
}
