:root {
  --acc: #f2b544;
  --ink: #12110f;
  --ink-2: #171613;
  --surface: #1c1a17;
  --surface-2: #211f1b;
  --line: #2e2b26;
  --line-2: #3a362f;
  --text: #f3efe6;
  --text-2: #c9c2b4;
  --muted: #a8a194;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--text); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--acc); text-decoration: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
.wrap { max-width: 1240px; margin: 0 auto; padding-left: 48px; padding-right: 48px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; background: var(--ink); border-bottom: 1px solid var(--line); }
.nav-inner { padding-top: 18px; padding-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 600; }
.mono-badge { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--acc); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--acc); }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 15px; }
.navlink { color: var(--text-2); transition: color .2s; }
.navlink:hover { color: var(--text); }
.btn-pill { padding: 11px 20px; border-radius: 999px; background: var(--acc); color: var(--ink); font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; }
.cta-icon { display: none; }
.brand > span:last-child { white-space: nowrap; }

/* shared */
.kicker { font-family: var(--mono); font-size: 14px; color: var(--acc); letter-spacing: .08em; }
.muted { color: var(--muted); font-size: 16px; line-height: 1.6; }
.muted-mono { font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.sm { font-size: 12px; }
.section { padding-top: 112px; padding-bottom: 32px; display: flex; flex-direction: column; gap: 48px; }
.section-head { display: flex; flex-direction: column; gap: 16px; }
.section-head.split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 48px; }
.section-head.split > div:first-child { display: flex; flex-direction: column; gap: 16px; }
.section-head.split > p { max-width: 460px; }
h2 { font-family: var(--serif); font-weight: 600; font-size: 56px; line-height: 1.05; letter-spacing: -.01em; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { padding: 36px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); display: flex; flex-direction: column; gap: 20px; }
.lift { transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, background-color .4s; }
.lift:hover { transform: translateY(-6px); border-color: var(--acc) !important; }
.cta { transition: transform .25s; display: inline-block; }
.cta:hover { transform: scale(1.04); }
.btn-pill.cta { display: inline-flex; }

/* hero */
.hero { padding-top: 96px; padding-bottom: 88px; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px 24px; align-items: start; }
.hero-copy { grid-column: span 7; display: flex; flex-direction: column; gap: 36px; }
.eyebrow { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 14px; color: var(--muted); letter-spacing: .04em; }
.pulse { width: 8px; height: 8px; border-radius: 999px; background: #6fcf8a; animation: pulse 1.8s ease-out infinite; }
.name { margin: 0; font: inherit; }
.display { font-family: var(--serif); font-weight: 600; font-size: 80px; line-height: 1.04; letter-spacing: -.02em; }
.rotator { display: inline-block; height: 1.3em; overflow: hidden; vertical-align: -0.28em; color: var(--acc); font-style: italic; }
.rotator-track { display: flex; flex-direction: column; transition: transform .7s cubic-bezier(.7,0,.2,1); }
.rotator-track span { display: block; height: 1.3em; line-height: 1.3em; white-space: nowrap; padding-right: .08em; }
.lead { font-size: 20px; line-height: 1.6; color: var(--text-2); max-width: 620px; }
.hero-links { display: flex; align-items: center; gap: 20px; }
.badge { position: relative; flex: none; width: 132px; height: 132px; display: flex; align-items: center; justify-content: center; color: var(--acc); }
.badge svg.spin { position: absolute; inset: 0; animation: spin 20s linear infinite; }
.badge text { font-family: var(--mono); font-size: 11.5px; letter-spacing: 3px; fill: currentColor; }
.badge-core { width: 56px; height: 56px; border-radius: 999px; background: var(--acc); color: var(--ink); display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.badge:hover .badge-core { transform: rotate(45deg) scale(1.08); }
.link-stack { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.row-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border: 1px solid var(--line); border-radius: 12px; color: var(--text); font-size: 16px; }
.row-link.filled { background: var(--surface-2); border-color: var(--surface-2); padding: 18px 20px; font-size: 17px; }

/* demo */
.demo { grid-column: 8 / span 5; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.demo-head { display: flex; justify-content: space-between; align-items: center; gap: 4px 12px; flex-wrap: wrap; }
.demo-head .kicker { font-size: 12px; letter-spacing: .1em; }
.stepper { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.stepper button { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 10px; background: transparent; color: var(--muted); font: inherit; font-size: 14px; cursor: pointer; transition: background-color .25s, color .25s, border-color .25s; }
.stepper b { flex: none; width: 20px; height: 20px; border-radius: 999px; border: 1px solid currentColor; display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; font-weight: 500; }
.stepper button.done { color: var(--text); border-color: var(--line-2); }
.stepper button.done b { background: var(--text); color: var(--ink); border-color: var(--text); }
.stepper button.on { background: var(--acc); border-color: var(--acc); color: var(--ink); font-weight: 600; }
.stepper button.on b { background: var(--ink); color: var(--acc); border-color: var(--ink); }
.stepper button:disabled { opacity: .45; cursor: not-allowed; }
.panel { display: flex; flex-direction: column; gap: 16px; min-height: 250px; animation: linein .35s ease-out both; }
.panel[hidden] { display: none; }
.panel-note { color: var(--text-2); font-size: 15px; }
.stage { display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--mono); font-size: 11px; letter-spacing: .3em; color: var(--muted); }
.stage-arc { width: 70%; height: 16px; border-bottom: 3px solid var(--acc); border-radius: 0 0 50% 50%; }
.seatmap { display: flex; flex-direction: column; gap: 4px; align-items: center; padding-bottom: 14px; }
.seat-row { display: flex; align-items: flex-start; gap: 5px; }
.row-name { width: 12px; font-family: var(--mono); font-size: 10px; color: var(--muted); text-align: center; line-height: 26px; }
.seat { width: 28px; height: 26px; padding: 0; border-radius: 8px 8px 4px 4px; border: 1.5px solid #6b655a; background: transparent; font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--ink); cursor: pointer; transform: translateY(var(--dy, 0)); transition: transform .15s, background-color .2s, border-color .2s; }
.seat.prem { border-color: color-mix(in srgb, var(--acc) 55%, #6b655a); }
.seat.aisle { margin-right: 14px; }
.seat:hover:enabled { transform: translateY(calc(var(--dy, 0px) - 3px)); border-color: var(--acc); }
.seat.on { background: var(--acc); border-color: var(--acc); }
.seat:disabled { background: #35322c; border-color: #35322c; cursor: not-allowed; }
.legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 16px; font-size: 12.5px; color: var(--muted); }
.legend span { display: flex; align-items: center; gap: 6px; }
.lg { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.lg.free { border: 1.5px solid #6b655a; } .lg.prem { border: 1.5px solid color-mix(in srgb, var(--acc) 55%, #6b655a); } .lg.taken { background: #35322c; }
.menu { display: flex; flex-direction: column; gap: 10px; }
.menu-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); }
.menu-info { display: flex; flex-direction: column; gap: 4px; font-size: 15px; }
.counter { display: flex; align-items: center; gap: 4px; }
.counter button { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-2); background: transparent; color: var(--text); font: inherit; font-size: 20px; cursor: pointer; transition: border-color .2s, background-color .2s; }
.counter button:hover { border-color: var(--acc); }
.qty { min-width: 24px; text-align: center; font-family: var(--mono); font-size: 16px; }
.gw-pick { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.gw-pick button { min-height: 44px; padding: 0 6px; border-radius: 10px; border: 1px solid var(--line-2); background: transparent; color: var(--text-2); font: inherit; font-size: 13px; cursor: pointer; transition: all .2s; }
.gw-pick button.on { border-color: var(--acc); color: var(--text); background: color-mix(in srgb, var(--acc) 14%, transparent); }
.chaos { display: flex; align-items: center; gap: 10px; min-height: 44px; font-size: 14px; color: var(--text-2); cursor: pointer; }
.chaos input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch { flex: none; width: 38px; height: 22px; border-radius: 999px; background: var(--line-2); position: relative; transition: background-color .2s; }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 999px; background: var(--text); transition: transform .2s; }
.chaos input:checked + .switch { background: #e0785a; }
.chaos input:checked + .switch::after { transform: translateX(16px); }
.chaos input:focus-visible + .switch { outline: 2px solid var(--acc); outline-offset: 2px; }
.bill { display: flex; flex-direction: column; gap: 8px; padding: 14px; border-radius: 12px; background: var(--surface-2); font-size: 14px; color: var(--text-2); }
.bill div { display: flex; justify-content: space-between; }
.bill .bill-total { padding-top: 8px; border-top: 1px dashed var(--line-2); color: var(--text); font-weight: 600; font-size: 16px; }
.eticket { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 20px; border-radius: 14px; background: var(--text); color: var(--ink); animation: rise .6s cubic-bezier(.2,.8,.2,1) both; position: relative; }
.eticket .muted-mono { color: #6b655a; }
.et-main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.et-title { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.1; }
.et-meta { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.et-meta div { display: flex; flex-direction: column; gap: 2px; }
.qr { display: grid; grid-template-columns: repeat(11, 8px); gap: 1px; padding: 8px; background: #fff; border-radius: 8px; }
.qr i { width: 8px; height: 8px; }
.qr i.on { background: var(--ink); }
.btn-accent { min-height: 44px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--acc); color: var(--ink); font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.btn-accent:focus-visible, .stepper button:focus-visible, .seat:focus-visible, .counter button:focus-visible, .gw-pick button:focus-visible, .swatches button:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }
.demo-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px dashed var(--line-2); font-size: 15px; }
.console-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: -10px; }
.live { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; color: #8fd6a0; }
.live i { width: 6px; height: 6px; border-radius: 999px; background: #6fcf8a; animation: pulse 1.8s ease-out infinite; }
.swatches { display: flex; gap: 6px; align-items: center; padding: 6px 8px; border: 1px solid var(--line); border-radius: 999px; }
.swatches button { width: 18px; height: 18px; padding: 0; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .2s; }
.swatches button:hover { transform: scale(1.2); }
.swatches button[aria-pressed="true"] { border-color: var(--text); }
#projGrid .proj:last-child:nth-child(odd) { grid-column: 1 / -1; }
.console { min-height: 150px; border-radius: 12px; background: #0c0b0a; border: 1px solid var(--line); padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 12.5px; line-height: 1.5; }
.console::after { content: '▍'; color: var(--acc); animation: caret 1s steps(1) infinite; }
.logline { display: flex; gap: 8px; animation: linein .35s ease-out both; }
.logline .pre { color: #6b655a; }
.c-cmd { color: var(--text); } .c-err { color: #ff8f7a; } .c-retry { color: #ffcf7a; } .c-ok { color: #8fd6a0; } .c-warn { color: #ffb38a; } .c-done { color: var(--acc); } .c-muted { color: var(--muted); }

/* band */
.band { background: var(--acc); color: var(--ink); overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.track { display: flex; width: max-content; padding: 22px 0; animation: marquee 38s linear infinite; }
.band:hover .track { animation-play-state: paused; }
.track span { display: flex; align-items: center; gap: 28px; padding-right: 28px; font-family: var(--serif); font-style: italic; font-size: 30px; font-weight: 500; white-space: nowrap; }
.track span i { font-style: normal; font-size: 20px; }

/* stats */
.stats { border-bottom: 1px solid var(--line); background: var(--ink-2); }
.stats-grid { padding-top: 44px; padding-bottom: 44px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stats-grid > div { display: flex; flex-direction: column; gap: 6px; }
.stat { font-family: var(--serif); font-size: 56px; font-weight: 600; color: var(--acc); }
.stat-label { font-size: 15px; color: var(--muted); }

/* work */
.bulbs { display: flex; gap: 10px; flex-wrap: wrap; height: 10px; overflow: hidden; }
.bulbs span { width: 10px; height: 10px; border-radius: 999px; background: var(--acc); animation: blink 1.4s ease-in-out infinite; flex: none; }
.bulbs span:nth-child(even) { animation-delay: .7s; }
.ticket { display: grid; grid-template-columns: minmax(0, 1fr) 132px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); color: var(--text); overflow: hidden; }
.ticket-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.ticket h3, .proj h3 { font-family: var(--serif); font-weight: 600; font-size: 30px; line-height: 1.15; }
.ticket p, .proj p { font-size: 16px; line-height: 1.6; color: var(--text-2); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tags span { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 13px; color: var(--text-2); }
.stub { border-left: 2px dashed var(--line-2); padding: 32px 20px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; background: var(--surface-2); transition: background-color .4s; }
.stub .admit { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .1em; }
.stub .no { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--acc); }
.stub .visit { font-family: var(--mono); font-size: 12px; color: var(--acc); }
.ticket:hover .stub { background: var(--acc); }
.ticket:hover .stub span { color: var(--ink); }
.gateways { border: 1px solid var(--line); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.gw-list { display: flex; flex-wrap: wrap; gap: 12px; flex-grow: 1; }
.gw-list span { padding: 10px 18px; border-radius: 10px; background: var(--surface-2); color: var(--text); font-size: 16px; font-weight: 500; transition: background-color .5s, color .5s; }
.gw-list span.hot { background: var(--acc); color: var(--ink); }

/* projects */
.featured { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; padding: 48px; border-radius: 20px; border: 1px solid var(--text); background: var(--text); color: var(--ink); }
.featured-copy { grid-column: span 7; display: flex; flex-direction: column; gap: 20px; }
.chip-dark { align-self: flex-start; padding: 6px 12px; border-radius: 999px; background: var(--ink); color: var(--text); font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
.featured h3 { font-family: var(--serif); font-weight: 600; font-size: 48px; line-height: 1.05; }
.featured p { font-size: 18px; line-height: 1.6; color: #3d3a34; }
.loop-note { font-family: var(--mono); font-size: 13px; color: #5a564e; }
.ai-steps { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 14px; }
.ai-steps div { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border: 1px solid #cfc8b8; border-radius: 10px; transition: background-color .45s, color .45s, border-color .45s; }
.ai-steps div.on { background: var(--ink); color: var(--text); border-color: var(--ink); }
.proj { display: flex; flex-direction: column; gap: 14px; padding: 32px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); color: var(--text); }
.proj h3 { font-size: 28px; }
.proj-top { display: flex; justify-content: space-between; align-items: center; }
.proj-no { font-family: var(--serif); font-size: 22px; color: var(--acc); }
.proj-link { font-family: var(--mono); font-size: 13px; color: var(--acc); }

/* experience */
.exp { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.exp-head { grid-column: span 4; display: flex; flex-direction: column; gap: 16px; position: sticky; top: 120px; align-self: start; }
.exp-list { grid-column: 6 / span 7; display: flex; flex-direction: column; gap: 24px; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.card h3 { font-size: 22px; font-weight: 600; }
.date { font-family: var(--mono); font-size: 13px; color: var(--acc); white-space: nowrap; }
.card ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 16px; line-height: 1.6; color: var(--text-2); }

/* skills */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.tabs button { min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--text-2); font: inherit; font-size: 14px; cursor: pointer; transition: background-color .25s, color .25s; }
.tabs button[aria-pressed="true"] { background: var(--acc); border-color: var(--acc); color: var(--ink); }
.skill { padding: 28px; border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; gap: 16px; transition: opacity .35s, transform .4s, border-color .4s; }
.skill.dim { opacity: .25; }
.skill.focus { border-color: var(--acc); }
.skill h3 { font-weight: 400; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li { padding: 7px 12px; border-radius: 8px; background: var(--surface-2); font-size: 15px; }

/* education */
.edu { display: flex; flex-direction: column; gap: 6px; }
.edu h3 { font-size: 20px; }
.certs { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-2); line-height: 1.7; }
.body { font-size: 17px; line-height: 1.6; color: var(--text-2); }

/* faq */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 4px; cursor: pointer; min-height: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 1.25; transition: color .2s; }
.faq-item summary:hover h3 { color: var(--acc); }
.faq-item summary:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }
.faq-icon { flex: none; width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--acc); transition: transform .3s, background-color .3s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--surface-2); }
.faq-item p { max-width: 820px; padding: 0 4px 28px; font-size: 17px; line-height: 1.7; color: var(--text-2); animation: linein .35s ease-out both; }

/* share */
.btn-share { display: inline-flex; align-items: center; gap: 10px; background: transparent; font: inherit; font-size: 18px; font-weight: 600; cursor: pointer; }
.share-fab { position: fixed; right: 24px; bottom: 24px; z-index: 20; min-height: 52px; padding: 0 20px 0 18px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--ink); border-radius: 999px; background: var(--acc); color: var(--ink); font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.45); opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none; transition: opacity .3s, transform .3s cubic-bezier(.2,.8,.2,1); }
.share-fab.show { opacity: 1; transform: none; pointer-events: auto; }
.share-fab:hover { transform: translateY(-2px); }
.share-fab:focus-visible, .share-close:focus-visible, .share-grid a:focus-visible, .share-grid button:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }
.share-backdrop { position: fixed; inset: 0; z-index: 30; background: rgba(8,8,7,.6); animation: fadein .2s ease-out both; }
.share-sheet { position: fixed; z-index: 31; right: 24px; bottom: 92px; width: min(380px, calc(100vw - 32px)); padding: 22px; border: 1px solid var(--line-2); border-radius: 20px; background: var(--surface); color: var(--text); display: flex; flex-direction: column; gap: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.55); animation: rise .35s cubic-bezier(.2,.8,.2,1) both; }
.share-sheet[hidden], .share-backdrop[hidden] { display: none; }
.share-head { display: flex; justify-content: space-between; align-items: center; }
.share-head strong { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.share-close { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.share-close:hover { color: var(--text); border-color: var(--acc); }
.share-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.share-grid a, .share-grid button { min-height: 76px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); color: var(--text); font: inherit; font-size: 13px; cursor: pointer; transition: border-color .2s, transform .2s; }
.share-grid a:hover, .share-grid button:hover { border-color: var(--acc); transform: translateY(-2px); }
.share-grid .ic { width: 34px; height: 34px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--acc) 16%, transparent); color: var(--acc); font-family: var(--mono); font-size: 13px; font-weight: 500; }
.share-copy { display: flex; gap: 8px; }
.share-copy input { flex: 1; min-width: 0; min-height: 44px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--ink); color: var(--text-2); font-family: var(--mono); font-size: 12.5px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 40; transform: translate(-50%, 20px); padding: 12px 20px; border-radius: 999px; background: var(--text); color: var(--ink); font-size: 15px; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* footer */
.footer { margin-top: 112px; background: var(--acc); color: var(--ink); overflow: hidden; }
.footer-inner { padding-top: 112px; padding-bottom: 48px; display: flex; flex-direction: column; gap: 56px; }
.mono-sm { font-family: var(--mono); font-size: 14px; letter-spacing: .08em; }
.footer h2 { font-size: 104px; line-height: .98; letter-spacing: -.03em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-dark, .btn-outline { padding: 18px 28px; border-radius: 999px; font-size: 18px; font-weight: 600; }
.btn-dark { background: var(--ink); color: var(--text); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--ink); font-size: 15px; }
.footer-bottom a { color: var(--ink); font-weight: 600; }
.footer-bottom a[rel~="author"] { font-weight: inherit; }

/* motion */
.rise { animation: rise .9s cubic-bezier(.2,.8,.2,1) both; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .34s; } .d4 { animation-delay: .5s; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .18; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111,207,138,.6); } 100% { box-shadow: 0 0 0 12px rgba(111,207,138,0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes linein { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
@keyframes caret { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  *, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* responsive */
@media (max-width: 1080px) {
  .display { font-size: 64px; }
  .hero-copy, .demo { grid-column: span 12; }
  .demo { max-width: 520px; }
  .featured-copy, .ai-steps { grid-column: span 12; }
  .exp-head, .exp-list { grid-column: span 12; position: static; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer h2 { font-size: 76px; }
}
@media (max-width: 760px) {
  .wrap { padding-left: 16px; padding-right: 16px; }
  .nav-links .navlink { display: none; }
  .brand > span:last-child { font-size: 14px; }
  .nav-inner { padding-top: 12px; padding-bottom: 12px; gap: 10px; }
  .nav-links { gap: 10px; }
  .mono-badge { width: 36px; height: 36px; font-size: 15px; }
  .brand { gap: 8px; }
  .swatches { gap: 5px; padding: 5px 7px; }
  .swatches button { width: 15px; height: 15px; }
  .btn-pill { width: 44px; height: 44px; padding: 0; }
  .cta-text { display: none; }
  .cta-icon { display: block; }
  .eyebrow { font-size: 12px; align-items: flex-start; }
  .eyebrow .pulse { flex: none; margin-top: 4px; }
  .demo { padding: 16px; gap: 16px; border-radius: 16px; }
  .demo-head { flex-direction: column; align-items: flex-start; }
  .stepper { gap: 4px; }
  .stepper button { gap: 5px; padding: 0 4px; font-size: 12.5px; border-radius: 9px; }
  .stepper b { width: 18px; height: 18px; font-size: 10px; }
  .panel { min-height: 0; }
  .legend { font-size: 12px; gap: 6px 12px; }
  .menu-row { padding: 10px 12px; }
  .console { font-size: 11.5px; padding: 12px; min-height: 120px; }
  .demo-bar .btn-accent { width: 100%; }
  .hero { padding-top: 56px; padding-bottom: 56px; }
  .display { font-size: 42px; }
  .lead { font-size: 17px; }
  h2 { font-size: 40px; }
  .hero-links { flex-direction: column; align-items: stretch; }
  .badge { align-self: flex-start; }
  .seat { width: 22px; height: 22px; }
  .seat-row { gap: 3px; }
  .row-name { line-height: 22px; }
  .seat.aisle { margin-right: 8px; }
  .gw-pick { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eticket { grid-template-columns: minmax(0, 1fr); }
  .demo-bar { flex-direction: column; align-items: stretch; }
  .demo-actions { justify-content: flex-end; }
  .track span { font-size: 22px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { font-size: 42px; }
  .section { padding-top: 80px; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tabs { justify-content: flex-start; }
  .grid-2, .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .ticket { grid-template-columns: minmax(0, 1fr); }
  .ticket-body { padding: 22px; }
  .ticket h3 { font-size: 26px; }
  .stub { flex-direction: row; border-left: 0; border-top: 2px dashed var(--line-2); padding: 12px 22px; }
  .stub .no { font-size: 26px; }
  .featured { padding: 24px; }
  .featured h3 { font-size: 34px; }
  .card { padding: 24px; }
  .card-top { flex-direction: column; gap: 6px; }
  .gateways { padding: 20px; gap: 16px; }
  .footer-inner { padding-top: 72px; }
  .footer h2 { font-size: 52px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .faq-item summary h3 { font-size: 19px; }
  .share-fab { right: 16px; bottom: 16px; }
  .share-sheet { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .btn-share { font-size: 18px; }
}
