:root {
  --paper: #f4f2ed;
  --paper-2: #ebe8e1;
  --ink: #101216;
  --muted: #5e6269;
  --line: #cfd2d6;
  --blue: #2457ff;
  --orange: #ed5b2a;
  --white: #ffffff;
  --frame: min(100% - 64px, 1480px);
  --header: 82px;
  --ease: cubic-bezier(.22,.78,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.frame { width: var(--frame); margin-inline: auto; }
.section { padding: clamp(96px, 10vw, 168px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 12px 16px; background: var(--blue); color: var(--white); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: none; }

.eyebrow { margin: 0 0 24px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid transparent; font-size: 13px; font-weight: 800; letter-spacing: .04em; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--blue); }
.line-link { display: inline-flex; align-items: center; gap: 14px; min-height: 40px; font-size: 13px; font-weight: 800; }
.line-link::before { content: ""; width: 42px; height: 1px; background: currentColor; transition: width .3s var(--ease); }
.line-link:hover::before { width: 68px; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: var(--header); color: var(--ink); transition: background .3s, border-color .3s, backdrop-filter .3s; }
.site-header.is-scrolled { background: rgba(244,242,237,.92); border-bottom: 1px solid rgba(16,18,22,.12); backdrop-filter: blur(16px); }
.header-grid { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; }
.wordmark { display: inline-grid; width: max-content; line-height: 1; }
.wordmark span { font-size: 24px; font-weight: 900; letter-spacing: .3em; }
.wordmark small { margin-top: 5px; font-size: 8px; font-weight: 800; letter-spacing: .62em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 800; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 1px; background: var(--blue); transition: right .3s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.header-action { justify-self: end; display: inline-flex; align-items: center; gap: 18px; padding: 13px 16px; border: 1px solid var(--ink); font-size: 11px; font-weight: 800; }
.header-action:hover { background: var(--ink); color: var(--white); }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 0; place-content: center; gap: 7px; }
.menu-button i { width: 22px; height: 1px; background: currentColor; transition: transform .25s var(--ease); }
.menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: var(--header) 0 auto; display: grid; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 28px 28px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 23px; }
.mobile-nav a:last-child { color: var(--blue); border-bottom: 0; }

.hero { min-height: 100svh; padding-top: var(--header); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-ruler { display: grid; grid-template-columns: repeat(4,1fr); min-height: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-ruler span { display: flex; align-items: center; padding: 0 22px; border-right: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .16em; color: var(--muted); }
.hero-ruler span:last-child { border-right: 0; }
.hero-grid { display: grid; grid-template-columns: minmax(360px,.8fr) minmax(560px,1.2fr); gap: clamp(48px,7vw,120px); align-items: center; min-height: calc(100svh - var(--header) - 164px); padding: clamp(58px,7vw,110px) 0; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 0; font-size: clamp(78px,9.7vw,168px); line-height: .8; letter-spacing: -.075em; font-weight: 900; }
.hero-statement { max-width: 580px; margin: 42px 0 0; font-size: clamp(18px,1.5vw,24px); line-height: 1.45; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 42px; }
.lot-visual { position: relative; min-height: clamp(540px,62vw,760px); isolation: isolate; }
.lot-photo { position: absolute; inset: 7% 2% 12% 10%; overflow: hidden; background: var(--ink); clip-path: polygon(10% 0,100% 0,100% 82%,83% 100%,0 100%,0 14%); }
.lot-photo picture, .lot-photo img { width: 100%; height: 100%; }
.lot-photo img { object-fit: cover; filter: grayscale(1) contrast(1.16) brightness(.82); transform: scale(1.06); }
.lot-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(36,87,255,.08), transparent 42%, rgba(16,18,22,.16)); }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; height: 2px; top: 24%; background: var(--blue); box-shadow: 0 0 28px rgba(36,87,255,.85); animation: scan 6s var(--ease) infinite alternate; }
@keyframes scan { from { top: 18%; } to { top: 82%; } }
.manifest-card { position: absolute; z-index: 4; left: 0; bottom: 0; width: min(390px,48%); padding: 24px; background: rgba(244,242,237,.96); border: 1px solid var(--ink); box-shadow: 18px 18px 0 rgba(36,87,255,.13); }
.manifest-top { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.manifest-card dl { margin: 18px 0; display: grid; gap: 10px; }
.manifest-card dl div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; }
.manifest-card dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.manifest-card dd { margin: 0; font-size: 12px; font-weight: 800; }
.manifest-card p { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.5; }
.lot-stack { position: absolute; z-index: -1; inset: 6% 0 20% 18%; }
.lot-stack span { position: absolute; width: 23%; aspect-ratio: .52; left: calc(var(--x) * 26%); top: calc(var(--y) * 32%); border: 1px solid rgba(16,18,22,.25); border-radius: 18px; transform: rotate(var(--r)); background: linear-gradient(150deg, rgba(255,255,255,.32), rgba(16,18,22,.02)); }
.lot-stack span::before { content:""; position:absolute; top:7%; left:8%; width:22%; aspect-ratio:1; border:1px solid rgba(16,18,22,.25); border-radius:50%; box-shadow: 14px 0 0 -1px var(--paper), 14px 0 0 0 rgba(16,18,22,.25); }
.hero-index { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.hero-index article { min-height: 126px; padding: 24px 28px; border-right: 1px solid var(--line); display: grid; align-content: center; gap: 12px; }
.hero-index article:last-child { border-right: 0; }
.hero-index strong { font-size: clamp(24px,2.2vw,38px); letter-spacing: -.04em; }
.hero-index span { max-width: 220px; color: var(--muted); font-size: 12px; line-height: 1.45; }

.proof { background: var(--paper); }
.proof-grid { display: grid; grid-template-columns: .9fr 1.05fr .55fr; gap: clamp(40px,7vw,110px); align-items: start; }
.proof h2 { margin: 0; max-width: 660px; font-size: clamp(50px,6vw,96px); line-height: .96; letter-spacing: -.06em; }
.proof-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(24px,2.5vw,38px); line-height: 1.25; letter-spacing: -.025em; }
.proof-copy p:not(.lead) { margin: 34px 0 0; max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.proof-note { border-top: 1px solid var(--ink); padding-top: 18px; }
.proof-note span { font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.proof-note p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.us-source { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.source-band { position: absolute; top: 38px; left: 0; white-space: nowrap; font-size: clamp(60px,9vw,142px); font-weight: 900; letter-spacing: -.055em; color: rgba(255,255,255,.035);  }
.source-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px 110px; }
.source-title h2 { margin: 0; max-width: 860px; font-size: clamp(54px,7.3vw,118px); line-height: .93; letter-spacing: -.065em; }
.source-copy { align-self: end; }
.source-copy p { margin: 0 0 24px; max-width: 620px; color: rgba(255,255,255,.64); font-size: 18px; line-height: 1.65; }
.origin-ledger { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 24px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.origin-ledger div { display: grid; gap: 8px; }
.origin-ledger span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.origin-ledger strong { font-size: clamp(20px,2.1vw,34px); font-weight: 700; }
.origin-ledger i { width: 70px; height: 1px; background: rgba(255,255,255,.28); position: relative; }
.origin-ledger i::after { content:""; position:absolute; right:0; top:-3px; width:7px; height:7px; border-top:1px solid rgba(255,255,255,.6); border-right:1px solid rgba(255,255,255,.6); transform:rotate(45deg); }

.capabilities { background: var(--paper); }
.capabilities-head { display: grid; grid-template-columns: .45fr 1.2fr; gap: 60px; margin-bottom: 70px; }
.capabilities h2 { margin: 0; font-size: clamp(52px,6vw,100px); line-height: .94; letter-spacing: -.06em; }
.capability-stage { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 720px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.capability-media { position: relative; overflow: hidden; background: var(--ink); }
.capability-media picture, .capability-media img { width: 100%; height: 100%; }
.capability-media img { object-fit: cover; filter: grayscale(1) contrast(1.14); transition: opacity .28s var(--ease), transform .8s var(--ease); }
.capability-media.is-switching img { opacity: .15; transform: scale(1.04); }
.capability-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 48%, rgba(16,18,22,.82)); }
.capability-caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; justify-content: space-between; align-items: end; color: var(--white); }
.capability-caption span { font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.capability-caption b { font-size: clamp(52px,7vw,110px); line-height: .72; letter-spacing: -.06em; }
.capability-list { border-left: 1px solid var(--ink); }
.capability-item { border-bottom: 1px solid var(--line); }
.capability-item:last-child { border-bottom: 0; }
.capability-item button { width: 100%; min-height: 128px; padding: 24px 34px; display: grid; grid-template-columns: 1fr .8fr auto; align-items: center; gap: 24px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.capability-item button span { font-size: clamp(24px,2.2vw,38px); font-weight: 800; letter-spacing: -.035em; }
.capability-item button small { color: var(--muted); font-size: 13px; line-height: 1.5; }
.capability-item button i { font-style: normal; font-size: 20px; }
.capability-item.is-active button { background: var(--ink); color: var(--white); }
.capability-item.is-active button small { color: rgba(255,255,255,.58); }
.capability-panel { padding: 0 34px 28px; background: var(--ink); color: rgba(255,255,255,.68); }
.capability-panel p { margin: 0; max-width: 580px; font-size: 15px; line-height: 1.65; }

.standard { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.standard-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px,9vw,150px); }
.standard-copy { position: sticky; top: 130px; align-self: start; }
.standard h2 { margin: 0; max-width: 610px; font-size: clamp(60px,7vw,112px); line-height: .91; letter-spacing: -.07em; }
.standard-copy > p:last-child { max-width: 480px; margin: 38px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.standard-board { border-top: 1px solid var(--ink); }
.standard-board article { min-height: 230px; padding: 36px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: .35fr 1fr; gap: 30px; align-content: start; }
.standard-board span { padding-top: 10px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.standard-board h3 { margin: 0; font-size: clamp(34px,4vw,64px); letter-spacing: -.05em; }
.standard-board p { grid-column: 2; margin: -74px 0 0; max-width: 560px; padding-top: 86px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.history { background: var(--paper); }
.history-grid { display: grid; grid-template-columns: .45fr 1.1fr .55fr; gap: clamp(42px,7vw,110px); align-items: start; }
.history-year { font-size: clamp(62px,8vw,126px); font-weight: 900; letter-spacing: -.08em; writing-mode: vertical-rl; transform: rotate(180deg); color: transparent; -webkit-text-stroke: 1px var(--line); }
.history h2 { margin: 0; font-size: clamp(50px,6vw,94px); line-height: .96; letter-spacing: -.06em; }
.history-copy > p:not(.eyebrow) { max-width: 760px; margin: 36px 0 30px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.history-stamp { padding: 26px; border: 1px solid var(--ink); display: grid; gap: 30px; transform: rotate(2deg); }
.history-stamp span { font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.history-stamp strong { font-size: 31px; line-height: 1.05; }
.history-stamp small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; line-height: 1.55; }

.contact { background: var(--blue); color: var(--white); }
.contact .eyebrow { color: rgba(255,255,255,.65); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px,10vw,170px); }
.contact h2 { margin: 0; max-width: 690px; font-size: clamp(64px,8vw,128px); line-height: .88; letter-spacing: -.07em; }
.contact-intro > p:not(.eyebrow) { max-width: 600px; margin: 38px 0; color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.65; }
.contact-direct { display: grid; gap: 11px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.28); font-size: 13px; }
.contact-form { padding: clamp(26px,4vw,54px); background: var(--paper); color: var(--ink); }
.contact-form fieldset { margin: 0 0 30px; padding: 0; border: 0; }
.contact-form legend, .contact-form label { font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.inquiry-switch label { display: inline-flex; margin: 10px 8px 0 0; }
.inquiry-switch input { position: absolute; opacity: 0; pointer-events: none; }
.inquiry-switch span { min-height: 44px; padding: 0 16px; display: inline-flex; align-items: center; border: 1px solid var(--line); cursor: pointer; }
.inquiry-switch input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form > label, .form-row label { display: grid; gap: 9px; margin-bottom: 18px; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; padding: 15px 2px; outline: none; color: var(--ink); text-transform: none; letter-spacing: normal; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 2px 0 var(--blue); }
.contact-form textarea { resize: vertical; min-height: 118px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-actions { display: flex; gap: 18px; align-items: center; margin-top: 26px; }
.form-status { min-height: 22px; margin: 0; font-size: 12px; line-height: 1.45; }
.form-status.is-error { color: #a01f1f; }
.form-status.is-success { color: #12613c; }

.site-footer { padding: 34px 0; background: var(--ink); color: rgba(255,255,255,.62); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1.2fr auto; gap: 34px; align-items: center; font-size: 11px; }
.wordmark-footer { color: var(--white); }
.footer-contact { display: grid; gap: 6px; }
.footer-grid p { margin: 0; line-height: 1.5; }
.footer-grid nav { display: flex; gap: 18px; }
.copyright { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }

.legal-page, .error-page { min-height: 75vh; padding: calc(var(--header) + 100px) 0 120px; }
.legal-article { max-width: 900px; }
.legal-article h1, .error-page h1 { margin: 0; font-size: clamp(60px,8vw,120px); line-height: .9; letter-spacing: -.07em; }
.legal-article h2 { margin-top: 54px; font-size: 28px; }
.legal-article p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.legal-updated { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.error-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; align-items: end; }
.error-code { margin: 0; font-size: clamp(120px,22vw,340px); line-height: .65; font-weight: 900; color: transparent; -webkit-text-stroke: 1px var(--line); }
.error-page h1 { max-width: 800px; }
.error-page p:not(.error-code) { color: var(--muted); font-size: 18px; margin-bottom: 30px; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

@media (max-width: 1120px) {
  :root { --frame: min(100% - 40px, 980px); }
  .desktop-nav, .header-action { display: none; }
  .header-grid { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 780px; padding-top: 34px; }
  .lot-visual { min-height: 700px; }
  .hero-index { grid-template-columns: repeat(2,1fr); }
  .hero-index article:nth-child(2) { border-right: 0; }
  .hero-index article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-note { grid-column: 2; }
  .source-grid { grid-template-columns: 1fr; }
  .origin-ledger { grid-column: auto; }
  .capabilities-head { grid-template-columns: 1fr; }
  .capability-stage { grid-template-columns: 1fr; }
  .capability-media { min-height: 560px; }
  .capability-list { border-left: 0; border-top: 1px solid var(--ink); }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-copy { position: static; }
  .history-grid { grid-template-columns: .25fr 1fr; }
  .history-stamp { grid-column: 2; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --frame: calc(100% - 28px); --header: 70px; }
  .section { padding: 86px 0; }
  .wordmark span { font-size: 20px; }
  .hero-ruler { grid-template-columns: repeat(2,1fr); }
  .hero-ruler span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-ruler span:nth-child(2) { border-right: 0; }
  .hero-grid { padding: 60px 0 38px; gap: 46px; }
  .hero h1 { font-size: clamp(72px,24vw,108px); }
  .hero-statement { margin-top: 30px; font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .lot-visual { min-height: 520px; }
  .lot-photo { inset: 2% 0 24% 5%; }
  .manifest-card { width: 82%; padding: 18px; box-shadow: 10px 10px 0 rgba(36,87,255,.13); }
  .lot-stack { display: none; }
  .hero-index { grid-template-columns: 1fr; }
  .hero-index article { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-index article:last-child { border-bottom: 0; }
  .proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-note { grid-column: auto; }
  .origin-ledger { grid-template-columns: 1fr; gap: 18px; }
  .origin-ledger i { width: 1px; height: 38px; margin-left: 4px; }
  .origin-ledger i::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .capability-media { min-height: 390px; }
  .capability-item button { grid-template-columns: 1fr auto; min-height: 110px; padding: 22px 18px; }
  .capability-item button small { grid-column: 1; }
  .capability-panel { padding: 0 18px 24px; }
  .capability-caption { left: 18px; right: 18px; }
  .standard-board article { grid-template-columns: 1fr; gap: 14px; }
  .standard-board p { grid-column: 1; margin: 0; padding: 0; }
  .history-grid { grid-template-columns: 1fr; }
  .history-year { writing-mode: initial; transform: none; font-size: 76px; }
  .history-stamp { grid-column: auto; }
  .contact h2 { font-size: clamp(62px,20vw,92px); }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-switch label { display: flex; margin-right: 0; }
  .inquiry-switch span { width: 100%; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .error-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
.lot-photo { transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .45s var(--ease); transform-origin: center; }
.source-band { right: 0; width: 100%; overflow: hidden; animation: driftText 24s linear infinite alternate; }
@keyframes driftText { from { text-indent: 0; } to { text-indent: -22%; } }
.inquiry-switch input { width: 1px; height: 1px; }
