

/* Start:/local/templates/nadelai_ld/template_styles.css?178160902173153*/
:root {
  --bg: #05070d;
  --bg-2: #070b14;
  --bg-3: #0d1220;
  --ink: #ffffff;
  --text: #edf3ff;
  --muted: #b8c0d9;
  --muted-2: #7f8ba8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --blue: #4f8cff;
  --cobalt: #1E3A8A;
  --orange: #F97316;
  --violet: #8b5cff;
  --teal: #31e6c5;
  --lime: #d6ff72;
  --gold: #ffd66b;
  --danger: #ff7b61;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --font: Inter, Manrope, Onest, "Space Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.nadelai-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nadelai-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(79, 140, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 7%, rgba(139, 92, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 66% 72%, rgba(49, 230, 197, 0.14), transparent 32rem),
    linear-gradient(180deg, #05070d 0%, #070b14 48%, #05070d 100%);
}

body.nadelai-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.svg-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(20px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(5, 7, 13, 0.92);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--teal);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(49, 230, 197, 0.23), rgba(139, 92, 255, 0.18));
  font-weight: 900;
  font-size: 20px;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.07);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  list-style: none;
  background: rgba(255, 255, 255, 0.045);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.btn,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgba(214, 255, 114, 0.2);
  border-radius: 999px;
  color: #07100f;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 16px 42px rgba(49, 230, 197, 0.24);
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover,
.btn:hover,
.mobile-sticky-cta:hover,
.header-cta:focus-visible,
.btn:focus-visible,
.mobile-sticky-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 52px rgba(49, 230, 197, 0.32);
  outline: none;
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-sticky-cta {
  display: none;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-aurora::before,
.section-aurora::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(6px);
}

.section-aurora::before {
  width: 420px;
  height: 420px;
  top: 8%;
  right: 0;
  background: radial-gradient(circle, rgba(139, 92, 255, 0.22), transparent 68%);
}

.section-aurora::after {
  width: 360px;
  height: 360px;
  left: 0;
  bottom: 8%;
  background: radial-gradient(circle, rgba(49, 230, 197, 0.16), transparent 70%);
}

.section-inner,
.hero-grid,
.final-inner {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 880px;
}

.section-head.center,
.cta-row.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-content: center;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(49, 230, 197, 0.24);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(49, 230, 197, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  text-transform: none;
  font-size: 13px;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero h1,
.section-title,
.lead-title,
.final-screen h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6.3vw, 84px);
}

.section-title,
.lead-title {
  max-width: 920px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.section-text,
.hero-subtitle,
.lead-copy,
.final-screen p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero {
  min-height: 88vh;
  padding: 86px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 52px;
  align-items: center;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-note,
.microcopy {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-badges span,
.panel-label,
.audience-card span,
.topic-group span,
.roadmap-flow b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  min-height: 620px;
}

.system-orbit {
  position: sticky;
  top: 102px;
  min-height: 600px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 34%, rgba(49, 230, 197, 0.18), transparent 18rem),
    radial-gradient(circle at 18% 74%, rgba(79, 140, 255, 0.2), transparent 16rem),
    radial-gradient(circle at 86% 20%, rgba(139, 92, 255, 0.2), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.system-orbit::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 41%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 315px;
  height: 315px;
}

.ring-two {
  width: 450px;
  height: 450px;
  border-style: dashed;
  opacity: 0.65;
}

.business-core,
.module-center {
  position: absolute;
  left: 50%;
  top: 41%;
  display: grid;
  place-items: center;
  width: 158px;
  height: 158px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(49, 230, 197, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 12%),
    linear-gradient(135deg, rgba(49, 230, 197, 0.52), rgba(139, 92, 255, 0.25));
  box-shadow: 0 0 80px rgba(49, 230, 197, 0.28), inset 0 0 24px rgba(255, 255, 255, 0.18);
  text-align: center;
}

.business-core span,
.module-center span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.business-core strong,
.module-center strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 96px;
  min-height: 82px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.66);
  backdrop-filter: blur(14px);
  color: var(--text);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
}

.orbit-node .svg-icon {
  color: var(--teal);
}

.orbit-node b {
  font-size: 12px;
  text-align: center;
}

.node-1 { left: 42%; top: 6%; }
.node-2 { right: 9%; top: 18%; }
.node-3 { right: 7%; top: 48%; }
.node-4 { right: 24%; bottom: 17%; }
.node-5 { left: 39%; bottom: 9%; }
.node-6 { left: 13%; bottom: 19%; }
.node-7 { left: 6%; top: 46%; }
.node-8 { left: 10%; top: 17%; }

.review-mockup {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(420px, calc(100% - 42px));
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.mockup-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.mockup-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.mockup-line {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  color: var(--muted);
}

.mockup-line b {
  color: var(--text);
  font-size: 13px;
}

.mockup-line span {
  font-size: 13px;
}

.mockup-line.active {
  background: rgba(49, 230, 197, 0.1);
}

.chaos-section,
.audience-section,
.format-section,
.faq-section {
  background: linear-gradient(180deg, rgba(13, 18, 32, 0.72), rgba(5, 7, 13, 0));
}

.chaos-system-grid,
.comparison,
.format-layout,
.trust-layout,
.lead-box,
.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.chaos-system-grid,
.comparison,
.lead-box,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chaos-panel,
.system-panel,
.compare-col,
.week-card,
.lead-placeholder,
.roadmap-stage {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.chaos-panel::before,
.system-panel::before,
.compare-col::before,
.week-card::before,
.lead-placeholder::before,
.roadmap-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 52%);
}

.chaos-panel > *,
.system-panel > *,
.compare-col > *,
.week-card > *,
.lead-placeholder > *,
.roadmap-stage > * {
  position: relative;
}

.panel-label {
  width: max-content;
  color: var(--danger);
  border-color: rgba(255, 123, 97, 0.22);
  background: rgba(255, 123, 97, 0.08);
}

.panel-label.positive {
  color: var(--teal);
  border-color: rgba(49, 230, 197, 0.22);
  background: rgba(49, 230, 197, 0.08);
}

.chaos-panel h3,
.system-panel h3,
.compare-col h3,
.week-card h3,
.lead-placeholder h3,
.roadmap-stage h3 {
  margin: 18px 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.pain-cloud {
  display: grid;
  gap: 10px;
}

.pain-card,
.system-step,
.feature-card,
.audience-card,
.module-card,
.format-card,
.topic-group,
.principle-card,
.trust-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pain-card:hover,
.system-step:hover,
.feature-card:hover,
.audience-card:hover,
.module-card:hover,
.format-card:hover,
.topic-group:hover,
.principle-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
}

.pain-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px;
  color: var(--muted);
}

.pain-card .svg-icon {
  color: var(--danger);
}

.system-ladder {
  display: grid;
  gap: 12px;
}

.system-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
}

.step-number {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.system-step .svg-icon {
  color: var(--lime);
}

.system-step b,
.feature-card h3,
.audience-card h3,
.module-card h3,
.format-card h3,
.topic-group h3,
.trust-card b {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.16;
}

.system-step small,
.feature-card p,
.audience-card p,
.module-card p,
.format-card p,
.topic-group span,
.trust-card span,
.week-card p {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
}

.statement,
.cta-band {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(49, 230, 197, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(49, 230, 197, 0.13), transparent 20rem),
    rgba(49, 230, 197, 0.075);
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.feature-grid,
.audience-grid,
.format-grid,
.topic-groups,
.principle-grid,
.trust-grid {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.audience-card,
.format-card,
.trust-card {
  min-height: 210px;
  padding: 22px;
}

.icon-badge,
.audience-icon,
.lead-placeholder-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(49, 230, 197, 0.2);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(49, 230, 197, 0.09);
}

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-card {
  min-height: 238px;
}

.audience-card span {
  margin-top: 16px;
  color: var(--lime);
  border-color: rgba(214, 255, 114, 0.18);
  background: rgba(214, 255, 114, 0.06);
}

.modules-section {
  overflow: hidden;
}

.module-system {
  position: relative;
  min-height: 680px;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 140, 255, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.035);
}

.module-system::before,
.module-system::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.module-system::before {
  width: 390px;
  height: 390px;
}

.module-system::after {
  width: 570px;
  height: 570px;
  border-style: dashed;
}

.module-center {
  top: 50%;
}

.module-card {
  position: absolute;
  width: 205px;
  min-height: 136px;
  padding: 18px;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(16px);
}

.module-card .svg-icon {
  color: var(--teal);
  margin-bottom: 12px;
}

.module-1 { left: 50%; top: 30px; transform: translateX(-50%); }
.module-2 { right: 76px; top: 104px; }
.module-3 { right: 42px; top: 278px; }
.module-4 { right: 142px; bottom: 70px; }
.module-5 { left: 50%; bottom: 28px; transform: translateX(-50%); }
.module-6 { left: 142px; bottom: 70px; }
.module-7 { left: 42px; top: 278px; }
.module-8 { left: 76px; top: 104px; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band b {
  display: block;
}

.cta-band span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.compare-col.muted {
  opacity: 0.78;
}

.compare-col.highlight {
  border-color: rgba(49, 230, 197, 0.26);
  background:
    radial-gradient(circle at 84% 16%, rgba(49, 230, 197, 0.16), transparent 16rem),
    rgba(49, 230, 197, 0.065);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.check-list.negative li::before {
  width: 12px;
  height: 2px;
  border: 0;
  background: var(--danger);
  transform: none;
}

.format-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.format-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.format-card {
  min-height: 180px;
}

.format-card .svg-icon {
  color: var(--blue);
  margin-bottom: 14px;
}

.week-card {
  min-height: 100%;
  background:
    radial-gradient(circle at 86% 12%, rgba(214, 255, 114, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.055);
}

.week-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.week-row b {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  color: #07100f;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

.week-row span {
  color: var(--muted);
}

.topic-groups {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.topic-group {
  min-height: 260px;
  padding: 20px;
}

.topic-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.topic-group span {
  border-radius: var(--radius);
  min-height: 30px;
}

.market-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.market-line div {
  position: relative;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.market-line div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--line-strong);
}

.market-line strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
}

.market-line span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card {
  min-height: 168px;
  padding: 24px;
}

.principle-card strong {
  display: block;
  color: var(--teal);
  font-size: 42px;
  line-height: 1;
}

.principle-card span {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 1px;
  background: var(--line-strong);
  transform: translate(-50%, -50%);
}

.roadmap-stage span:first-child {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(49, 230, 197, 0.22);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(49, 230, 197, 0.08);
  font-weight: 900;
}

.roadmap-stage.active {
  border-color: rgba(214, 255, 114, 0.2);
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 255, 114, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.06);
}

.roadmap-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.trust-card {
  min-height: 174px;
  padding: 20px;
}

.trust-card strong {
  display: block;
  color: var(--lime);
  font-size: 38px;
  line-height: 1;
}

.trust-card b {
  margin-top: 14px;
}

.lead-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(49, 230, 197, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 76%, rgba(139, 92, 255, 0.18), transparent 24rem),
    #0d1220;
}

.lead-box {
  align-items: center;
  margin-top: 0;
}

.lead-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.lead-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.lead-points .svg-icon {
  color: var(--teal);
}

.lead-placeholder {
  min-height: 360px;
  padding: 30px;
  background:
    radial-gradient(circle at 84% 12%, rgba(214, 255, 114, 0.12), transparent 16rem),
    rgba(255, 255, 255, 0.07);
}

.lead-placeholder-icon svg path {
  fill: currentColor;
}

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

.faq-grid {
  grid-template-columns: 0.72fr 1.28fr;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 19px 54px 19px 20px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-screen {
  overflow: hidden;
  padding: 112px 0 124px;
  text-align: center;
}

.final-inner {
  display: grid;
  justify-items: center;
}

.final-screen h2 {
  max-width: 950px;
  font-size: clamp(40px, 6vw, 76px);
}

.final-screen p {
  margin-left: auto;
  margin-right: auto;
}

.ld-communication {
  min-height: calc(100svh - 86px);
  display: grid;
  align-items: center;
  padding: 94px 0 112px;
}

.ld-communication-shell {
  display: grid;
  gap: 34px;
}

.ld-communication-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ld-communication-title {
  max-width: 880px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.ld-communication-subtitle {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

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

.ld-channel-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ld-channel-card:hover,
.ld-channel-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(214, 255, 114, 0.32);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  outline: none;
}

.ld-channel-card-max {
  background:
    radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(30, 58, 138, 0.34), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.ld-channel-card-telegram {
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 140, 255, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(30, 58, 138, 0.28), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.ld-channel-logo {
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.32));
}

.ld-channel-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ld-channel-logo-max text {
  fill: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.ld-channel-logo-max svg {
  background: linear-gradient(135deg, var(--cobalt), var(--orange));
  border-radius: 28px;
}

.ld-channel-logo-max rect {
  fill: transparent;
}

.ld-channel-logo-telegram circle {
  fill: #229ed9;
}

.ld-channel-logo-telegram path {
  fill: #fff;
  transform: translate(10px, 10px) scale(0.82);
  transform-origin: center;
}

.ld-channel-copy strong {
  display: block;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.ld-channel-copy small {
  display: block;
  max-width: 320px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.ld-channel-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(214, 255, 114, 0.24);
  border-radius: 999px;
  color: #07100f;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 16px 42px rgba(49, 230, 197, 0.22);
  font-weight: 850;
}

.ld-communication-note {
  max-width: 680px;
  margin: 4px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.ld-communication-note p {
  margin: 0;
}

.site-footer {
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.92);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1160px) {
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 7, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: block;
  }

  .nav-list {
    display: grid;
    border-radius: var(--radius);
    background: transparent;
  }

  .nav-list a {
    justify-content: center;
    min-height: 44px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-grid,
  .chaos-system-grid,
  .comparison,
  .format-layout,
  .trust-layout,
  .lead-box,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .system-orbit {
    position: relative;
    top: auto;
    min-height: 600px;
  }

  .audience-grid,
  .topic-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .principle-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-system {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
  }

  .module-system::before,
  .module-system::after,
  .module-center {
    display: none;
  }

  .module-card {
    position: relative;
    inset: auto;
    transform: none;
    width: auto;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body.nadelai-page {
    padding-bottom: 74px;
  }

  .shell {
    width: min(100% - 24px, 1200px);
  }

  .header-shell {
    min-height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: inline-flex;
    min-height: 52px;
  }

  .section {
    padding: 68px 0;
  }

  .ld-communication {
    min-height: auto;
    padding: 58px 0 84px;
  }

  .ld-communication-shell {
    gap: 24px;
  }

  .ld-communication-title {
    font-size: 42px;
    line-height: 1;
  }

  .ld-communication-subtitle {
    font-size: 17px;
  }

  .ld-channel-grid {
    grid-template-columns: 1fr;
  }

  .ld-channel-card {
    min-height: 280px;
    padding: 26px;
  }

  .ld-channel-logo {
    width: 92px;
    height: 92px;
  }

  .ld-channel-copy strong {
    font-size: 32px;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 68px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-title,
  .lead-title {
    font-size: 34px;
  }

  .section-text,
  .hero-subtitle,
  .lead-copy,
  .final-screen p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .system-orbit {
    min-height: 540px;
  }

  .ring-one {
    width: 230px;
    height: 230px;
  }

  .ring-two {
    width: 330px;
    height: 330px;
  }

  .business-core {
    width: 126px;
    height: 126px;
  }

  .business-core strong {
    font-size: 18px;
  }

  .orbit-node {
    width: 78px;
    min-height: 66px;
    padding: 8px;
  }

  .orbit-node b {
    font-size: 10px;
  }

  .node-1 { left: 39%; top: 5%; }
  .node-2 { right: 4%; top: 17%; }
  .node-3 { right: 4%; top: 44%; }
  .node-4 { right: 16%; bottom: 24%; }
  .node-5 { left: 40%; bottom: 21%; }
  .node-6 { left: 16%; bottom: 24%; }
  .node-7 { left: 4%; top: 44%; }
  .node-8 { left: 4%; top: 17%; }

  .review-mockup {
    bottom: 14px;
    width: calc(100% - 24px);
  }

  .mockup-line {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .feature-grid,
  .audience-grid,
  .module-system,
  .format-grid,
  .topic-groups,
  .market-line,
  .principle-grid,
  .trust-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .roadmap::before,
  .market-line div:not(:last-child)::after {
    display: none;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-card,
  .audience-card,
  .format-card,
  .topic-group,
  .trust-card {
    min-height: auto;
  }

  .statement {
    font-size: 18px;
  }

  .week-row {
    grid-template-columns: 48px 1fr;
  }

  .final-screen {
    padding: 82px 0 94px;
  }

  .final-screen h2 {
    font-size: 40px;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Founder, CRM form and legal work upgrades */
.founder-hero {
  min-height: 640px;
}

.founder-hero-card,
.founder-photo-frame,
.founder-layout,
.legal-layout {
  position: relative;
}

.founder-hero-card {
  min-height: 620px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 12%, rgba(49, 230, 197, 0.22), transparent 20rem),
    radial-gradient(circle at 85% 20%, rgba(139, 92, 255, 0.3), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.founder-hero-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.founder-photo-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 22%, rgba(49, 230, 197, 0.2), transparent 18rem),
    #0d1220;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.46),
    0 0 90px rgba(79, 140, 255, 0.16);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.76), transparent 36%, rgba(5, 7, 13, 0.32)),
    linear-gradient(180deg, transparent 34%, rgba(5, 7, 13, 0.72) 100%),
    radial-gradient(circle at 54% 24%, transparent 0 10rem, rgba(5, 7, 13, 0.1) 20rem, rgba(5, 7, 13, 0.42) 100%);
}

.founder-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 22%;
  filter: saturate(0.88) contrast(1.05) brightness(0.82);
}

.founder-photo-hero {
  position: absolute;
  inset: 24px 24px 24px 24px;
  z-index: 0;
}

.founder-hero-caption {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 38px;
  z-index: 2;
  max-width: 410px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.74);
  backdrop-filter: blur(18px);
}

.founder-hero-caption span,
.founder-mini-card span {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.founder-hero-caption strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.founder-hero-caption p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.founder-signal {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(49, 230, 197, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.signal-one { left: 42px; top: 44px; }
.signal-two { right: 34px; top: 132px; }
.signal-three { right: 42px; bottom: 170px; color: var(--lime); }

.legal-section,
.founder-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 18, 32, 0), rgba(13, 18, 32, 0.72), rgba(5, 7, 13, 0));
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: center;
}

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

.legal-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 16%, rgba(49, 230, 197, 0.1), transparent 12rem),
    rgba(255, 255, 255, 0.055);
}

.legal-card .svg-icon {
  color: var(--lime);
  margin-bottom: 18px;
}

.legal-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.legal-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.founder-photo-block {
  min-height: 740px;
}

.founder-photo-block img {
  object-position: 52% 18%;
}

.founder-mini-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(18px);
}

.founder-mini-card b {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.founder-mini-card span {
  margin-top: 9px;
  color: var(--muted);
}

.founder-story {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.founder-story p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.founder-facts div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 760;
}

.founder-approach {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(49, 230, 197, 0.18);
  border-radius: var(--radius);
  background: rgba(49, 230, 197, 0.065);
}

.founder-approach h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.founder-approach p {
  margin: 7px 0 0;
  color: var(--muted);
}

.founder-approach div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.founder-approach span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 750;
}

.founder-content blockquote {
  margin: 24px 0 0;
  padding: 24px;
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 255, 114, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.06);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.25;
}

.crm-lead-form {
  min-height: 520px;
}

.crm-form-embed {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.crm-form-embed .b24-form,
.crm-form-embed iframe {
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 1160px) {
  .founder-hero {
    min-height: auto;
  }

  .founder-hero-card {
    min-height: 620px;
  }

  .legal-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo-block {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .founder-hero-card {
    min-height: 520px;
  }

  .founder-photo-hero {
    inset: 12px;
  }

  .founder-photo-frame img {
    object-position: 53% 20%;
  }

  .founder-hero-caption {
    left: 22px;
    right: 22px;
    bottom: 20px;
    padding: 16px;
  }

  .founder-hero-caption strong {
    font-size: 23px;
  }

  .founder-signal {
    display: none;
  }

  .legal-grid,
  .founder-facts {
    grid-template-columns: 1fr;
  }

  .founder-photo-block {
    min-height: 560px;
  }

  .founder-content blockquote {
    font-size: 18px;
  }
}


/* 2026-05-06 brand, founder and environment refinement */
.hero-title {
  display: grid;
  gap: 6px;
}

.hero-title span {
  display: block;
}

.hero-title-brand {
  color: var(--ink);
  font-size: clamp(48px, 6.7vw, 92px);
}

.hero-title-community {
  color: var(--ink);
  font-size: clamp(42px, 5.8vw, 78px);
}

.hero-title-slogan {
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(36px, 4.9vw, 64px);
  line-height: 1.04;
}

.founder-hero-card {
  border: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 48% 38%, rgba(79, 140, 255, 0.38), transparent 19rem),
    radial-gradient(circle at 80% 10%, rgba(49, 230, 197, 0.14), transparent 19rem),
    linear-gradient(90deg, rgba(5, 7, 13, 0), rgba(13, 18, 32, 0.62));
  box-shadow: none;
}

.founder-hero-card::before {
  inset: 8px;
  border: 0;
  opacity: 0.55;
  mask-image: radial-gradient(circle at 60% 38%, black, transparent 70%);
}

.founder-photo-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founder-photo-frame::before {
  content: "";
  position: absolute;
  inset: auto 2% 0;
  height: 38%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 55% 100%, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.62) 42%, transparent 72%);
}

.founder-photo-frame::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.88), transparent 31%, rgba(5, 7, 13, 0.12) 64%, rgba(5, 7, 13, 0.72)),
    linear-gradient(180deg, rgba(5, 7, 13, 0.18), transparent 30%, rgba(5, 7, 13, 0.86) 100%),
    radial-gradient(circle at 54% 24%, transparent 0 10rem, rgba(5, 7, 13, 0.08) 20rem, rgba(5, 7, 13, 0.36) 100%);
}

.founder-photo-frame img {
  filter: saturate(0.92) contrast(1.08) brightness(0.86);
  mask-image: linear-gradient(90deg, transparent 0, black 10%, black 82%, transparent 100%);
}

.founder-photo-hero {
  inset: -12px -6px -10px 18px;
}

.founder-hero-caption {
  left: 32px;
  bottom: 34px;
  max-width: 430px;
  border-color: rgba(79, 140, 255, 0.2);
  background: rgba(5, 7, 13, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}


.founder-photo-block {
  background:
    radial-gradient(circle at 56% 22%, rgba(79, 140, 255, 0.28), transparent 22rem),
    radial-gradient(circle at 18% 86%, rgba(49, 230, 197, 0.1), transparent 18rem);
}

.founder-photo-block img {
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 88%, transparent 100%);
}

.founder-mini-card {
  border-color: rgba(79, 140, 255, 0.22);
  background: rgba(5, 7, 13, 0.56);
}

.environment-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 16%, rgba(79, 140, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 68%, rgba(49, 230, 197, 0.12), transparent 26rem);
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.environment-card {
  min-height: 256px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(79, 140, 255, 0.13), transparent 13rem),
    rgba(255, 255, 255, 0.055);
}

.environment-card .svg-icon {
  color: var(--teal);
  margin-bottom: 18px;
}

.environment-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.environment-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.environment-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(49, 230, 197, 0.16);
  border-radius: var(--radius);
  background: rgba(49, 230, 197, 0.055);
}

.environment-flow span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  white-space: nowrap;
}

.environment-flow b {
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 230, 197, 0.18), rgba(79, 140, 255, 0.65));
}

.lead-placeholder.crm-lead-form {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.crm-form-embed {
  margin-top: 0;
}

@media (max-width: 1160px) {
  .environment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .environment-flow {
    grid-template-columns: 1fr;
  }

  .environment-flow b {
    width: 1px;
    height: 20px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .hero-title {
    gap: 5px;
  }

  .founder-photo-hero {
    inset: -6px -36px -14px -8px;
  }

  .founder-hero-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .environment-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-05-07 founder hero integration */
.hero.section-aurora {
  background:
    linear-gradient(115deg, rgba(5, 7, 13, 0) 0 52%, rgba(30, 58, 138, 0.16) 72%, rgba(5, 7, 13, 0.72) 100%),
    linear-gradient(180deg, #05070D 0%, #070b14 48%, #05070D 100%);
}

.hero.section-aurora::before {
  width: min(620px, 44vw);
  height: 52vh;
  top: 4%;
  right: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.44), rgba(249, 115, 22, 0.08) 48%, transparent 78%);
  filter: blur(22px);
  opacity: 0.72;
}

.hero.section-aurora::after {
  width: min(620px, 44vw);
  height: 34vh;
  left: auto;
  right: 0;
  bottom: -12%;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.26), rgba(249, 115, 22, 0.09), transparent);
  filter: blur(18px);
  opacity: 0.62;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  gap: clamp(28px, 4vw, 56px);
}

.hero-visual.founder-hero {
  align-self: stretch;
  min-height: clamp(560px, 64vh, 720px);
  margin-right: clamp(-86px, -4vw, -22px);
  overflow: hidden;
  contain: paint;
}

.founder-hero-card {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0) 0%, rgba(5, 7, 13, 0.2) 33%, rgba(30, 58, 138, 0.16) 64%, rgba(5, 7, 13, 0.9) 100%);
  box-shadow: none;
}

.founder-hero-card::before {
  content: "";
  position: absolute;
  inset: -36px 0 -32px -10px;
  z-index: 3;
  border: 0;
  border-radius: 0;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 80%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 80%, transparent 100%);
}

.founder-hero-card::after {
  content: "";
  position: absolute;
  inset: 6% -24% 7% 34%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.58), rgba(30, 58, 138, 0.24) 38%, rgba(249, 115, 22, 0.12) 58%, transparent 82%);
  filter: blur(42px);
  opacity: 0.72;
}

.founder-photo-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founder-photo-frame::before {
  content: "";
  position: absolute;
  inset: auto -4% -2% 2%;
  height: 46%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.78) 58%, #05070D 100%);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, #05070D 0%, rgba(5, 7, 13, 0.9) 14%, rgba(5, 7, 13, 0.28) 42%, rgba(5, 7, 13, 0.18) 61%, rgba(5, 7, 13, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.62) 0%, transparent 22%, rgba(5, 7, 13, 0.34) 58%, #05070D 100%),
    linear-gradient(135deg, rgba(30, 58, 138, 0.34), transparent 42%, rgba(249, 115, 22, 0.1) 78%, transparent 100%);
}

.founder-photo-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
  filter: saturate(0.72) contrast(1.14) brightness(0.68);
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.founder-photo-hero {
  position: absolute;
  inset: -78px 0 -82px 6%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 77%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 77%, transparent 100%);
}

.founder-photo-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-interface-layer {
  position: absolute;
  inset: -24px 0 -20px 0;
  z-index: 4;
  pointer-events: none;
}

.founder-scan-line {
  position: absolute;
  left: 14%;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.86), rgba(249, 115, 22, 0.46), transparent);
  box-shadow: 0 0 24px rgba(30, 58, 138, 0.38);
  opacity: 0.72;
}

.line-top {
  top: 23%;
  transform: rotate(-3deg);
}

.line-mid {
  top: 48%;
  left: 5%;
  opacity: 0.58;
}

.line-low {
  right: 8%;
  bottom: 23%;
  transform: rotate(2deg);
  opacity: 0.46;
}

.founder-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(249, 115, 22, 0.82);
  border-radius: 2px;
  background: #05070D;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.36), 0 0 30px rgba(30, 58, 138, 0.42);
}

.node-a {
  right: 22%;
  top: 22%;
}

.node-b {
  left: 31%;
  top: 48%;
}

.node-c {
  right: 13%;
  bottom: 23%;
}

.founder-hero-caption {
  position: absolute;
  left: 34px;
  right: auto;
  bottom: 54px;
  z-index: 5;
  max-width: 390px;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 1px solid rgba(249, 115, 22, 0.58);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.founder-hero-caption span,
.founder-mini-card span {
  color: rgba(249, 115, 22, 0.92);
}

.founder-hero-caption span {
  display: block;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.founder-hero-caption strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.04;
  text-shadow: 0 0 24px rgba(30, 58, 138, 0.46);
}

.founder-hero-caption p {
  max-width: 340px;
  margin: 9px 0 0;
  color: rgba(237, 243, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.founder-signal {
  min-height: 28px;
  padding: 0 9px;
  border-color: rgba(30, 58, 138, 0.52);
  border-radius: 4px;
  color: rgba(237, 243, 255, 0.76);
  background: rgba(5, 7, 13, 0.42);
  box-shadow: inset 0 0 18px rgba(30, 58, 138, 0.12), 0 0 24px rgba(30, 58, 138, 0.14);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
}

.signal-one {
  left: 12%;
  top: 18%;
}

.signal-two {
  right: 7%;
  top: 34%;
}

.signal-three {
  right: 13%;
  bottom: 31%;
  color: rgba(249, 115, 22, 0.92);
  border-color: rgba(249, 115, 22, 0.38);
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual.founder-hero {
    min-height: 540px;
    margin-right: 0;
  }

  .founder-hero-card {
    min-height: 540px;
  }

  .founder-photo-hero {
    inset: -56px 0 -70px 10%;
  }

  .founder-interface-layer {
    inset: -18px 0 -18px 0;
  }
}

@media (max-width: 760px) {
  .hero.section-aurora {
    background:
      linear-gradient(180deg, #05070D 0%, #070b14 52%, #05070D 100%);
  }

  .hero-visual.founder-hero {
    min-height: 440px;
  }

  .founder-hero-card {
    min-height: 440px;
  }

  .founder-photo-hero {
    inset: -28px 0 -48px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 80%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 80%, transparent 100%);
  }

  .founder-photo-frame img {
    object-position: 55% 16%;
    filter: saturate(0.72) contrast(1.12) brightness(0.62);
  }

  .founder-hero-caption {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: calc(100% - 32px);
    padding-left: 14px;
  }

  .founder-hero-caption strong {
    font-size: 23px;
  }

  .founder-hero-caption p {
    max-width: 290px;
    font-size: 13px;
  }

  .founder-signal {
    display: none;
  }

  .founder-interface-layer {
    inset: -10px 0 -12px 0;
  }
}


/* Keep CRM form fields visible when CTA links scroll to #lead */
.lead-form-anchor {
  scroll-margin-top: 112px;
}

@media (max-width: 760px) {
  .lead-form-anchor {
    scroll-margin-top: 86px;
  }
}

/* 2026-06-16 founder photo power integration */
.hero.section-aurora {
  background:
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 64%, rgba(49, 230, 197, 0.1), transparent 26rem),
    linear-gradient(112deg, rgba(5, 7, 13, 0) 0 48%, rgba(30, 58, 138, 0.18) 70%, rgba(5, 7, 13, 0.82) 100%),
    linear-gradient(180deg, #05070D 0%, #070b14 48%, #05070D 100%);
}

.hero-visual.founder-hero {
  min-height: clamp(590px, 68vh, 780px);
  overflow: visible;
}

.founder-hero-card {
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 30%, rgba(79, 140, 255, 0.26), transparent 20rem),
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.18), transparent 19rem),
    linear-gradient(90deg, rgba(5, 7, 13, 0.1) 0%, rgba(5, 7, 13, 0.24) 36%, rgba(5, 7, 13, 0.84) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 42px 140px rgba(0, 0, 0, 0.36);
}

.founder-hero-card::before {
  inset: -30px -12px -28px 0;
  z-index: 4;
  opacity: 0.46;
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(circle at 62% 36%, black, transparent 74%);
  mask-image: radial-gradient(circle at 62% 36%, black, transparent 74%);
}

.founder-hero-card::after {
  inset: 4% -18% 4% 30%;
  z-index: 0;
  background:
    linear-gradient(128deg, rgba(30, 58, 138, 0.5), rgba(49, 230, 197, 0.11) 44%, rgba(249, 115, 22, 0.18) 66%, transparent 86%);
  filter: blur(48px);
  opacity: 0.78;
}

.founder-photo-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-photo-frame::before {
  inset: 0;
  height: auto;
  z-index: 2;
  background:
    radial-gradient(ellipse at 56% 28%, transparent 0 16rem, rgba(5, 7, 13, 0.06) 27rem, rgba(5, 7, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.16) 0%, transparent 26%, rgba(5, 7, 13, 0.7) 100%);
}

.founder-photo-frame::after {
  z-index: 3;
  background:
    linear-gradient(90deg, #05070D 0%, rgba(5, 7, 13, 0.8) 12%, rgba(5, 7, 13, 0.08) 36%, rgba(5, 7, 13, 0.06) 66%, rgba(5, 7, 13, 0.8) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.34) 0%, transparent 22%, rgba(5, 7, 13, 0.2) 58%, #05070D 100%),
    linear-gradient(135deg, rgba(30, 58, 138, 0.24), transparent 42%, rgba(249, 115, 22, 0.12) 78%, transparent 100%);
}

.founder-photo-frame img {
  object-position: 54% 34%;
  filter: saturate(1.04) contrast(1.08) brightness(0.95);
  transform: scale(1.04);
  transform-origin: center center;
  -webkit-mask-image: none;
  mask-image: none;
}

.founder-photo-hero {
  inset: 18px -7% 18px 14%;
  z-index: 1;
}

.founder-photo-hero img {
  object-position: 55% 35%;
}

.founder-interface-layer {
  z-index: 5;
}

.founder-scan-line {
  background: linear-gradient(90deg, transparent, rgba(49, 230, 197, 0.56), rgba(249, 115, 22, 0.5), transparent);
  box-shadow: 0 0 28px rgba(79, 140, 255, 0.26), 0 0 18px rgba(249, 115, 22, 0.12);
}

.founder-node {
  border-color: rgba(249, 115, 22, 0.92);
  background: rgba(5, 7, 13, 0.92);
}

.founder-hero-caption {
  left: clamp(22px, 4vw, 58px);
  bottom: clamp(30px, 5vw, 70px);
  z-index: 6;
  max-width: min(450px, 58%);
  padding: 18px 20px 18px 18px;
  border-left: 2px solid rgba(249, 115, 22, 0.86);
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.72), rgba(5, 7, 13, 0.28));
  backdrop-filter: blur(14px);
}

.founder-hero-caption strong {
  font-size: clamp(28px, 2.8vw, 40px);
  text-shadow: 0 0 26px rgba(79, 140, 255, 0.42);
}

.founder-hero-caption p {
  max-width: 380px;
  color: rgba(237, 243, 255, 0.82);
}

.founder-signal {
  z-index: 6;
  border-color: rgba(79, 140, 255, 0.38);
  color: rgba(237, 243, 255, 0.82);
  background: rgba(5, 7, 13, 0.54);
}

.signal-one {
  left: 10%;
  top: 19%;
}

.signal-two {
  right: 8%;
  top: 37%;
}

.signal-three {
  right: 13%;
  bottom: 28%;
}

.founder-photo-block {
  min-height: clamp(600px, 56vw, 760px);
  border: 1px solid rgba(79, 140, 255, 0.18);
  background:
    radial-gradient(circle at 54% 24%, rgba(79, 140, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 72% 72%, rgba(249, 115, 22, 0.12), transparent 18rem),
    #070b14;
}

.founder-photo-block picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.founder-photo-block::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.08) 0%, transparent 28%, rgba(5, 7, 13, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 7, 13, 0.5), transparent 30%, rgba(5, 7, 13, 0.28));
}

.founder-photo-block img {
  width: 100%;
  height: 100%;
  object-position: 50% 34%;
  filter: saturate(1.03) contrast(1.08) brightness(0.92);
  transform: scale(1.02);
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 1160px) {
  .hero-visual.founder-hero,
  .founder-hero-card {
    min-height: 620px;
  }

  .founder-photo-hero {
    inset: 18px -4% 18px 10%;
  }

  .founder-hero-caption {
    max-width: 470px;
  }
}

@media (max-width: 760px) {
  .hero-visual.founder-hero,
  .founder-hero-card {
    min-height: 500px;
  }

  .founder-photo-hero {
    inset: 0 -30% 0 -14%;
  }

  .founder-photo-frame::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.16) 30%, rgba(5, 7, 13, 0.18) 66%, rgba(5, 7, 13, 0.72) 100%),
      linear-gradient(180deg, rgba(5, 7, 13, 0.24) 0%, transparent 26%, rgba(5, 7, 13, 0.84) 100%);
  }

  .founder-photo-frame img {
    object-position: 50% 34%;
    filter: saturate(1.02) contrast(1.06) brightness(0.91);
    transform: scale(1.02);
  }

  .founder-hero-caption {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: calc(100% - 32px);
    padding: 16px;
    background: rgba(5, 7, 13, 0.68);
  }

  .founder-hero-caption p {
    max-width: 100%;
  }

  .founder-photo-block {
    min-height: 520px;
  }

  .founder-photo-block img {
    object-position: 50% 34%;
    transform: scale(1.04);
  }
}

/* 2026-06-16 founder integrated presence correction */
.hero.section-aurora {
  background:
    radial-gradient(circle at 74% 22%, rgba(249, 115, 22, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 62%, rgba(49, 230, 197, 0.12), transparent 30rem),
    linear-gradient(105deg, rgba(5, 7, 13, 0) 0 44%, rgba(30, 58, 138, 0.12) 66%, rgba(5, 7, 13, 0.7) 100%),
    linear-gradient(180deg, #05070D 0%, #070b14 48%, #05070D 100%);
}

.hero-visual.founder-hero {
  min-height: clamp(610px, 70vh, 820px);
  overflow: visible;
  contain: none;
}

.founder-hero-card {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.founder-hero-card::before {
  display: none;
}

.founder-hero-card::after {
  inset: -8% -34% -18% -14%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 60% 34%, rgba(79, 140, 255, 0.28), transparent 22rem),
    radial-gradient(ellipse at 72% 62%, rgba(249, 115, 22, 0.18), transparent 24rem),
    radial-gradient(ellipse at 38% 84%, rgba(49, 230, 197, 0.12), transparent 20rem);
  filter: blur(12px);
  opacity: 0.96;
}

.founder-photo-hero {
  inset: -7% -30% -12% -4%;
  overflow: visible;
  -webkit-mask-image: radial-gradient(ellipse 58% 60% at 60% 43%, #000 0 48%, rgba(0, 0, 0, 0.86) 58%, transparent 82%);
  mask-image: radial-gradient(ellipse 58% 60% at 60% 43%, #000 0 48%, rgba(0, 0, 0, 0.86) 58%, transparent 82%);
}

.founder-photo-hero::before {
  inset: -10% -8% -10% -18%;
  height: auto;
  z-index: 2;
  background:
    linear-gradient(90deg, #05070D 0%, rgba(5, 7, 13, 0.78) 16%, rgba(5, 7, 13, 0.08) 44%, rgba(5, 7, 13, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.08) 0%, transparent 34%, rgba(5, 7, 13, 0.82) 100%);
}

.founder-photo-hero::after {
  inset: -5% -6% -4% -8%;
  z-index: 3;
  background:
    radial-gradient(ellipse at 52% 34%, transparent 0 15rem, rgba(5, 7, 13, 0.1) 24rem, rgba(5, 7, 13, 0.58) 100%),
    linear-gradient(130deg, rgba(79, 140, 255, 0.18), transparent 38%, rgba(249, 115, 22, 0.1) 70%, transparent 100%);
}

.founder-photo-hero img {
  object-position: 50% 38%;
  filter: saturate(1.06) contrast(1.08) brightness(0.99);
  transform: scale(1.18) translateX(2%);
}

.founder-interface-layer,
.founder-signal {
  display: none;
}

.founder-hero-caption {
  left: clamp(20px, 3.6vw, 52px);
  bottom: clamp(28px, 4.6vw, 66px);
  max-width: min(410px, 48%);
  padding: 0 0 0 18px;
  border-left: 2px solid rgba(249, 115, 22, 0.86);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.founder-hero-caption strong {
  font-size: clamp(32px, 3.2vw, 46px);
}

.founder-hero-caption p {
  color: rgba(237, 243, 255, 0.78);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.62);
}

.founder-photo-block {
  min-height: clamp(640px, 58vw, 820px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founder-photo-block::before {
  content: "";
  position: absolute;
  inset: 2% -18% -4% -16%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 48% 34%, rgba(79, 140, 255, 0.24), transparent 23rem),
    radial-gradient(ellipse at 60% 72%, rgba(249, 115, 22, 0.12), transparent 22rem),
    radial-gradient(ellipse at 22% 76%, rgba(49, 230, 197, 0.11), transparent 20rem);
  filter: blur(10px);
}

.founder-photo-block picture {
  inset: -2% -10% -2% -10%;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 62% 68% at 50% 43%, #000 0 52%, rgba(0, 0, 0, 0.82) 62%, transparent 84%);
  mask-image: radial-gradient(ellipse 62% 68% at 50% 43%, #000 0 52%, rgba(0, 0, 0, 0.82) 62%, transparent 84%);
}

.founder-photo-block::after {
  inset: -5% -16% -4% -16%;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.78), transparent 28%, transparent 70%, rgba(5, 7, 13, 0.72)),
    linear-gradient(180deg, transparent 0%, rgba(5, 7, 13, 0.08) 48%, rgba(5, 7, 13, 0.86) 100%);
}

.founder-photo-block img {
  object-position: 50% 34%;
  filter: saturate(1.05) contrast(1.08) brightness(0.96);
  transform: scale(1.08);
}

.founder-mini-card {
  left: 28px;
  right: auto;
  bottom: 44px;
  max-width: 380px;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid rgba(249, 115, 22, 0.82);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.72);
}

@media (max-width: 1160px) {
  .hero-visual.founder-hero,
  .founder-hero-card {
    min-height: 600px;
  }

  .founder-photo-hero {
    inset: -5% -24% -10% -10%;
  }

  .founder-photo-hero img {
    transform: scale(1.14) translateX(0);
  }

  .founder-hero-caption {
    max-width: 430px;
  }
}

@media (max-width: 760px) {
  .hero-visual.founder-hero,
  .founder-hero-card {
    min-height: 520px;
  }

  .founder-photo-hero {
    inset: -4% -52% -9% -42%;
    -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 42%, #000 0 48%, rgba(0, 0, 0, 0.82) 60%, transparent 84%);
    mask-image: radial-gradient(ellipse 62% 62% at 50% 42%, #000 0 48%, rgba(0, 0, 0, 0.82) 60%, transparent 84%);
  }

  .founder-photo-hero img {
    object-position: 50% 36%;
    transform: scale(1.08);
  }

  .founder-hero-caption {
    left: 18px;
    right: 18px;
    bottom: 22px;
    max-width: calc(100% - 36px);
    padding-left: 16px;
    background: transparent;
  }

  .founder-photo-block {
    min-height: 540px;
  }

  .founder-photo-block picture {
    inset: -3% -24% -3% -24%;
    -webkit-mask-image: radial-gradient(ellipse 66% 68% at 50% 42%, #000 0 52%, rgba(0, 0, 0, 0.78) 62%, transparent 84%);
    mask-image: radial-gradient(ellipse 66% 68% at 50% 42%, #000 0 52%, rgba(0, 0, 0, 0.78) 62%, transparent 84%);
  }

  .founder-photo-block img {
    object-position: 50% 34%;
    transform: scale(1.06);
  }

  .founder-mini-card {
    left: 20px;
    right: 20px;
    bottom: 28px;
    max-width: calc(100% - 40px);
  }
}

/* 2026-06-16 canonical NadelAI SVG logo for LD */
.site-header .brand--nadelai {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  gap: 15px;
  color: #f5f7ff;
  text-decoration: none;
  white-space: nowrap;
  isolation: isolate;
}

.site-header .brand--nadelai:focus-visible {
  outline: 2px solid rgba(141, 178, 255, 0.72);
  outline-offset: 7px;
  border-radius: 12px;
}

.site-header .brand--nadelai .brand-mark {
  display: block;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  max-width: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.site-header .brand--nadelai .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 10px rgba(47, 107, 255, 0.24))
    drop-shadow(0 0 22px rgba(47, 107, 255, 0.1));
  transform-box: fill-box;
  transform-origin: center;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.site-header .brand--nadelai .brand-mark-frame {
  fill: rgba(5, 7, 13, 0.08);
  stroke-width: 1.95;
  stroke-linejoin: miter;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: brandShieldDraw 1080ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.site-header .brand--nadelai .brand-mark-inner {
  opacity: 0;
  transform: translateY(2px) scale(0.985);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandInnerReveal 460ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

.site-header .brand--nadelai .brand-mark-blue {
  opacity: 0.9;
}

.site-header .brand--nadelai .brand-mark-core {
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(255, 122, 26, 0.22))
    drop-shadow(0 0 18px rgba(255, 122, 26, 0.1));
  transform: translateY(4px) scale(0.97);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandCoreReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
  transition: filter 0.22s ease;
}

.site-header .brand--nadelai .brand-name {
  display: inline-flex;
  align-items: baseline;
  color: #f5f7ff;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 255, 255, 0.04);
  transform: translateY(3px);
  animation: brandNameReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

.site-header .brand--nadelai .brand-name-main {
  color: #f5f7ff;
}

.site-header .brand--nadelai .brand-name-accent {
  color: #ff7a1a;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .site-header .brand--nadelai .brand-name-main {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 56%, #dfe8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .site-header .brand--nadelai .brand-name-accent {
    background: linear-gradient(180deg, #ff9a3d 0%, #ff7a1a 54%, #e75208 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.site-header .brand--nadelai:hover .brand-mark,
.site-header .brand--nadelai:focus-visible .brand-mark {
  transform: translateY(-1px) scale(1.004);
}

.site-header .brand--nadelai:hover .brand-mark-blue-structure,
.site-header .brand--nadelai:focus-visible .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 11px rgba(47, 107, 255, 0.28))
    drop-shadow(0 0 24px rgba(47, 107, 255, 0.12));
}

.site-header .brand--nadelai:hover .brand-mark-core,
.site-header .brand--nadelai:focus-visible .brand-mark-core {
  filter:
    drop-shadow(0 0 11px rgba(255, 122, 26, 0.25))
    drop-shadow(0 0 20px rgba(255, 122, 26, 0.12));
}

.site-footer .footer-brand.brand--nadelai {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  gap: 10px;
  color: #f5f7ff;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer .footer-brand.brand--nadelai .brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  max-width: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  box-shadow: none;
}

.site-footer .footer-brand.brand--nadelai .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 8px rgba(47, 107, 255, 0.22))
    drop-shadow(0 0 16px rgba(47, 107, 255, 0.08));
  transform-box: fill-box;
  transform-origin: center;
}

.site-footer .footer-brand.brand--nadelai .brand-mark-frame {
  fill: rgba(5, 7, 13, 0.08);
  stroke-width: 1.95;
  stroke-linejoin: miter;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: brandShieldDraw 1080ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.site-footer .footer-brand.brand--nadelai .brand-mark-inner {
  opacity: 0;
  transform: translateY(2px) scale(0.985);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandInnerReveal 460ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

.site-footer .footer-brand.brand--nadelai .brand-mark-blue {
  opacity: 0.9;
}

.site-footer .footer-brand.brand--nadelai .brand-mark-core {
  opacity: 0;
  filter:
    drop-shadow(0 0 8px rgba(255, 122, 26, 0.2))
    drop-shadow(0 0 14px rgba(255, 122, 26, 0.08));
  transform: translateY(4px) scale(0.97);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandCoreReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
}

.site-footer .footer-brand.brand--nadelai .brand-name {
  display: inline-flex;
  align-items: baseline;
  color: #f5f7ff;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 0 12px rgba(255, 255, 255, 0.04);
  transform: translateY(3px);
  animation: brandNameReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

.site-footer .footer-brand.brand--nadelai .brand-name-main {
  color: #f5f7ff;
}

.site-footer .footer-brand.brand--nadelai .brand-name-accent {
  color: #ff7a1a;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .site-footer .footer-brand.brand--nadelai .brand-name-main {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 56%, #dfe8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .site-footer .footer-brand.brand--nadelai .brand-name-accent {
    background: linear-gradient(180deg, #ff9a3d 0%, #ff7a1a 54%, #e75208 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@keyframes brandShieldDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 170;
  }

  48% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes brandInnerReveal {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandCoreReveal {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.97);
  }

  72% {
    opacity: 1;
    filter:
      drop-shadow(0 0 14px rgba(255, 122, 26, 0.28))
      drop-shadow(0 0 24px rgba(255, 122, 26, 0.14));
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandNameReveal {
  0% {
    opacity: 0;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header .brand--nadelai .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .site-header .brand--nadelai .brand-name {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .site-header .brand--nadelai .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .site-header .brand--nadelai .brand-name {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .brand--nadelai .brand-mark,
  .site-header .brand--nadelai .brand-mark-blue-structure,
  .site-header .brand--nadelai .brand-mark-inner,
  .site-header .brand--nadelai .brand-mark-core,
  .site-header .brand--nadelai .brand-name {
    animation: none;
    transition: none;
    transform: none;
  }

  .site-header .brand--nadelai .brand-mark-frame {
    stroke-dashoffset: 0;
  }

  .site-header .brand--nadelai .brand-mark-inner,
  .site-header .brand--nadelai .brand-mark-core,
  .site-header .brand--nadelai .brand-name {
    opacity: 1;
  }
}

/* End */


/* Start:/local/templates/nadelai_platforma/include/brand-logo.css?17816755006145*/
:root {
  --nadel-blue: #2f6bff;
  --nadel-blue-light: #8fb4ff;
  --nadel-blue-deep: #123b96;
  --nadel-orange: #ff7a1a;
  --nadel-orange-light: #ff9a3d;
  --nadel-orange-deep: #e75208;
  --nadel-logo-text: #f5f7ff;
}

.brand--nadelai {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  gap: 15px;
  color: var(--nadel-logo-text);
  text-decoration: none;
  white-space: nowrap;
  isolation: isolate;
}

.brand--nadelai:focus-visible {
  outline: 2px solid rgba(141, 178, 255, 0.72);
  outline-offset: 7px;
  border-radius: 12px;
}

.brand--nadelai .brand-mark {
  display: block;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  max-width: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.brand--nadelai .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 10px rgba(47, 107, 255, 0.24))
    drop-shadow(0 0 22px rgba(47, 107, 255, 0.1));
  transform-box: fill-box;
  transform-origin: center;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.brand--nadelai .brand-mark-frame {
  fill: rgba(5, 7, 13, 0.08);
  stroke-width: 1.95;
  stroke-linejoin: miter;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: brandShieldDraw 1080ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.brand--nadelai .brand-mark-inner {
  opacity: 0;
  transform: translateY(2px) scale(0.985);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandInnerReveal 460ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

.brand--nadelai .brand-mark-blue {
  opacity: 0.9;
}

.brand--nadelai .brand-mark-core {
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(255, 122, 26, 0.22))
    drop-shadow(0 0 18px rgba(255, 122, 26, 0.1));
  transform: translateY(4px) scale(0.97);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandCoreReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
  transition: filter 0.22s ease;
}

.brand--nadelai .brand-name {
  display: inline-flex;
  align-items: baseline;
  color: var(--nadel-logo-text);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 255, 255, 0.04);
  transform: translateY(3px);
  animation: brandNameReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

.brand--nadelai .brand-name-main {
  color: var(--nadel-logo-text);
}

.brand--nadelai .brand-name-accent {
  color: var(--nadel-orange);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand--nadelai .brand-name-main {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 56%, #dfe8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .brand--nadelai .brand-name-accent {
    background: linear-gradient(180deg, var(--nadel-orange-light) 0%, var(--nadel-orange) 54%, var(--nadel-orange-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.brand--nadelai:hover .brand-mark,
.brand--nadelai:focus-visible .brand-mark {
  transform: translateY(-1px) scale(1.004);
}

.brand--nadelai:hover .brand-mark-blue-structure,
.brand--nadelai:focus-visible .brand-mark-blue-structure {
  filter:
    drop-shadow(0 0 11px rgba(47, 107, 255, 0.28))
    drop-shadow(0 0 24px rgba(47, 107, 255, 0.12));
}

.brand--nadelai:hover .brand-mark-core,
.brand--nadelai:focus-visible .brand-mark-core {
  filter:
    drop-shadow(0 0 11px rgba(255, 122, 26, 0.25))
    drop-shadow(0 0 20px rgba(255, 122, 26, 0.12));
}

.footer-logo.brand--nadelai {
  min-height: auto;
  gap: 10px;
}

.footer-logo.brand--nadelai .brand-mark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.footer-logo.brand--nadelai .brand-name {
  font-size: 28px;
}

.brand--mobile-mark .brand-name {
  display: none;
}

.intranet-auth-cover__logo--nadelai {
  min-height: 58px;
  gap: 12px;
}

.intranet-auth-cover__logo--nadelai .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.intranet-auth-cover__logo--nadelai .brand-name {
  font-size: 42px;
}

@keyframes brandShieldDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 170;
  }

  48% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes brandInnerReveal {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandCoreReveal {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.97);
  }

  72% {
    opacity: 1;
    filter:
      drop-shadow(0 0 14px rgba(255, 122, 26, 0.28))
      drop-shadow(0 0 24px rgba(255, 122, 26, 0.14));
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes brandNameReveal {
  0% {
    opacity: 0;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .brand--nadelai .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .brand--nadelai .brand-name {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .brand--nadelai .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand--nadelai .brand-name {
    font-size: 30px;
  }
}

@media (min-width: 1920px) {
  .intranet-auth-cover__logo--nadelai .brand-mark {
    width: 75px;
    height: 75px;
    flex-basis: 75px;
  }

  .intranet-auth-cover__logo--nadelai .brand-name {
    font-size: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand--nadelai .brand-mark,
  .brand--nadelai .brand-mark-blue-structure,
  .brand--nadelai .brand-mark-inner,
  .brand--nadelai .brand-mark-core,
  .brand--nadelai .brand-name {
    animation: none;
    transition: none;
    transform: none;
  }

  .brand--nadelai .brand-mark-frame {
    stroke-dashoffset: 0;
  }

  .brand--nadelai .brand-mark-inner,
  .brand--nadelai .brand-mark-core,
  .brand--nadelai .brand-name {
    opacity: 1;
  }
}

/* End */
/* /local/templates/nadelai_ld/template_styles.css?178160902173153 */
/* /local/templates/nadelai_platforma/include/brand-logo.css?17816755006145 */
