:root {
  color-scheme: dark;
  --void: #000;
  --paper: #f8f8f8;
  --frost: #ccc;
  --muted: #939393;
  --line: #272727;
  --copper: #e2a16b;
  --copper-ink: #24180f;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --content-width: 1280px;
  --panel-radius: 16px;
  --panel-border: rgb(255 255 255 / 10%);
  --panel-highlight: rgb(255 255 255 / 16%);
  --panel-background: linear-gradient(135deg, rgb(255 255 255 / 3.5%), rgb(255 255 255 / 1%) 48%, rgb(255 255 255 / 2%)), rgb(13 16 15 / 76%);
  --panel-shadow: inset 0 1px 0 rgb(255 255 255 / 6%), 0 12px 32px rgb(0 0 0 / 14%);
  --detail-title-size: 1.375rem;
  --detail-color: #c1c1bd;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; background: var(--void); color: var(--paper); font: 1rem/1.5 var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; touch-action: manipulation; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
a, button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
h1, h2, p { margin-top: 0; overflow-wrap: break-word; }
::selection { background: var(--copper); color: var(--copper-ink); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
.skip-link { position: fixed; z-index: 50; top: 12px; left: 12px; padding: 12px 20px; background: var(--paper); color: #000; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

/* The stage stays in view while scroll distance drives the card and landscape. */
.hero-scroll { position: relative; height: 100svh; }
.has-scroll-motion .hero-scroll { height: 240svh; }
.hero-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; isolation: isolate; }
.hero-landscape { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%; z-index: -3; transform: translate3d(0, var(--landscape-y, 0px), 0) scale(var(--landscape-scale, 1.04)); will-change: transform; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgb(0 0 0 / 35%), rgb(0 0 0 / 60%) 24%, rgb(0 0 0 / 32%) 52%, rgb(0 0 0 / 68%) 78%, #000); opacity: var(--shade-opacity, .55); }
.hero-stage::after { content: ""; position: absolute; inset: auto 0 0; height: 12%; background: linear-gradient(transparent, #000); pointer-events: none; z-index: -1; }
.site-header { --header-top: max(20px, env(safe-area-inset-top)); position: fixed; z-index: 40; top: var(--header-top); left: 50%; width: 76px; max-width: calc(100vw - 32px); max-height: calc(100svh - var(--header-top) - 12px); transform: translateX(-50%); border: 1px solid rgb(255 255 255 / 25%); border-radius: 24px; background: linear-gradient(135deg, rgb(255 255 255 / 14%), rgb(255 255 255 / 3%) 48%, rgb(205 226 215 / 8%)), rgb(25 30 27 / 48%); backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%); box-shadow: inset 0 1px 0 rgb(255 255 255 / 25%), inset 0 -1px 0 rgb(255 255 255 / 8%), 0 12px 40px rgb(0 0 0 / 18%); overflow: hidden; transition: width .6s cubic-bezier(.22, 1, .36, 1), border-radius .6s ease, box-shadow .3s ease; }
.site-header.is-expanded { width: 500px; border-radius: 30px; background: linear-gradient(135deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 2%) 52%, rgb(205 226 215 / 6%)), rgb(17 24 20 / 84%); overflow-y: auto; overscroll-behavior: contain; box-shadow: inset 0 1px 0 rgb(255 255 255 / 25%), inset 0 -1px 0 rgb(255 255 255 / 8%), 0 20px 64px rgb(0 0 0 / 28%); scrollbar-width: thin; }
.header-toggle { display: grid; place-items: center; width: 100%; height: 74px; padding: 0; border: 0; border-radius: inherit; color: var(--paper); background: transparent; transition: height .6s cubic-bezier(.22, 1, .36, 1); }
.header-toggle:focus-visible { outline-color: #ffd3ae; outline-offset: -6px; }
.header-toggle[aria-expanded="false"]:is(:focus-visible, :active) { background-color: rgb(226 161 107 / 42%); box-shadow: inset 0 0 0 1px rgb(255 211 174 / 65%), inset 0 1px 20px rgb(255 193 139 / 12%); }
.site-header.is-expanded .header-toggle { height: 104px; }
.brand-icon { width: 44px; height: 44px; display: block; position: relative; overflow: hidden; border-radius: 0; }
.brand-icon img { position: absolute; max-width: none; width: 281.6px; height: 158.4px; left: -27.38px; top: -57.2px; }
.header-toggle .brand-icon { transition: width .6s cubic-bezier(.22, 1, .36, 1); }
.site-header.is-expanded .header-toggle .brand-icon { width: 220px; }
.header-details { display: grid; grid-template-rows: 0fr; visibility: hidden; opacity: 0; transition: grid-template-rows .6s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, visibility .6s; }
.site-header.is-expanded .header-details { grid-template-rows: 1fr; visibility: visible; opacity: 1; }
.header-details-inner { min-height: 0; overflow: hidden; }
.header-actions { display: grid; justify-items: center; gap: 0; padding: 0 32px 26px; }
.header-access { display: inline-flex; width: min(100%, 220px); min-height: 56px; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 128px; font-size: 1rem; line-height: 1.4; }
.header-nav { display: grid; width: 100%; border-block: 1px solid rgb(255 255 255 / 15%); }
.header-nav a { display: flex; align-items: center; min-height: 80px; padding: 20px 4px; color: var(--paper); font-size: 1.875rem; font-weight: 400; line-height: 1.2; letter-spacing: -.035em; text-align: left; }
.header-nav a + a { border-top: 1px solid rgb(255 255 255 / 15%); }
.header-nav a span { transition: translate .3s cubic-bezier(.22, 1, .36, 1), color .2s ease; }
.header-nav a:hover, .header-nav a:focus-visible { color: #efbc92; }
.header-nav a:focus-visible { outline-offset: -3px; }
.header-invitation { width: 100%; padding-top: 32px; text-align: center; }
.header-actions > .header-close { justify-self: center; margin: 24px auto 0; }
.header-nav a, .header-invitation, .header-actions > .header-close { opacity: 0; translate: 0 8px; transition: opacity .2s ease, translate .35s cubic-bezier(.22, 1, .36, 1); }
.site-header.is-expanded .header-nav a, .site-header.is-expanded .header-invitation, .site-header.is-expanded .header-actions > .header-close { opacity: 1; translate: 0 0; }
.site-header.is-expanded .header-nav a:first-child { transition-delay: .12s; }
.site-header.is-expanded .header-nav a:nth-child(2) { transition-delay: .18s; }
.site-header.is-expanded .header-invitation { transition-delay: .24s; }
.site-header.is-expanded .header-actions > .header-close { transition-delay: .3s, .3s, 0s, 0s; }
.header-close { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid rgb(255 255 255 / 40%); border-radius: 50%; background: rgb(255 255 255 / 4%); color: var(--paper); font-size: 1.75rem; line-height: 1; }
.header-close > span { position: relative; display: block; width: 18px; height: 18px; }
.header-close > span::before, .header-close > span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 1.5px; border-radius: 1px; background: currentColor; transform: translate(-50%, -50%) rotate(45deg); }
.header-close > span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.header-close:hover { background: rgb(255 255 255 / 12%); }
.card-positioner { position: absolute; width: min(34vw, 47svh, 480px); left: 50%; top: 44.5%; transform: translate(-50%, -50%); perspective: 1600px; }
.card-travel { transform: translate3d(var(--card-x, 0px), var(--card-y, 0px), 0) scale(var(--card-scale, 1)); transform-style: preserve-3d; will-change: transform; }
.card-plane { transform: rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg)) rotateZ(var(--card-rz, -90deg)); transform-style: preserve-3d; will-change: transform; }
.card-plane img { width: 100%; height: auto; }
.card-face { position: relative; aspect-ratio: 1310 / 792; border-radius: 4.05% / 6.70%; overflow: hidden; isolation: isolate; }
/* Crop the supplied render to the physical card, including its copper rim. */
.card-face > img { position: absolute; width: 117.2519%; max-width: none; height: auto; left: -8.626%; top: -12.7525%; }
.card-reflection-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0; }
.has-live-reflections > .card-reflection-canvas { opacity: 1; }
.has-live-reflections > img { opacity: 0; }
.hero-copy { position: absolute; top: clamp(132px, 18svh, 190px); left: 24px; right: 24px; text-align: center; opacity: var(--copy-opacity, 1); transform: translate3d(0, var(--copy-y, 0px), 0); text-shadow: 0 2px 24px rgb(0 0 0 / 16%); }
.hero-copy h1 { font-weight: 400; font-size: clamp(3rem, 5.6vw, 5.4rem); line-height: 1.06; letter-spacing: -.04em; margin-bottom: 20px; }
.hero-copy p { margin-bottom: 0; font-size: 1.125rem; color: #e0e0df; }
.scroll-cue { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); display: flex; min-height: 52px; align-items: center; flex-direction: column; justify-content: center; gap: 14px; opacity: var(--cue-opacity, 0); visibility: hidden; }
.has-scroll-motion .scroll-cue { pointer-events: auto; visibility: visible; }
.scroll-cue > span:first-child { width: 54px; height: 1px; background: #f8f8f8; }
.cue-label { font: .75rem/1.5 var(--mono); text-transform: uppercase; white-space: nowrap; letter-spacing: .07em; }

.section { padding: 112px 24px; text-align: center; }
h2 { font-size: clamp(2.1rem, 3.2vw, 3.15rem); line-height: 1.15; font-weight: 400; letter-spacing: -.035em; margin-bottom: 38px; }
.value-section { padding: clamp(112px, 13vw, 192px) clamp(32px, 8vw, 144px) 112px; background: var(--void); }
.value-copy { max-width: 24em; margin: 0 auto; color: #b5b5b5; font-size: clamp(1.5rem, 2.25vw, 2.5rem); font-weight: 400; line-height: 1.45; letter-spacing: -.025em; text-wrap: balance; }
.value-copy p { margin: 0; }
.value-copy p + p { margin-top: 1em; }
.keep-together { white-space: nowrap; }
.value-access { margin-top: clamp(48px, 6.5vw, 104px); }
.value-access .button { min-width: 200px; max-width: 100%; }
.value-note { max-width: 25rem; margin: 24px auto 0; color: var(--muted); font-size: .9375rem; line-height: 1.65; text-wrap: balance; }
.app-section.section { position: relative; padding: 0; background: var(--void); }
.app-pin { position: relative; isolation: isolate; overflow: hidden; padding: 152px 24px 112px; }
.app-backdrop { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.app-pin::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, #000, transparent 18%, transparent 78%, #000), radial-gradient(ellipse at 30% 42%, rgb(0 0 0 / 66%) 0%, rgb(0 0 0 / 46%) 44%, rgb(0 0 0 / 8%) 82%); }
.app-walkthrough { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); align-items: center; gap: clamp(24px, 4vw, 64px); max-width: var(--content-width); margin: 0 auto; }
.app-intro { position: relative; isolation: isolate; min-width: 0; text-align: left; text-shadow: 0 2px 12px rgb(0 0 0 / 85%); }
.app-intro::before { content: ""; position: absolute; inset: -48px -50px; z-index: -1; pointer-events: none; background: radial-gradient(ellipse, rgb(0 0 0 / 95%) 30%, rgb(0 0 0 / 82%) 65%, transparent 100%); filter: blur(28px); }
.app-intro > h2 { font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1.2; font-weight: 400; margin: 0 0 36px; }
.app-tabs { display: grid; gap: 8px; text-align: left; }
.app-tab { display: grid; grid-template-columns: 26px 1fr 18px; align-items: baseline; gap: 16px; color: #dededb; background: transparent; border: 1px solid transparent; border-top-color: var(--panel-border); border-radius: 0; padding: 24px 16px; min-height: 96px; text-align: left; text-shadow: inherit; }
.app-tab:last-child { border-bottom-color: var(--panel-border); }
.app-tab[aria-selected="true"] { border: 1px solid var(--panel-border); border-top-color: var(--panel-highlight); border-radius: var(--panel-radius); background: var(--panel-background); box-shadow: var(--panel-shadow); -webkit-backdrop-filter: blur(18px) saturate(115%); backdrop-filter: blur(18px) saturate(115%); }
.app-tab[aria-selected="true"] { color: var(--paper); }
.app-tab:hover { color: var(--paper); }
.step-number { font: .875rem/1.5 var(--mono); color: var(--detail-color); }
.step-copy { display: block; min-width: 0; }
.step-title { font-size: var(--detail-title-size); font-weight: 400; letter-spacing: -.02em; line-height: 1.35; }
.step-title { display: block; }
.step-description { color: var(--detail-color); font-size: 1rem; line-height: 1.65; }
.step-description { display: block; margin-top: 10px; }
.step-arrow { opacity: 0; transition: opacity .2s ease; }
.app-tab[aria-selected="true"] .step-arrow { opacity: 1; }
.app-tab[aria-selected="true"] .step-number { color: #f59b36; }
.app-stage { min-width: 0; position: relative; }
.app-mobile-caption { display: none; }
/* Face the handheld phone toward the walkthrough; counter-flip each app panel below. */
.handheld-device { position: relative; width: min(100%, 560px); margin: 0 auto; aspect-ratio: 760 / 1145; isolation: isolate; transform: scaleX(-1); -webkit-mask-image: radial-gradient(ellipse 68% 80% at 50% 34%, #000 72%, transparent 98%); mask-image: radial-gradient(ellipse 68% 80% at 50% 34%, #000 72%, transparent 98%); }
.handheld-photo { position: absolute; top: 0; left: -40%; width: 180.7894737%; height: auto; max-width: none; -webkit-mask: url('./assets/handheld-outline.svg') 0 0 / 100% 100% no-repeat; mask: url('./assets/handheld-outline.svg') 0 0 / 100% 100% no-repeat; }
.handheld-screen-space { position: absolute; top: 0; left: 0; width: 760px; height: 1145px; transform: scale(var(--handheld-scale, 0)); transform-origin: 0 0; }
.handheld-display { position: absolute; top: 0; left: 0; width: 840px; height: 1876px; overflow: hidden; border-radius: 124px; background: #f4f0e8; transform-origin: 0 0; transform: matrix3d(0.4378390239, 0.0947026072, 0, 0.0000715399, -0.0029217298, 0.4760878513, 0, -0.0000208695, 0, 0, 1, 0, 140, 36, 0, 1); }
.handheld-display::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(112deg, rgb(255 255 255 / 8%), transparent 35%, rgb(0 0 0 / 3%)); }
.app-panel { position: absolute; inset: 0; margin: 0; transform: scaleX(-1); }
.app-panel[hidden] { display: none; }
.app-panel img { position: absolute; top: -24px; left: -190px; width: 1220px; height: 1920px; max-width: none; margin: 0; }
.app-section.is-scroll-walkthrough { height: calc(100svh + var(--walkthrough-travel, 200svh)); }
.is-scroll-walkthrough .app-pin { position: sticky; top: 0; height: 100svh; display: flex; flex-direction: column; padding: 116px max(24px, 4vw) 24px; }
.is-scroll-walkthrough .app-walkthrough { flex: 1; min-height: 0; width: 100%; }
.is-scroll-walkthrough .app-intro > h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); margin-bottom: 24px; }
.is-scroll-walkthrough .app-tab { padding: 14px 16px; min-height: 86px; }
.is-scroll-walkthrough .step-title { font-size: 1.25rem; }
.is-scroll-walkthrough .step-description { line-height: 1.5; margin-top: 7px; }
.is-scroll-walkthrough .app-stage { height: 100%; min-height: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.is-scroll-walkthrough .handheld-device { flex: 0 0 auto; width: min(100%, var(--walkthrough-phone-width, 380px)); margin: 0 auto; transform: scaleX(-1); }
.is-scroll-walkthrough .annotation { flex: 0 0 auto; margin: 14px auto 0; line-height: 1.5; }
.annotation { font: .75rem/1.7 var(--mono); color: var(--muted); margin: 26px auto 0; }
.faq-section { padding-block: 64px 112px; background: var(--void); scroll-margin-top: 120px; }
.faq-section > h2 { margin: 0 0 clamp(40px, 6vw, 80px); font-size: clamp(2.75rem, 4.5vw, 4.5rem); line-height: 1.15; }
.faq-list { max-width: 1040px; margin: 0 auto; text-align: left; }
.faq-list details { border-bottom: 1px solid #363636; }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { display: grid; grid-template-columns: minmax(0, 1fr) 20px; align-items: center; gap: 32px; min-height: 100px; padding: 30px 12px; color: var(--paper); font-size: clamp(1.25rem, 1.9vw, 1.625rem); font-weight: 500; line-height: 1.45; letter-spacing: -.015em; list-style: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; width: 12px; height: 12px; justify-self: center; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: translateY(3px) rotate(225deg); }
.faq-list summary:hover { color: var(--copper); }
.faq-list summary:focus-visible { outline-offset: -3px; border-radius: 4px; }
.faq-answer { padding: 0 64px 32px 12px; }
.faq-answer p { max-width: 78ch; margin: 0; color: var(--detail-color); font-size: 1.0625rem; line-height: 1.8; }
.signup-section { padding-top: 64px; padding-bottom: 112px; }
.button { min-height: 56px; padding: 14px 30px; border-radius: 128px; display: inline-flex; align-items: center; justify-content: center; gap: 36px; font-size: 1rem; }

.site-footer { max-width: 1280px; padding: 0 48px 36px; margin: 0 auto; }
.footer-top { border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: 28px; }
.brand-lockup { display: block; width: 250px; height: 50px; position: relative; overflow: hidden; }
.brand-lockup img { position: absolute; max-width: none; width: 320px; height: 180px; left: -31.1px; top: -65px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; font-size: .875rem; color: var(--muted); }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--paper); }
.chapter-content { padding: 24px 0 64px; }
.chapter-intro { max-width: 660px; margin-bottom: 40px; }
.eyebrow { display: block; font: .6875rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: #b9beb7; margin: 0 0 22px; }
.chapter-intro h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2; margin-bottom: 24px; }
.chapter-intro > p:last-child { max-width: 600px; color: #b7b7b7; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.team-member, .advisor { display: flex; flex-direction: column; align-items: flex-start; }
.team-portrait { flex-shrink: 0; width: 100%; aspect-ratio: 1 / 1.05; overflow: hidden; background: #141615; border-radius: 2px; }
.team-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; filter: grayscale(1) contrast(var(--portrait-contrast, 1.08)) brightness(var(--portrait-brightness, 1.02)); transform: scale(var(--portrait-scale, 1)); transform-origin: 50% top; }
.team-member .portrait-hakob { --portrait-contrast: 1.04; --portrait-brightness: 1; object-position: 60% center; }
.team-member .portrait-martin { --portrait-brightness: 1.08; --portrait-scale: 1.08; object-position: 50% top; }
.member-heading { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 12px; margin-top: 22px; width: 100%; }
.member-heading h3 { margin: 0; font-size: 1.125rem; font-weight: 400; letter-spacing: -.015em; }
.member-heading > span { color: #b9beb7; font: .6875rem/1.5 var(--mono); }
.team-member p { color: var(--muted); font-size: .875rem; line-height: 1.7; max-width: 330px; margin: 12px 0 0; }
.advisors-heading { font: .6875rem/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: #b9beb7; margin: 60px 0 28px; }
.advisor-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.advisor img { width: 72px; height: 72px; object-fit: cover; object-position: 50% 25%; filter: grayscale(1); border-radius: 50%; background: #141615; margin-bottom: 20px; }
.advisor h4 { margin: 0 0 5px; font-size: 1rem; font-weight: 400; }
.advisor > span { color: #b9beb7; font-size: .75rem; }
.advisor p { color: var(--muted); font-size: .8125rem; line-height: 1.65; margin: 12px 0 0; max-width: 225px; }
.profile-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: auto; padding: 16px 0 4px; color: #bbc1ba; font-size: .8125rem; line-height: 1.5; text-decoration: underline; text-decoration-color: rgb(255 255 255 / 25%); text-underline-offset: 4px; }
.profile-link::before { content: ""; flex: 0 0 14px; width: 14px; height: 14px; background: currentColor; -webkit-mask: url('./assets/linkedin.svg') center / contain no-repeat; mask: url('./assets/linkedin.svg') center / contain no-repeat; }
.profile-link:hover, .profile-link:focus-visible { color: #efbc92; text-decoration-color: currentColor; }
.thesis-content { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; padding-top: 36px; }
.thesis-copy { max-width: 550px; }
.thesis-copy p { color: #b7b7b7; font-size: 1rem; line-height: 1.85; margin-bottom: 26px; }
.thesis-copy .thesis-signoff { color: var(--paper); font-size: 1.25rem; line-height: 1.6; letter-spacing: -.02em; margin: 36px 0 0; }
.disclosure { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: .8125rem; line-height: 1.7; }
.copyright { color: var(--muted); margin: 20px 0 0; font: .75rem/1.7 var(--mono); }

/* Company and legal content share the footer's quiet, on-site reading surface. */
.content-dialog { width: min(1100px, calc(100vw - 48px)); max-width: 1100px; max-height: calc(100svh - 48px); padding: 0; border: 1px solid rgb(255 255 255 / 22%); border-radius: 24px; background: linear-gradient(140deg, #191c1b, #090a09 64%); color: var(--paper); text-align: left; overflow: hidden; box-shadow: 0 28px 100px rgb(0 0 0 / 45%); }
.content-dialog[open] { display: flex; flex-direction: column; }
.content-dialog::backdrop { background: rgb(0 0 0 / 65%); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.content-dialog-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex: 0 0 auto; padding: 18px 28px 18px 36px; border-bottom: 1px solid var(--line); }
.content-dialog-header h2 { font-size: 1.25rem; line-height: 1.4; margin: 0; letter-spacing: -.02em; outline-offset: 5px; }
.content-dialog-body { min-height: 0; padding: 36px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #555b56 transparent; }
.content-dialog-body .chapter-content { padding: 4px 0 20px; }
.legal-dialog { max-width: 880px; }
.legal-copy { max-width: 720px; margin: 0 auto; color: #bdbfbc; font-size: .9375rem; line-height: 1.85; overflow-wrap: anywhere; }
.policy-meta { font: .75rem/1.8 var(--mono); color: #a8aca6; margin: 0 0 28px; }
.legal-contents { padding: 18px 22px; border: 1px solid #343833; border-radius: 12px; }
.legal-contents > summary { cursor: pointer; color: #e8ebe5; min-height: 28px; }
.legal-contents nav { display: grid; gap: 8px; padding: 18px 0 2px; }
.legal-copy a { text-decoration: underline; text-underline-offset: 4px; }
.legal-copy a:hover { color: #fff; }
.legal-section { margin-top: 38px; scroll-margin-top: 22px; }
.legal-section h3 { color: #f4f6f0; font-weight: 400; font-size: 1.4rem; letter-spacing: -.02em; line-height: 1.4; margin: 0 0 18px; }
.legal-section h4 { color: #e2e5df; font-weight: 500; font-size: 1rem; line-height: 1.6; margin: 0 0 12px; }
.legal-section p { margin-bottom: 14px; }
.legal-subsection { margin-top: 28px; scroll-margin-top: 22px; }
.legal-copy ul, .legal-copy ol { padding-left: 22px; }

/* A glass surface over the meadow, with crisp labels and a same-origin form. */
.signup-dialog { color-scheme: dark; padding: 0; width: min(650px, calc(100vw - 32px)); max-width: 650px; max-height: calc(100svh - 48px); border: 1px solid rgb(255 255 255 / 38%); border-radius: 30px; color: #f8faf6; background: radial-gradient(ellipse at 0 0, rgb(229 241 211 / 14%), transparent 60%), radial-gradient(ellipse at 100% 100%, rgb(210 132 77 / 9%), transparent 52%), rgb(24 31 27 / 73%); backdrop-filter: blur(38px) saturate(145%); -webkit-backdrop-filter: blur(38px) saturate(145%); box-shadow: inset 0 1px 1px rgb(255 255 255 / 40%), inset 0 -1px 1px rgb(255 255 255 / 10%), 0 24px 100px rgb(0 0 0 / 36%); overflow: hidden; }
.signup-dialog::backdrop { background: linear-gradient(rgb(15 23 18 / 44%), rgb(10 16 13 / 66%)), url('./assets/sunlit-meadow.webp') center / cover; }
.dialog-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 28px 0 36px; }
.dialog-header .eyebrow { margin: 0; color: #d2d9cd; font-size: .625rem; }
.dialog-close { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / 18%); border-radius: 50%; background: rgb(255 255 255 / 6%); color: #f8faf6; font-size: 1.6rem; line-height: 1; }
.dialog-close:hover { background: rgb(255 255 255 / 14%); }
.dialog-body { position: relative; padding: 20px 36px 30px; overflow-y: auto; max-height: calc(100svh - 112px); overscroll-behavior: contain; scrollbar-color: #6c7569 transparent; scrollbar-width: thin; }
.dialog-body > h2 { font-size: clamp(1.8rem, 4vw, 2.45rem); line-height: 1.12; letter-spacing: -.035em; margin-bottom: 14px; }
.dialog-intro { color: #d0d6cd; font-size: .9375rem; margin-bottom: 30px; }
.signup-fields, .account-choice { border: 0; padding: 0; margin: 0; min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row.location-row { grid-template-columns: 1fr; }
.form-row.location-row.has-us-state { grid-template-columns: 1fr 1fr; }
.form-field { display: block; min-width: 0; font-size: .875rem; line-height: 1.5; margin-bottom: 20px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; min-width: 0; padding: 14px 16px; min-height: 52px; border: 1px solid rgb(255 255 255 / 22%); border-radius: 12px; color: #fff; background: linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%)); box-shadow: inset 0 1px 1px rgb(255 255 255 / 5%); font-size: 1rem; line-height: 1.4; outline-offset: 3px; }
.form-field select { appearance: none; cursor: pointer; padding-right: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%23c4cebe' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%)); background-position: right 16px center, 0 0; background-repeat: no-repeat; }
.form-field select option { background: #273029; color: #fff; }
.form-field select:has(option[value=""]:checked) { color: #b4beb0; }
.form-field textarea { resize: vertical; max-height: 240px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #b4beb0; opacity: 1; }
.form-field input:hover, .form-field textarea:hover, .form-field select:hover { border-color: rgb(255 255 255 / 45%); }
.form-field input:focus-visible, .form-field textarea:focus-visible, .form-field select:focus-visible { background-color: rgb(255 255 255 / 10%); outline: 2px solid #e0e9d8; }
.account-choice { margin-bottom: 20px; }
.account-choice legend { padding: 0; margin-bottom: 12px; color: #d0d6cd; font-size: .9375rem; line-height: 1.5; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-row label { position: relative; cursor: pointer; }
.choice-row input { position: absolute; top: 50%; left: 16px; transform: translateY(-50%); margin: 0; width: 15px; height: 15px; accent-color: #e3ebdc; cursor: pointer; }
.choice-row label > span { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 16px 13px 41px; min-height: 50px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 12px; font-size: .875rem; }
.choice-row input:checked + span { border-color: rgb(232 242 223 / 72%); background: rgb(224 240 211 / 10%); }
.choice-row input:focus-visible { outline-offset: 4px; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.glass-submit { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; border: 1px solid rgb(255 255 255 / 80%); border-radius: 128px; background: linear-gradient(140deg, #edf0e7, #d7ddcf); color: #20281e; box-shadow: inset 0 1px 0 #fff, 0 4px 20px rgb(0 0 0 / 8%); font-size: .9375rem; margin-top: 8px; }
.glass-submit:not(.access-cta):hover { background: #f6f8f0; }
.signup-fields:disabled { opacity: .65; }
.signup-fields:disabled .glass-submit { cursor: wait; }
.form-privacy { font-size: .8125rem; line-height: 1.7; color: #c4cebe; text-align: center; margin: 18px 0 0; }
.form-privacy a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.signup-verification { margin: 8px 0 20px; min-width: 0; }
#turnstile-widget { display: flex; justify-content: center; min-width: 0; }
#verification-status { margin: 10px 0 0; text-align: center; font-size: .8125rem; color: #c4cebe; }
#verification-retry { display: block; margin: 8px auto 0; padding: 10px 14px; color: #ffd3ae; background: transparent; border: 1px solid #8a7460; border-radius: 10px; }
#verification-retry[hidden] { display: none; }
.glass-submit:disabled { opacity: .55; cursor: not-allowed; }
.form-status { font-size: .875rem; line-height: 1.65; color: #ffe1c8; padding: 14px 16px; border: 1px solid rgb(255 199 153 / 30%); border-radius: 12px; background: rgb(60 28 6 / 30%); margin: 18px 0 0; }
.signup-dialog.signup-confirmed { width: min(548px, calc(100vw - 32px)); }
.form-success { padding: 10px 0 8px; text-align: center; outline-offset: 4px; }
.success-mark { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 25px; border: 1px solid #a38064; border-radius: 50%; background: linear-gradient(140deg, rgb(160 123 88 / 35%), rgb(124 124 88 / 12%)); color: #f5c39d; box-shadow: inset 0 1px 0 rgb(255 229 203 / 18%); font-size: 1.65rem; }
.form-success h2 { margin: 0; font-size: clamp(2.125rem, 5vw, 2.875rem); font-weight: 400; line-height: 1.13; letter-spacing: -.035em; text-wrap: balance; overflow-wrap: anywhere; }
.success-name { display: block; color: #f0b98e; }
.form-success .success-thanks { margin: 20px 0 0; color: #d0d6cd; font-size: 1rem; line-height: 1.6; }
.success-next { max-width: 360px; margin: 30px auto 0; padding-top: 24px; border-top: 1px solid rgb(224 229 217 / 15%); }
.success-next h3 { margin: 0 0 8px; font-size: .9375rem; font-weight: 500; line-height: 1.5; letter-spacing: 0; }
.success-next p { max-width: 290px; margin: 0 auto; color: #d0d6cd; font-size: 1rem; line-height: 1.6; text-wrap: pretty; }
.success-return { max-width: 286px; margin: 30px auto 0; justify-content: center; text-align: center; }

/* A single copper accent connects all early-access actions to the card. */
.access-cta { justify-content: center; text-align: center; color: var(--copper-ink); background: linear-gradient(125deg, #edb78e, #d5915d); border: 1px solid #c0885e; font-weight: 500; box-shadow: inset 0 1px 0 rgb(255 255 255 / 28%), 0 3px 14px rgb(0 0 0 / 12%); translate: var(--cta-x, 0px) var(--cta-y, 0px); transition: translate .22s ease-out, scale .38s cubic-bezier(.22, 1.5, .36, 1), box-shadow .22s ease, border-color .22s ease; }
.access-cta:focus-visible { outline: 2px solid #f3c7a4; outline-offset: 4px; }
.access-cta:active:enabled { background: #d5915d; scale: .965; transition-duration: .1s; }
.access-cta:disabled { translate: 0 0; scale: 1; }
.header-toggle, .header-close, .dialog-close, .app-tab, .glass-submit:not(.access-cta), .choice-row label > span { transition: scale .32s cubic-bezier(.22, 1.4, .36, 1), background-color .2s ease; }
.header-toggle:active, .header-close:active, .dialog-close:active, .glass-submit:not(.access-cta):active, .choice-row label:active > span { scale: .965; transition-duration: .1s; }
.app-tab:active { scale: .985; transition-duration: .1s; }
.header-toggle { transition: height .6s cubic-bezier(.22, 1, .36, 1), scale .32s cubic-bezier(.22, 1.4, .36, 1), background-color .22s ease, box-shadow .22s ease; }
.header-actions > .header-close { transition: opacity .2s ease, translate .35s cubic-bezier(.22, 1, .36, 1), scale .32s cubic-bezier(.22, 1.4, .36, 1), background-color .2s ease; }
@media (hover: hover) and (pointer: fine) {
  .header-toggle[aria-expanded="false"]:hover { background-color: rgb(226 161 107 / 42%); box-shadow: inset 0 0 0 1px rgb(255 211 174 / 65%), inset 0 1px 20px rgb(255 193 139 / 12%); }
  .access-cta:hover:enabled { background: linear-gradient(125deg, #f3c7a4, #e7a877); border-color: #e7b48a; box-shadow: inset 0 1px 0 rgb(255 255 255 / 40%), 0 7px 24px rgb(177 111 55 / 22%); }
  .header-nav a:hover span { translate: 4px 0; }
}

/* Visual viewport dimensions also account for the software keyboard. */
.content-dialog, .signup-dialog { top: calc(var(--visible-top, 0px) + var(--visible-height, 100dvh) / 2); bottom: auto; margin: 0 auto; max-height: calc(var(--visible-height, 100dvh) - 48px); transform: translateY(-50%); }
.signup-dialog[open] { display: flex; flex-direction: column; }
.dialog-header { flex: 0 0 auto; }
.dialog-body { min-height: 0; max-height: none; }

@media (max-width: 700px) {
  :root { --detail-title-size: 1.25rem; }
  html { scroll-padding-top: 96px; }
  .has-scroll-motion .hero-scroll { height: 185svh; }
  .site-header { --header-top: max(12px, env(safe-area-inset-top)); width: 64px; border-radius: 20px; }
  .header-toggle { height: 62px; }
  .header-toggle .brand-icon { scale: .82; }
  .site-header.is-expanded .header-toggle { height: 84px; }
  .site-header.is-expanded .brand-icon { scale: 1; }
  .header-actions { padding-inline: 24px; }
  .header-nav a { min-height: 64px; padding-block: 16px; font-size: 1.625rem; }
  .header-invitation { padding-top: 24px; }
  .hero-landscape { object-position: 49% 58%; }
  .card-positioner { width: min(79vw, 41svh, 360px); top: 43%; }
  .hero-copy { top: max(118px, 17svh); left: 20px; right: 20px; }
  .hero-copy h1 { font-size: clamp(1.9rem, 9.2vw, 3.8rem); margin-bottom: 16px; }
  .hero-copy p { font-size: 1rem; line-height: 1.5; text-wrap: balance; }
  .section { padding: 64px max(20px, env(safe-area-inset-right)) 64px max(20px, env(safe-area-inset-left)); }
  h2 { font-size: clamp(1.9rem, 7.5vw, 2.75rem); margin-bottom: 28px; }
  .value-section { padding: 80px 24px 64px; }
  .value-copy { font-size: clamp(1.25rem, 5.5vw, 1.75rem); line-height: 1.5; letter-spacing: -.02em; }
  .value-access { margin-top: 40px; }
  .value-note { max-width: 20rem; margin-top: 20px; font-size: .875rem; }
  .app-pin { padding: 88px 20px 64px; }
  .app-backdrop { object-position: 15% center; }
  .app-pin::before { background: linear-gradient(180deg, #000, transparent 15%, transparent 80%, #000), radial-gradient(ellipse at 50% 40%, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 48%) 48%, rgb(0 0 0 / 12%) 88%); }
  .app-intro > h2 { font-size: clamp(1.875rem, 7.4vw, 2.375rem); line-height: 1.2; text-align: center; margin-bottom: 28px; }
  .app-walkthrough { grid-template-columns: 1fr; gap: 10px; max-width: 440px; }
  .app-tabs { width: min(100%, 320px); margin: 0 auto; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .app-tab, .app-tab:last-child { position: relative; display: flex; align-items: center; justify-content: center; gap: 0; min-width: 0; min-height: 48px; padding: 10px; border: 1px solid var(--panel-border); border-radius: var(--panel-radius); }
  .app-tab[aria-selected="true"] { background: var(--panel-background); border-color: rgb(226 161 107 / 55%); }
  .app-tab .step-copy { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .app-tab .step-arrow { display: none; }
  .step-number { font-size: .9375rem; }
  .app-tab[aria-selected="true"] .step-number { color: #f3c7a4; }
  .app-mobile-caption { display: grid; align-content: center; min-height: 144px; max-width: 350px; padding: 12px 16px; margin: 0 auto; text-align: center; text-shadow: 0 2px 12px #000; background: radial-gradient(ellipse, rgb(0 0 0 / 84%), transparent 85%); }
  .app-mobile-caption h3 { font-size: var(--detail-title-size); line-height: 1.35; font-weight: 400; letter-spacing: -.02em; margin: 0 0 10px; }
  .app-mobile-caption p { font-size: 1rem; line-height: 1.65; color: var(--detail-color); max-width: 32ch; margin: 0 auto; }
  .handheld-device { width: min(100%, 440px); margin-inline: auto; transform: scaleX(-1); }
  .is-scroll-walkthrough .app-pin { padding: max(88px, calc(env(safe-area-inset-top) + 76px)) max(20px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
  .is-scroll-walkthrough .app-walkthrough { display: flex; flex-direction: column; gap: 0; }
  .is-scroll-walkthrough .app-intro { flex: 0 0 auto; width: 100%; }
  .is-scroll-walkthrough .app-intro > h2 { font-size: clamp(1.5rem, 6.5vw, 1.875rem); line-height: 1.16; margin-bottom: 14px; }
  .is-scroll-walkthrough .app-tab { min-height: 48px; padding: 8px; }
  .is-scroll-walkthrough .app-stage { flex: 1; width: 100%; height: auto; justify-content: flex-start; }
  .is-scroll-walkthrough .app-mobile-caption { flex: 0 0 auto; min-height: 104px; width: 100%; padding: 12px 0; }
  .is-scroll-walkthrough .app-mobile-caption h3 { font-size: 1.125rem; margin-bottom: 7px; }
  .is-scroll-walkthrough .app-mobile-caption p { font-size: 1rem; line-height: 1.5; }
  .is-scroll-walkthrough .annotation { font-size: .75rem; margin-top: 10px; }
  .annotation { font-size: .75rem; margin-top: 22px; text-wrap: balance; }
  .faq-section { padding-block: 40px 64px; scroll-margin-top: 108px; }
  .faq-list summary { min-height: 88px; padding: 24px 4px; gap: 20px; }
  .faq-answer { padding: 0 4px 28px; }
  .faq-answer p { font-size: 1rem; line-height: 1.75; }
  .signup-section { padding-top: 32px; padding-bottom: 64px; }
  .signup-section .button { width: min(100%, 320px); justify-content: center; padding-inline: 24px; }
  .site-footer { padding: 0 max(20px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
  .footer-top { justify-content: center; gap: 18px; padding-top: 22px; }
  .footer-links { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: center; gap: 4px 8px; font-size: .875rem; }
  .footer-links a { justify-content: center; min-height: 48px; }
  .legal-contents nav a { min-height: 44px; display: flex; align-items: center; }
  .chapter-content { padding: 20px 0 44px; }
  .team-grid { gap: 30px 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-heading h3 { font-size: 1rem; }
  .team-member p { font-size: .8125rem; }
  .advisor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .thesis-content { grid-template-columns: 1fr; gap: 0; }
  .thesis-content .chapter-intro { margin-bottom: 14px; }
  .copyright { text-align: center; }
  .disclosure { text-align: left; font-size: .875rem; }
}
@media (max-width: 540px) {
  .content-dialog { width: calc(100vw - 16px); max-height: calc(var(--visible-height, 100dvh) - 16px); border-radius: 20px; }
  .content-dialog-header { padding: 14px 16px 14px 22px; gap: 12px; }
  .content-dialog-header h2 { font-size: 1.125rem; }
  .content-dialog-body { padding: 24px 20px max(26px, env(safe-area-inset-bottom)); }
  .content-dialog .team-grid { grid-template-columns: 1fr; }
  .team-portrait { max-height: 340px; }
  .legal-copy { font-size: .9375rem; }
  .legal-section h3 { font-size: 1.25rem; }
  .signup-dialog { width: calc(100vw - 16px); max-width: 100vw; max-height: calc(var(--visible-height, 100dvh) - 16px); border-radius: 24px; }
  .dialog-header { padding: 14px 16px 0 22px; }
  .dialog-header .eyebrow { font-size: .75rem; letter-spacing: .04em; }
  .dialog-body { padding: 18px 20px max(26px, env(safe-area-inset-bottom)); max-height: none; }
  .dialog-intro { margin-bottom: 24px; }
  .form-row, .form-row.location-row.has-us-state { grid-template-columns: 1fr; gap: 0; }
  .form-field { margin-bottom: 16px; }
  .form-field input, .form-field textarea { padding: 12px 14px; }
  .form-field select { padding: 12px 42px 12px 14px; }
  .choice-row { gap: 10px; }
  .choice-row label > span { padding-right: 12px; }
  .dialog-intro { font-size: 1rem; }
  .legal-copy { font-size: 1rem; }
}
@media (max-width: 700px) and (max-height: 700px) {
  .site-header.is-expanded .header-toggle { height: 72px; }
  .header-actions { padding-bottom: 18px; }
  .header-nav a { min-height: 54px; padding-block: 12px; font-size: 1.5rem; }
  .header-invitation { padding-top: 18px; }
  .header-actions > .header-close { margin-top: 16px; }
}
@media (max-height: 560px) and (max-width: 700px) {
  .hero-copy { top: 104px; }
  .hero-copy h1 { font-size: clamp(1.65rem, min(9.2vw, 8svh), 2.6rem); margin-bottom: 10px; }
  .hero-copy p { font-size: .875rem; line-height: 1.4; }
  .scroll-cue { bottom: max(18px, env(safe-area-inset-bottom)); }
}
@media (max-height: 560px) and (min-width: 701px) {
  .site-header { --header-top: max(12px, env(safe-area-inset-top)); }
  .card-positioner { width: 40svh; top: 43%; }
  .hero-copy h1 { font-size: clamp(2rem, 9svh, 3.5rem); margin-bottom: 8px; }
  .hero-copy p { font-size: 1rem; }
  .hero-copy { top: 104px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .has-scroll-motion .hero-scroll { height: 100svh; }
  .hero-landscape, .card-plane, .card-travel { will-change: auto; }
  .access-cta, .header-nav a span { translate: none !important; }
  .access-cta, .header-toggle, .header-close, .dialog-close, .app-tab, .glass-submit, .choice-row label > span { scale: none !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Each face is opaque and culled from the back. The laminations only form the edge. */
.card-lamination { position:absolute; inset:0; border-radius:4.05% / 6.70%; background:linear-gradient(155deg,#b9bcb5,#484f4a 42%,#a4a8a0 80%,#514b40); border:.55px solid rgb(225 183 124 / 65%); pointer-events:none; }
.card-face { transform:translateZ(.1px); backface-visibility:hidden; -webkit-backface-visibility:hidden; box-shadow:0 10px 24px rgb(0 0 0 / 30%),0 2px 5px rgb(0 0 0 / 45%); }
.card-back { position:absolute; inset:0; transform:translateZ(-3px) rotateY(180deg); background:#747a74; }
.card-face::after { content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none; box-shadow:inset 0 1px 1px rgb(255 244 218 / 65%),inset 0 -1px 1px rgb(18 23 22 / 65%),inset 1px 0 1px rgb(255 206 152 / 35%); }
.city-bloom-canvas { position:absolute; inset:0; width:100%; height:100%; z-index:-3; opacity:0; transform:translate3d(0,var(--landscape-y,0px),0) scale(var(--landscape-scale,1.04)); pointer-events:none; }
.city-scene .hero-landscape { filter: brightness(.78) saturate(.72); }
.city-ready .city-bloom-canvas { opacity:1; }
.city-ready .hero-landscape { visibility:hidden; }
.city-scene .hero-shade { background:linear-gradient(180deg,rgb(0 0 0 / 30%),rgb(0 0 0 / 44%) 24%,rgb(0 0 0 / 12%) 52%,rgb(0 0 0 / 28%) 80%,#000); }
@media (max-width:700px) {
  .city-scene .hero-landscape { object-position:18% 54%; }
}
@media (prefers-reduced-motion: reduce) { .city-bloom-canvas { will-change:auto; } }
