/* =========================================================
   SVNTN — Design Tokens
========================================================= */
:root{
  --bg: #0a0a09;
  --bg-alt: #111110;
  --surface: #16150f;
  --surface-2: #1d1b16;
  --fg: #f3f1ea;
  --fg-dim: #c9c6bc;
  --muted: #8d8a82;
  --line: rgba(243, 241, 234, 0.09);
  --line-strong: rgba(243, 241, 234, 0.18);
  --accent: #e8a34a;
  --accent-2: #ffd18a;
  --accent-dim: rgba(232, 163, 74, 0.14);
  --accent-glow: rgba(232, 163, 74, 0.35);

  --font-display: 'Funnel Sans', 'Arial Narrow', sans-serif;
  --font-body: 'Funnel Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --pad: clamp(24px, 5vw, 64px);
  --section-pad: clamp(88px, 12vw, 168px);

  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{
  background: var(--bg);
  scroll-behavior: auto;
}

body{
  margin:0;
  background: radial-gradient(ellipse at 70% 10%, #14120d 0%, var(--bg) 55%);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection{ background: var(--accent); color: #14110a; }

a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
p{ margin:0; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
button{ font-family: inherit; }

img, canvas{ display:block; max-width:100%; }

/* The persistent 3D world sits behind everything */
#world-canvas{
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
main, .site-footer{ position: relative; z-index: 1; }

/* subtle film-grain overlay for texture, matches concrete/brutalist photography mood */
.grain{
  position: fixed; inset:0; z-index: 999; pointer-events:none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px;
}

.progress-rail{
  position: fixed; top:0; left:0; right:0; height:2px; z-index: 998;
  background: transparent;
}
.progress-fill{
  height:100%; width:0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
}

.mirror{ display:inline-block; transform: scaleX(-1); }

.accent{ color: var(--accent); }
strong{ color: var(--fg); font-weight: 600; }
em{ font-style: normal; color: var(--accent); }

/* =========================================================
   NAV
========================================================= */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px var(--pad);
  transition: transform .5s var(--ease), background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(10,10,9,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav.nav-hidden{ transform: translateY(-110%); }

.nav-logo{
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: 0.02em;
}
.nav-links{ display:flex; gap: 36px; }
.nav-links a{
  font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
  display:flex; align-items:center; gap:6px; position:relative; padding: 4px 0;
  transition: color .3s ease;
}
.nav-links a span{ color: var(--accent); font-size: 10px; font-family: var(--font-display); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0%;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav-links a:hover{ color: var(--fg); }
.nav-links a:hover::after{ width:100%; }

.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor:pointer; overflow:hidden; isolation:isolate; white-space:nowrap;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease, color .35s ease;
}
.btn span{ position:relative; z-index:2; }
.btn-primary{
  background: var(--fg); color: #12100b;
}
.btn-primary::before{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transform: translateX(-101%); transition: transform .45s var(--ease);
}
.btn-primary:hover::before{ transform: translateX(0); }
.btn-primary:hover{ transform: translateY(-2px); }

.btn-ghost{
  background: rgba(10,10,9,0.35); color: var(--fg); border-color: var(--line-strong);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-nav{ padding: 11px 22px; font-size: 13px; }

.nav-burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; background:none; border:none; cursor:pointer; z-index:600;
}
.nav-burger span{ width:100%; height:1.5px; background: var(--fg); transition: transform .3s ease, opacity .3s ease; }
.nav-burger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset:0; z-index: 450; background: var(--bg);
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap: 22px;
  padding: var(--pad);
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{
  font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--fg);
}

/* =========================================================
   LAYOUT HELPERS
========================================================= */
.section{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--pad);
}
.eyebrow{
  display:inline-block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-family: var(--font-display); margin-bottom: 22px;
  padding: 6px 14px; border: 1px solid var(--accent-dim); border-radius: 999px;
  background: rgba(10,10,9,0.4);
}
.section-h2{
  font-size: clamp(32px, 5vw, 56px); line-height: 1.08; margin-bottom: 28px;
}
.section-h3{ font-size: clamp(26px, 4vw, 38px); margin-bottom: 18px; }
.copy{ max-width: 640px; color: var(--fg-dim); font-size: 17px; line-height: 1.75; }
.copy.lead{ font-size: 19px; color: var(--fg); max-width: 720px; }
.copy-lg{ max-width: 820px; font-size: clamp(19px, 2.4vw, 26px); color: var(--fg-dim); line-height: 1.6; }
.fazit{ margin-top: 32px; font-size: clamp(20px, 2.6vw, 28px); font-family: var(--font-display); font-weight: 500; max-width: 760px; }

.bg-wordmark{
  position:absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(120px, 22vw, 340px); color: var(--fg); opacity: 0.025;
  white-space: nowrap; pointer-events:none; z-index:0; letter-spacing: -0.02em;
  user-select:none;
}

/* Reveal system (JS toggles .is-visible) */
[data-reveal], [data-reveal-line], .hero-h1 .line{
  opacity: 0; transform: translateY(28px);
}
.is-visible[data-reveal]{ opacity:1; transform: translateY(0); transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* word-split 3D reveal targets (populated by JS) */
.line-mask{ display:block; overflow:hidden; perspective: 700px; }
.line-mask .w{ display:inline-block; transform-origin: 50% 100%; will-change: transform, opacity; }

[data-tilt]{ transform-style: preserve-3d; will-change: transform; }
.problem-grid, .flow-track, .channel-icons, .process-rail{ perspective: 1200px; }

/* =========================================================
   HERO
========================================================= */
.hero{
  position: relative; min-height: 100svh; display:flex; align-items:center;
  overflow:hidden; background: transparent;
}
.hero-vignette{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(180deg, rgba(10,10,9,0.25) 0%, rgba(10,10,9,0) 32%, rgba(10,10,9,0.5) 100%);
}
.hero-content{
  position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width:100%;
  padding: 140px var(--pad) 80px;
  will-change: transform, opacity;
}
.kicker{
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 26px; display:block;
}
.hero-h1{ font-size: clamp(34px, 6.4vw, 84px); line-height: 1.06; margin-bottom: 30px; max-width: 18ch; }
.hero-h1 .line{ display:block; overflow:hidden; }
.hero-h1 .line.accent{ color: var(--accent); }
.hero-subline{ max-width: 620px; font-size: 18px; color: var(--fg-dim); line-height: 1.7; margin-bottom: 36px; }
.hero-ctas{ display:flex; gap: 18px; flex-wrap:wrap; margin-bottom: 26px; }
.footnote{ font-size: 13px; color: var(--muted); max-width: 520px; }
.wordmark{ font-family: var(--font-display); font-weight: 700; }

.scroll-cue{
  position:absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform:uppercase;
}
.scroll-cue-line{ width:1px; height: 46px; background: var(--line-strong); position:relative; overflow:hidden; }
.scroll-cue-line i{
  position:absolute; top:-40%; left:0; width:100%; height:40%; background: var(--accent);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{ 0%{ top:-40%; } 60%{ top:100%; } 100%{ top:100%; } }

/* =========================================================
   PROBLEM
========================================================= */
.problem-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; position:relative; z-index:1;
}
.problem-col{
  padding: 36px; border-radius: 20px; border: 1px solid var(--line);
  background: rgba(22,21,15,0.82); backdrop-filter: blur(6px);
}
.problem-col.old{ opacity: .75; }
.problem-col.new{ border-color: var(--accent-dim); background: linear-gradient(160deg, rgba(29,27,22,0.9), rgba(22,21,15,0.85)); }
.problem-col .col-tag{ display:block; font-size: 12px; letter-spacing: 0.1em; text-transform:uppercase; color: var(--muted); margin-bottom: 14px; }
.problem-col.new .col-tag{ color: var(--accent); }
.problem-col p{ color: var(--fg-dim); font-size: 16px; line-height: 1.7; margin-bottom: 22px; }
.x-list li, .check-list li{ padding: 10px 0 10px 30px; position:relative; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.x-list li:first-child, .check-list li:first-child{ border-top:none; }
.x-list li::before{ content:"×"; position:absolute; left:0; color: #7a6a55; font-family: var(--font-display); }
.check-list li{ color: var(--fg-dim); }
.check-list li::before{ content:"—"; position:absolute; left:0; color: var(--accent); font-family: var(--font-display); }

/* =========================================================
   UEBERGABE
========================================================= */
.pull-quote{
  margin: 44px 0; padding: 40px clamp(24px,4vw,56px); border-radius: 24px;
  background: rgba(22,21,15,0.82); backdrop-filter: blur(6px);
  border-left: 3px solid var(--accent); max-width: 780px;
}
.pull-quote p{ font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.4; color: var(--fg); }

/* =========================================================
   CALL FLOW
========================================================= */
.flow-track{ position:relative; margin: 60px 0 40px; display:flex; flex-direction:column; gap: 56px; padding-left: 56px; }
.flow-line{ position:absolute; left: 8px; top:0; width:4px; height:100%; overflow:visible; }
.flow-line-bg{ stroke: var(--line-strong); stroke-width:2; }
.flow-line-fg{ stroke: var(--accent); stroke-width:2; stroke-dasharray: 900; stroke-dashoffset: 900; filter: drop-shadow(0 0 6px var(--accent-glow)); }
.flow-step{
  position:relative; padding: 30px clamp(20px,3vw,36px); border-radius: 20px;
  background: rgba(22,21,15,0.82); backdrop-filter: blur(6px); border: 1px solid var(--line); max-width: 640px;
}
.flow-step::before{
  content:""; position:absolute; left:-56px; top: 32px; width:14px; height:14px; border-radius:50%;
  background: var(--bg); border: 2px solid var(--accent); box-shadow: 0 0 0 6px var(--bg);
}
.flow-num{ font-family: var(--font-display); color: var(--accent); font-size: 13px; letter-spacing: 0.1em; }
.flow-step h3{ font-size: 22px; margin: 10px 0 10px; }
.flow-step p{ color: var(--fg-dim); font-size: 15.5px; line-height: 1.7; }

/* =========================================================
   CHANNELS
========================================================= */
.channel-icons{ display:flex; gap: 18px; flex-wrap:wrap; margin: 34px 0 44px; }
.channel-icon{
  display:flex; flex-direction:column; align-items:center; gap: 12px;
  width: 130px; padding: 26px 12px; border-radius: 18px; border:1px solid var(--line);
  background: rgba(22,21,15,0.82); backdrop-filter: blur(6px);
}
.channel-icon svg{ width: 28px; height:28px; color: var(--accent); }
.channel-icon span{ font-size: 13px; color: var(--fg-dim); }
.solves-list{ display:grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; margin-bottom: 40px; max-width: 900px; }
.solves-list li{
  padding: 14px 0; border-top: 1px solid var(--line); color: var(--fg-dim); font-size: 15.5px;
  position:relative; padding-left: 22px;
}
.solves-list li::before{ content:"—"; position:absolute; left:0; color: var(--accent); }

/* =========================================================
   PROCESS — pinned horizontal scroll
========================================================= */
.section-process{ position: relative; }
.process-intro{ padding-bottom: 12px; }
.process-pin{
  position: relative; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.process-rail{
  display: flex; gap: 26px; align-items: stretch;
  width: max-content; padding: 0 var(--pad);
  will-change: transform;
}
.process-card{
  width: clamp(300px, 32vw, 430px); flex-shrink: 0;
  padding: 38px 32px; border-radius: 22px;
  background: rgba(22,21,15,0.86); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  transition: border-color .4s ease;
  display: flex; flex-direction: column;
}
.process-card:hover{ border-color: var(--accent-dim); }
.process-num{ font-family: var(--font-display); font-size: 52px; color: var(--accent); display:block; margin-bottom: 22px; line-height: 1; }
.process-card h3{ font-size: 24px; margin-bottom: 14px; }
.process-card p{ font-size: 15.5px; color: var(--fg-dim); line-height: 1.7; }
.process-card.cta-card{
  justify-content: center; gap: 18px;
  background: linear-gradient(160deg, rgba(29,27,22,0.92), rgba(22,21,15,0.88));
  border-color: var(--accent-dim);
}
.process-card.cta-card .btn{ align-self: flex-start; }
.rail-progress{
  height: 2px; margin: 48px var(--pad) 0; border-radius: 2px; overflow: hidden;
  background: var(--line-strong);
}
.rail-progress i{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
}

/* =========================================================
   PRICING
========================================================= */
.pricing-h2{ max-width: 900px; }
.pricing-sub{ margin-bottom: 40px; }
.price{ font-family: var(--font-display); }
.price-new .counter{ color: var(--accent); }
.price-compare{ display:flex; flex-direction:column; gap: 22px; max-width: 640px; margin: 10px 0 44px; }
.price-bar-row{ display:grid; grid-template-columns: 150px 1fr 90px; align-items:center; gap: 18px; }
.price-bar-label{ font-size: 14px; color: var(--muted); }
.price-bar-track{ height: 10px; border-radius: 999px; background: rgba(22,21,15,0.85); border: 1px solid var(--line); overflow:hidden; }
.price-bar-fill{ height:100%; width:0%; border-radius:999px; }
.price-bar-fill.old{ background: linear-gradient(90deg,#5b5347,#7a705d); }
.price-bar-fill.new{ background: linear-gradient(90deg,var(--accent),var(--accent-2)); box-shadow: 0 0 16px var(--accent-glow); }
.price-bar-value{ font-family: var(--font-display); font-size: 15px; text-align:right; }
.price-bar-value.accent{ color: var(--accent); }

/* =========================================================
   FOUNDER
========================================================= */
.founder-grid{ display:grid; grid-template-columns: 220px 1fr; gap: 44px; align-items:start; margin-bottom: 60px; }
.founder-portrait{
  width: 220px; height: 220px; border-radius: 50%; position:relative;
  background: conic-gradient(from 210deg, var(--surface-2), var(--accent-dim), var(--surface-2));
  display:flex; align-items:center; justify-content:center; border: 1px solid var(--line-strong);
  overflow: hidden;
}
.founder-portrait::before{
  content:""; position:absolute; inset:10px; border-radius:50%; border: 1px dashed var(--line-strong);
  z-index: 2; pointer-events: none;
}
.founder-portrait img{
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  border-radius: 50%;
}
.founder-copy{ padding-top: 8px; }

.timeline{ margin: 20px 0 50px; }
.timeline-track{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px 24px; position:relative;
}
.timeline-item{ position:relative; padding: 26px 8px 0 0; }
.timeline-dot{ position:absolute; top:0; left:0; width:12px; height:12px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 5px var(--bg), 0 0 12px var(--accent-glow); }
.timeline-label{ display:block; font-family: var(--font-display); font-size: 16px; margin-bottom: 8px; }
.timeline-item p{ font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* =========================================================
   MANIFEST — content floats over the assembling particle wordmark
========================================================= */
.manifest{ text-align:center; min-height: 100svh; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.manifest-h2{ font-size: clamp(38px, 7vw, 88px); line-height:1.05; margin-bottom: 34px; position:relative; z-index:1; text-shadow: 0 2px 30px rgba(10,10,9,0.8); }
.manifest .copy-lg{ margin: 0 auto 30px; text-align:center; position:relative; z-index:1; text-shadow: 0 2px 20px rgba(10,10,9,0.9); }
.manifest-punch{ font-family: var(--font-display); font-size: clamp(22px,3vw,32px); margin-bottom: 40px; position:relative; z-index:1; }

/* =========================================================
   CONTACT
========================================================= */
.contact-form{ margin-top: 40px; max-width: 720px; display:flex; flex-direction:column; gap: 20px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field{ display:flex; flex-direction:column; gap: 8px; }
.form-field label{ font-size: 12px; letter-spacing:0.06em; text-transform:uppercase; color: var(--muted); }
.form-field input, .form-field textarea{
  background: rgba(22,21,15,0.85); border: 1px solid var(--line); color: var(--fg);
  border-radius: 12px; padding: 14px 16px; font-family: var(--font-body); font-size: 15px;
  transition: border-color .3s ease, background .3s ease; resize: vertical;
  backdrop-filter: blur(6px);
}
.form-field input:focus, .form-field textarea:focus{
  outline:none; border-color: var(--accent); background: var(--surface-2);
}
.contact-actions{ display:flex; gap: 18px; flex-wrap:wrap; margin-top: 6px; }
.form-note{ font-size: 14px; color: var(--accent); min-height: 20px; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  border-top: 1px solid var(--line); padding: 64px var(--pad) 30px; max-width: var(--container); margin: 0 auto;
}
.footer-top{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:16px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-logo{ font-family: var(--font-display); font-weight:700; font-size: 40px; position:relative; }
.footer-star{ color: var(--accent); }
.footer-tag{ color: var(--muted); font-size: 14px; letter-spacing: 0.05em; }
.footer-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.footer-col{ display:flex; flex-direction:column; gap: 14px; }
.footer-heading{ font-size: 12px; text-transform:uppercase; letter-spacing:0.1em; color: var(--muted); margin-bottom: 4px; }
.footer-col a{ color: var(--fg-dim); font-size: 14.5px; transition: color .3s ease; }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size: 12.5px; color: var(--muted); padding-top: 20px; border-top: 1px solid var(--line); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .btn-nav{ display:none; }
  .nav-burger{ display:flex; }
  .problem-grid{ grid-template-columns: 1fr; }
  .founder-grid{ grid-template-columns: 1fr; }
  .founder-portrait{ width:160px; height:160px; }
  .founder-mono{ font-size:40px; }
  .solves-list{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

/* below 900px the process rail stacks vertically, no pinning */
@media (max-width: 899px){
  .process-pin{ height: auto; overflow: visible; display: block; padding: 24px 0 40px; }
  .process-rail{ width: auto; flex-direction: column; }
  .process-card{ width: 100%; }
  .rail-progress{ display: none; }
}

@media (max-width: 620px){
  .price-bar-row{ grid-template-columns: 100px 1fr 70px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .flow-track{ padding-left: 40px; }
  .flow-step::before{ left: -40px; }
}

/* =========================================================
   WORLD MODE — content sections live inside the 3D scene as
   CSS3D panels sharing the WebGL camera. The document flow is
   emptied; a spacer div provides the scroll distance.
========================================================= */
html.world body{ background: #0b0a09; }
html.world body > main{ visibility: hidden; height: 0; overflow: hidden; }
html.world body > .site-footer{ visibility: hidden; }

html.world .panel-el{
  margin: 0 !important;
  max-width: none !important;
  will-change: transform, opacity;
  /* holographic display: dark glass, thin luminous edge, soft amber cast */
  background: linear-gradient(180deg, rgba(22,20,15,0.55), rgba(12,11,9,0.68));
  border: 1px solid rgba(232,163,74,0.18);
  border-radius: 6px;
  box-shadow:
    0 0 70px rgba(232,163,74,0.06),
    inset 0 0 90px rgba(232,163,74,0.04);
  position: relative;
}
/* HUD corner brackets */
html.world .panel-el::before,
html.world .panel-el::after{
  content: ""; position: absolute; width: 20px; height: 20px; pointer-events: none;
}
html.world .panel-el::before{
  top: -1px; left: -1px;
  border-top: 2px solid rgba(232,163,74,0.65);
  border-left: 2px solid rgba(232,163,74,0.65);
  border-top-left-radius: 6px;
}
html.world .panel-el::after{
  bottom: -1px; right: -1px;
  border-bottom: 2px solid rgba(232,163,74,0.65);
  border-right: 2px solid rgba(232,163,74,0.65);
  border-bottom-right-radius: 6px;
}
/* backdrop-filter inside 3D-transformed subtrees renders unreliably */
html.world .panel-el, html.world .panel-el *{ backdrop-filter: none !important; }

html.world .panel-el.section{ padding: 52px 58px; }
html.world .hero.panel-el{ min-height: 0; padding: 0; }
html.world .hero.panel-el .hero-content{ padding: 48px 56px; }
html.world .hero.panel-el .hero-vignette{ display: none; }
html.world .hero.panel-el .scroll-cue{
  position: relative; left: auto; bottom: auto; transform: none;
  margin: 10px 0 40px 56px; align-items: flex-start;
}

/* inside a board, nested web-cards flatten to etched panels: hairline
   separations on the sign itself instead of cards floating on a card */
html.world .panel-el .problem-col,
html.world .panel-el .flow-step,
html.world .panel-el .channel-icon,
html.world .panel-el .pull-quote{
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
}
html.world .panel-el .problem-col{ border-width: 0 0 0 1px; padding-left: 32px; }
html.world .panel-el .problem-col.new{ border-left-color: var(--accent-dim); }
html.world .panel-el .flow-step{ border-width: 0 0 1px 0; border-radius: 0; }
html.world .panel-el .channel-icon{ border-width: 1px; }
html.world .panel-el .eyebrow{ background: transparent; }

html.world .process-intro.panel-el{ padding: 0; }
html.world .process-card.panel-el{ width: 430px; }
html.world .process-pin, html.world .rail-progress{ display: none; }

html.world .site-footer.panel-el{
  visibility: visible;
  padding: 44px 52px 28px;
}

html.world .manifest.panel-el{ min-height: 0; }

/* activation-animated bits start hidden in world mode */
html.world .timeline-item{ opacity: 0; }

