/*
 * Sealed Energy premium system
 * This file is intentionally loaded last. It is the single visual authority
 * for the editorial home, Seal Machine, wallet surfaces and responsive states.
 */

:root {
  --obsidian: #07100f;
  --surface: #0d1715;
  --surface-raised: #13201e;
  --paper: #f3f0e8;
  --paper-deep: #e9e6dd;
  --ink: #07100f;
  --muted: #8d9995;
  --faint: #63706b;
  --cobalt: #038c8c;
  --cobalt-soft: #08a696;
  --cyan: #08a696;
  --lime: #08a696;
  --amber: #f28705;
  --coral: #f27405;
  --deep-current: #025159;
  --signal-teal: #038c8c;
  --living-teal: #08a696;
  --energy-orange: #f28705;
  --ember: #f27405;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: var(--font-geist-sans), "Helvetica Neue", Arial, sans-serif;
  --shadow-paper: 0 28px 75px rgba(7, 16, 15, .13);
  --shadow-dark: 0 34px 100px rgba(0, 0, 0, .30);
}


body {
  min-width: 320px;
  overflow-x: clip;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before { opacity: .025; background-size: 7px 7px; }
button { touch-action: manipulation; }

/* Header: one quiet control plane */
.app-header {
  height: 74px;
  padding-inline: clamp(20px, 4vw, 64px);
  border: 0;
  background: rgba(7, 16, 15, .90);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14);
}
.home-header {
  background: rgba(243, 240, 232, .92);
  box-shadow: 0 10px 36px rgba(7, 16, 15, .055);
}
.brand { display: inline-flex; align-items: center; gap: 11px; letter-spacing: 0; }
.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 11px;
  background: #050908 url('../public/se-symbol-transparent.png') center / 22px 37px no-repeat;
  box-shadow: 0 9px 24px rgba(7, 16, 15, .17);
}
.brand-lockup { display: grid; gap: 3px; margin: 0 !important; text-align: left; }
.brand-lockup b { color: var(--paper); font-size: 11px; line-height: 1; letter-spacing: .105em; font-weight: 670; }
.brand-lockup small { margin: 0; color: var(--cyan); font-size: 6px; line-height: 1; letter-spacing: .16em; }
.home-header .brand-lockup b { color: var(--ink); }
.home-header .brand-lockup small { color: var(--cobalt); }
.app-header nav { gap: 5px; }
.app-header nav button {
  min-width: 68px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 560;
  transition: color .2s ease, background .2s ease;
}
.app-header nav button::after { display: none; }
.app-header nav button.active { color: white; background: rgba(255, 255, 255, .075); }
.home-header nav button { color: #69736f; }
.home-header nav button:hover { color: var(--ink); }
.home-header nav button.active { color: white; background: var(--ink); }
.surface-state { border: 0; padding-right: 0; }
.surface-state > i { border: 0; background: rgba(8, 166, 150, .09); }
.home-header .surface-state b { color: var(--ink); }
.home-header .surface-state span { color: #68736f; }
.system-state, .avatar { border: 0; }
.system-state { background: rgba(255, 255, 255, .05); }
.home-header .system-state { color: #69736f; background: rgba(7, 16, 15, .055); }
.avatar { box-shadow: 0 10px 28px rgba(0, 0, 0, .16); }

/* Editorial home */
.landing-page { overflow: clip; background: var(--paper); color: var(--ink); }
.landing-page section,
.landing-page footer,
.landing-page button,
.landing-page article { border: 0; }
.landing-light { background: var(--paper); color: var(--ink); }
.landing-dark { background: var(--obsidian); color: var(--paper); }
.landing-wrap { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.landing-hero { position: relative; padding: 82px 0 138px; }
.landing-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -290px;
  top: -350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 166, 150, .15), transparent 67%);
  pointer-events: none;
}
.landing-kicker {
  color: var(--ink);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: -.02em;
  text-transform: none;
}
.landing-hero h1 {
  max-width: 1180px;
  margin: 5px 0 48px;
  font-family: var(--sans);
  font-size: clamp(86px, 11.6vw, 162px);
  font-weight: 480;
  letter-spacing: -.078em;
  line-height: .82;
}
.landing-hero h1 em { color: var(--ink); font-style: normal; }
.landing-lead {
  width: min(535px, 100%);
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}
.landing-lead p { margin: 0; color: #4e5b56; font-size: 15px; line-height: 1.5; letter-spacing: -.02em; }
.landing-cta {
  min-height: 52px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.landing-cta:hover { transform: translateY(-2px); }
.landing-cta.dark { background: var(--ink); color: var(--paper); box-shadow: 0 16px 38px rgba(7, 16, 15, .16); }
.landing-cta.cobalt { background: linear-gradient(135deg, var(--energy-orange), var(--ember)); color: var(--obsidian); box-shadow: 0 15px 38px rgba(242, 116, 5, .22); }
.landing-cta.lime { background: var(--lime); color: var(--ink); }

/* Exact, collision-proof editorial mosaic */
.product-collage {
  width: 100%;
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 370px 250px;
  grid-auto-flow: row;
  gap: 12px;
}
.product-collage > button {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 25px;
  border: 0;
  border-radius: 4px;
  text-align: left;
  box-shadow: var(--shadow-paper);
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease;
}
.product-collage > button:hover { transform: translateY(-3px); box-shadow: 0 34px 85px rgba(7, 16, 15, .16); }
.collage-main {
  grid-column: 1 / 8;
  grid-row: 1;
  color: white;
  background:
    radial-gradient(circle at 16% 12%, rgba(89, 220, 232, .36), transparent 31%),
    radial-gradient(circle at 82% 4%, rgba(41, 73, 217, .64), transparent 37%),
    linear-gradient(138deg, #17302d, #07100f 76%);
}
.collage-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(108deg, transparent 0 46%, rgba(89, 220, 232, .08) 47% 60%, transparent 61%);
}
.collage-main::after { content: ""; position: absolute; inset: 48% 0 0; z-index: -1; background: linear-gradient(transparent, rgba(3, 8, 7, .72)); }
.collage-copy { position: relative; z-index: 2; max-width: 58%; }
.collage-copy > span,
.collage-proof > span,
.collage-receipt > span,
.collage-rail > span,
.collage-licence > span { font-size: 8px; font-weight: 630; letter-spacing: .16em; text-transform: uppercase; }
.collage-copy h2 { margin: 58px 0 10px; font-family: var(--sans); font-size: clamp(42px, 4.6vw, 60px); font-weight: 500; line-height: .9; letter-spacing: -.06em; }
.collage-copy p { max-width: 205px; margin: 0; color: rgba(255, 255, 255, .65); font-size: 10px; line-height: 1.5; }
.collage-aperture {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 52px;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(7, 16, 15, .97) 0 59%, transparent 60%), conic-gradient(var(--lime) 0 86%, rgba(255, 255, 255, .12) 86%);
  box-shadow: 0 30px 75px rgba(0, 0, 0, .32);
}
.collage-aperture i { color: var(--lime); font-size: 8px; font-style: normal; letter-spacing: .14em; text-transform: uppercase; }
.collage-aperture strong { margin: 4px 0; font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: 1; }
.collage-aperture small { color: var(--cyan); letter-spacing: .15em; }
.collage-action { position: absolute; z-index: 4; right: 24px; bottom: 22px; min-width: 130px; padding: 13px 15px; border-radius: 999px; background: var(--lime); color: var(--ink); display: flex; justify-content: space-between; font-size: 10px; }
.collage-proof {
  grid-column: 8 / 13;
  grid-row: 1;
  color: var(--ink);
  background: radial-gradient(circle at 90% 8%, rgba(8, 166, 150, .28), transparent 35%), linear-gradient(145deg, #e8e6df, #b8dadd 80%);
}
.collage-proof::after { content: "Γ"; position: absolute; z-index: -1; right: -12px; bottom: -70px; color: rgba(3, 140, 140, .08); font-family: var(--serif); font-size: 280px; }
.collage-proof h3 { max-width: 360px; margin: 62px 0 30px; font-family: var(--sans); font-size: clamp(30px, 3vw, 42px); font-weight: 500; line-height: .96; letter-spacing: -.055em; }
.mini-evidence { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 25px; width: auto; padding: 14px; display: grid; grid-template-columns: 28px 1fr; gap: 2px 10px; border-radius: 14px; background: rgba(243, 240, 232, .88); box-shadow: 0 18px 48px rgba(7, 16, 15, .12); backdrop-filter: blur(12px); }
.mini-evidence i { grid-row: 1 / 3; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--cobalt); color: white; font-size: 9px; font-style: normal; }
.mini-evidence b { font-size: 10px; }
.mini-evidence small { color: #65716d; font-size: 8px; }
.collage-receipt { grid-column: 1 / 5; grid-row: 2; color: white; background: radial-gradient(circle at 88% 9%, rgba(8, 166, 150, .14), transparent 31%), linear-gradient(150deg, #0c1917, #07100f); }
.receipt-orbit { position: absolute; right: 24px; top: 22px; width: 64px; height: 64px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--lime); background: rgba(8, 166, 150, .055); box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .24); }
.collage-receipt h3 { margin: 58px 0 22px; font-family: var(--sans); font-size: clamp(25px, 2.5vw, 34px); font-weight: 500; line-height: .96; letter-spacing: -.045em; }
.collage-receipt code { color: var(--cyan); font-size: 9px; }
.collage-rail { display: block; grid-column: 5 / 9; grid-row: 2; color: var(--ink); background: linear-gradient(135deg, var(--cyan), var(--cobalt-soft)); }
.collage-rail > span { display: block; margin-bottom: 18px; }
.collage-rail > div { display: grid; grid-template-columns: 30px 1fr; gap: 8px; align-items: center; margin-top: 7px; padding: 8px 10px; border-radius: 10px; background: rgba(243, 240, 232, .56); }
.collage-rail > div.selected { background: var(--ink); color: white; }
.collage-rail i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .28); font-style: normal; }
.collage-rail b { font-size: 10px; }
.collage-licence { display: block; grid-column: 9 / 13; grid-row: 2; color: var(--ink); background: linear-gradient(140deg, #f2eee4, #d9e3de); }
.collage-licence strong { display: block; margin: 34px 0 18px; font-family: var(--serif); font-size: 41px; font-weight: 400; line-height: 1; }
.collage-licence > div { display: flex; justify-content: space-between; padding: 10px 0; background: rgba(7, 16, 15, .04); border-radius: 8px; padding-inline: 10px; }
.collage-licence small, .collage-licence b { font-size: 9px; }
.collage-licence em { display: block; margin-top: 13px; color: var(--cobalt); font-size: 10px; font-style: normal; }

/* Home sections */
.landing-process, .landing-integrate, .landing-use { padding: 138px 0; }
.landing-process { border: 0; }
.section-intro.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 105px; align-items: start; margin-bottom: 74px; }
.section-intro h2,
.integrate-copy h2 { margin: 0; font-family: var(--sans); font-size: clamp(64px, 7.7vw, 104px); font-weight: 500; line-height: .83; letter-spacing: -.075em; }
.section-intro h2 em { color: var(--cyan); font-style: normal; }
.section-intro.split > div p,
.section-intro.split > p,
.integrate-copy p { max-width: 510px; color: #53605b; font-size: 14px; line-height: 1.62; }
.process-list { display: grid; gap: 36px; }
.process-list article { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 54px; align-items: center; }
.process-copy small { color: #74807b; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.process-copy h3 { margin: 7px 0; font-family: var(--sans); font-size: 32px; font-weight: 520; letter-spacing: -.055em; }
.process-copy h3 span { color: var(--cobalt); }
.process-copy p { max-width: 195px; margin: 0; color: #5e6a66; font-size: 11px; line-height: 1.52; }
.process-visual { min-height: 182px; padding: 25px 35px; border: 0; border-radius: 999px; box-shadow: var(--shadow-paper); }
.process-visual.create { background: linear-gradient(105deg, #d8dfda, #8ed9d6 49%, #038c8c); }
.process-visual.witness { background: linear-gradient(105deg, #1b2523, #025159 54%, #f28705); }
.process-visual.seal { background: linear-gradient(105deg, #dda9a3, #11201e 57%, #07100f); }
.mock-window, .seal-mini { border: 0; }
.mock-window { background: var(--ink); box-shadow: 0 18px 45px rgba(0, 0, 0, .25); }
.witness-line::before { height: 3px; border-radius: 999px; }
.witness-line i { border: 0; box-shadow: 0 0 0 6px rgba(255, 255, 255, .54); }
.seal-mini { background: rgba(7, 16, 15, .58); box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .28); }
.process-visual.seal dl div { border: 0; margin-bottom: 5px; padding: 9px 11px; border-radius: 8px; background: rgba(255, 255, 255, .055); }
.landing-integrate { background: var(--paper-deep); }
.integrate-grid { grid-template-columns: .8fr 1.2fr; gap: 90px; }
.surface-orbit {
  position: relative;
  width: min(100%, 520px);
  height: 470px;
  margin-inline: auto;
  isolation: isolate;
}
.surface-orbit::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 12%;
  display: block;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 166, 150, .18), rgba(3, 140, 140, .08) 38%, transparent 70%);
  filter: blur(17px);
}
.surface-orbit::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 31%;
  display: block;
  border: 0;
  border-radius: 50%;
  background: rgba(3, 140, 140, .055);
  filter: blur(8px);
}
.orbit-core,
.orbit-node { position: absolute; border: 0; box-shadow: 0 22px 60px rgba(7, 16, 15, .11); }
.orbit-core {
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #1d302d, var(--ink) 68%);
  color: var(--lime);
  box-shadow: 0 30px 75px rgba(7, 16, 15, .25);
}
.orbit-core span { font-family: var(--serif); font-size: 50px; line-height: .8; }
.orbit-core small { margin-top: 14px; color: var(--cyan); font-size: 7px; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.orbit-node {
  z-index: 3;
  width: 154px;
  height: 76px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 10px;
  align-items: center;
  border-radius: 999px;
  background: rgba(243, 240, 232, .94);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.orbit-node i {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(3, 140, 140, .08);
  color: var(--cobalt);
  font-size: 17px;
  font-style: normal;
}
.orbit-node b { align-self: end; font-size: 10px; font-weight: 650; }
.orbit-node small { align-self: start; color: #71807a; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.orbit-mobile { left: 1%; top: 8%; }
.orbit-browser { right: 0; top: 17%; }
.orbit-workspace { left: 0; bottom: 11%; }
.orbit-server { right: 7%; bottom: 2%; }
.integrate-copy h2 { margin: 16px 0 28px; }
.integrate-chips span { padding: 10px 14px; border: 0; border-radius: 999px; background: rgba(3, 140, 140, .075); color: var(--cobalt); font-size: 9px; }
.landing-trust { padding: 135px 0 154px; background: radial-gradient(circle at 12% 0%, rgba(8, 166, 150, .28), transparent 30%), radial-gradient(circle at 79% 5%, rgba(242, 116, 5, .27), transparent 27%), radial-gradient(circle at 100% 0%, rgba(3, 140, 140, .34), transparent 29%), #050807; }
.section-intro.inverse > p { color: #9ca7a3; }
.trust-stage { margin-top: 72px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.trust-card { min-height: 450px; padding: 27px; border: 0; border-radius: 28px 28px 5px 5px; background: linear-gradient(155deg, rgba(21, 35, 32, .98), rgba(7, 16, 15, .98)); box-shadow: var(--shadow-dark); transform: none !important; }
.trust-card.solana { background: radial-gradient(circle at 72% 6%, rgba(3, 140, 140, .27), transparent 43%), linear-gradient(155deg, #142321, #07100f); }
.trust-symbol { border: 0; background: rgba(8, 166, 150, .035); color: var(--cyan); box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .25), 0 30px 80px rgba(0, 0, 0, .24); }
.trust-card.bitcoin .trust-symbol { color: var(--amber); box-shadow: inset 0 0 0 1px rgba(242, 135, 5, .28), 0 30px 80px rgba(0, 0, 0, .24); }
.trust-card h3 { font-family: var(--sans); font-weight: 500; letter-spacing: -.05em; }
.section-intro.centred { margin-bottom: 72px; }
.section-intro.centred h2 { margin-top: 14px; }
.use-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.use-grid > button { border: 0; background: transparent; }
.use-art { height: 280px; border: 0; border-radius: 3px; box-shadow: var(--shadow-paper); }
.use-art.authorship { background: radial-gradient(circle, var(--paper) 0 18%, transparent 19%), repeating-radial-gradient(circle, rgba(8, 166, 150, .7) 0 2px, #dce7e2 3px 17px); }
.use-art.licence { background: linear-gradient(135deg, var(--cyan), var(--cobalt)); }
.use-art.permanence { background: radial-gradient(circle at 70% 10%, rgba(3, 140, 140, .34), transparent 40%), linear-gradient(135deg, #13221f, var(--ink)); }
.use-grid h3 { min-height: 88px; font-family: var(--sans); font-size: 19px; font-weight: 520; letter-spacing: -.04em; }
.landing-conversion { min-height: 860px; padding: 124px 0 88px; background: radial-gradient(circle at 82% 16%, rgba(3, 140, 140, .29), transparent 29%), radial-gradient(circle at 100% 0%, rgba(8, 166, 150, .10), transparent 22%), #030504; }
.conversion-copy blockquote { font-family: var(--sans); font-weight: 500; letter-spacing: -.07em; }
.mobile-device { border: 0; background: radial-gradient(circle at 50% 18%, rgba(3, 140, 140, .17), transparent 32%), linear-gradient(170deg, #111d1b, #07100f); box-shadow: -42px 70px 140px rgba(0, 0, 0, .68); }
.device-top { grid-template-columns: auto 1fr auto; }
.device-top i { border: 0; background: rgba(255, 255, 255, .06); }
.device-aperture { border: 0; background: rgba(7, 16, 15, .72); box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .30), 0 24px 68px rgba(0, 0, 0, .28); }
.landing-footer { border: 0; padding-bottom: 100px; }

/* Product shell: depth and tone replace drawn boxes */
.app-shell { background: radial-gradient(circle at 76% -9%, rgba(3, 140, 140, .14), transparent 31%), var(--obsidian); }
.step-shell::before { display: none; }
.step-shell button i { border: 0; background: rgba(255, 255, 255, .05); }
.step-shell button.done i { color: var(--lime); background: rgba(8, 166, 150, .07); }
.step-shell button.active i { color: white; background: var(--cobalt); box-shadow: 0 10px 28px rgba(3, 140, 140, .3); }
.workspace { width: min(1180px, calc(100% - 48px)); }
.page-intro h1,
.flow-heading h1,
.complete-screen h1,
.sealing-screen h1,
.library-heading h1 { font-family: var(--sans); font-weight: 500; letter-spacing: -.065em; }
.panel,
.rail-card,
.destination-footer,
.seal-row,
.profile-card,
.continuity-card,
.settings-card,
.fund-card,
.core-card,
.receipt-drawer { border: 0; background: linear-gradient(145deg, rgba(19, 32, 30, .98), rgba(8, 15, 14, .99)); box-shadow: 0 26px 74px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .025); }
.panel { border-radius: 22px; }
.field input,
.field textarea,
.licence-settings input,
.licence-settings select,
.storage-select select,
.settings-card select,
.search { border: 0; background: rgba(255, 255, 255, .052); box-shadow: none; }
.field input:focus,
.field textarea:focus,
.licence-settings input:focus,
.licence-settings select:focus,
.storage-select select:focus,
.settings-card select:focus,
.search:focus-within { outline: 2px solid var(--cyan); outline-offset: 2px; box-shadow: 0 0 0 6px rgba(8, 166, 150, .07); }
.evidence-list { display: grid; gap: 8px; overflow: visible; border: 0; }
.evidence-list > div { border: 0; border-radius: 11px; background: rgba(255, 255, 255, .035); }
.evidence-list > div > i { border: 0; background: rgba(8, 166, 150, .07); }
.capture-strip { border: 0; background: rgba(3, 140, 140, .075); }
.seal-aperture::before, .seal-aperture::after { border: 0; }
.seal-aperture > div { border: 0; box-shadow: none; }
.seal-aperture.insufficient { background: conic-gradient(var(--amber) var(--score), #202a27 0); box-shadow: 0 0 70px rgba(242, 135, 5, .10); }
.seal-aperture.insufficient small, .seal-aperture.insufficient span { color: var(--amber); }
.plain-checks { padding: 0; border: 0; display: grid; gap: 8px; }
.plain-checks span { padding: 11px 12px; border-radius: 10px; background: rgba(255, 255, 255, .034); }
.button { min-height: 52px; border: 0; border-radius: 12px; }
.button.primary { background: linear-gradient(115deg, var(--energy-orange), var(--ember)); color: var(--obsidian); box-shadow: 0 16px 40px rgba(242, 116, 5, .24); }
.button.secondary, .icon-button { border: 0; background: rgba(255, 255, 255, .06); }
.summary-banner { border: 0; padding: 18px; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.mini-seal, .rail-mark, .row-mark, .profile-avatar { border: 0; background: rgba(8, 166, 150, .06); box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .22); color: var(--cyan); }
.review-facts { border: 0; gap: 8px; margin-top: 9px; }
.review-facts > div { border: 0; padding: 14px !important; border-radius: 11px; background: rgba(255, 255, 255, .03); }
.choice-stack button,
.identity-option,
.after-seal button,
.surface-grid button,
.filters button { border: 0; background: rgba(255, 255, 255, .045); box-shadow: none; }
.choice-stack button.selected,
.identity-option.selected,
.rail-card.selected,
.filters button.active { border: 0; background: linear-gradient(135deg, rgba(3, 140, 140, .24), rgba(8, 166, 150, .07)); box-shadow: 0 18px 44px rgba(0, 0, 0, .18); }
.licence-settings { border: 0; background: rgba(242, 135, 5, .055); }
.licence-settings label > div { border: 0; }
.licence-settings label > div span { border: 0; background: rgba(242, 135, 5, .06); }
.side-summary dl, .receipt-drawer dl { display: grid; gap: 7px; }
.side-summary dl div, .receipt-drawer dl div { border: 0; padding: 12px; border-radius: 10px; background: rgba(255, 255, 255, .03); }
.privacy-note, .authorization-note, .verification-banner { border: 0; border-radius: 11px; background: rgba(8, 166, 150, .045); }
.rail-grid { gap: 14px; }
.rail-card { border-radius: 22px; }
.rail-card:hover { border: 0; transform: translateY(-3px); }
.rail-card footer { border: 0; }
.destination-footer { border-radius: 18px; }
.quote-chip { border: 0; }
.fee-title { border: 0; }
.fee-lines { display: grid; gap: 7px; }
.fee-lines > div { border: 0; padding: 13px; border-radius: 10px; background: rgba(255, 255, 255, .032); }
.net-receive { border: 0; background: rgba(8, 166, 150, .065); }
.identity-option > i { border: 0; background: rgba(8, 166, 150, .065); }
.sealing-aperture > div { border: 0; }
.sealing-steps { display: grid; gap: 7px; border: 0; overflow: visible; }
.sealing-steps > div { border: 0; border-radius: 11px; background: rgba(255, 255, 255, .03); }
.completed-seal {
  width: 214px;
  height: 214px;
  margin-bottom: 34px;
  border: 0;
  border-radius: 50%;
  isolation: isolate;
  box-shadow: none !important;
  animation: sealArrival .78s cubic-bezier(.16, 1, .3, 1) both;
}
.completed-seal::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 67% 35%, rgba(8, 166, 150, .20), transparent 26%),
    radial-gradient(circle at 31% 70%, rgba(8, 166, 150, .18), transparent 31%);
  filter: blur(18px);
  opacity: .8;
  animation: sealHaloBreathe 4.8s 1s ease-in-out infinite;
}
.completed-seal::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 214deg, transparent 0 22%, rgba(8, 166, 150, .58) 31%, rgba(8, 166, 150, .92) 39%, transparent 50% 79%, rgba(8, 166, 150, .34) 86%, transparent 94%);
  -webkit-mask: radial-gradient(circle, transparent 0 86%, #000 87% 88.5%, transparent 89.5%);
  mask: radial-gradient(circle, transparent 0 86%, #000 87% 88.5%, transparent 89.5%);
  filter: blur(.4px);
  opacity: .78;
  pointer-events: none;
  animation: sealArcSettle 1.35s .12s cubic-bezier(.16, 1, .3, 1) both;
}
.seal-rings {
  position: relative;
  height: 100%;
  overflow: visible;
  border: 0;
  background:
    radial-gradient(circle at 48% 39%, rgba(24, 48, 43, .92), rgba(9, 22, 20, .98) 62%, rgba(7, 16, 15, .18) 76%, transparent 77%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .27);
}
.seal-rings::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 166, 150, .09), transparent 66%);
  filter: blur(6px);
  opacity: 0;
  animation: sealCoreBloom 1s .45s ease-out both;
}
.seal-energy-mark {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 82px;
  display: block;
  margin: 0 0 10px;
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #e5fffb 58%, #a6f3e7 100%);
  -webkit-mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(8, 166, 150, .18));
  box-shadow: none;
  color: transparent !important;
  font-size: 0 !important;
  animation: sealMarkReveal .9s .36s cubic-bezier(.16, 1, .3, 1) both, sealMarkBreathe 4.6s 1.4s ease-in-out infinite;
}
.seal-protocol { position: relative; z-index: 2; margin-top: 0 !important; font-size: 11px !important; letter-spacing: .22em !important; animation: sealDetailIn .5s .72s ease both; }
.seal-rings b { position: relative; z-index: 2; margin-top: 7px; animation: sealDetailIn .5s .86s ease both; }
.complete-screen { max-width: 820px; padding-top: clamp(28px, 5vh, 48px); }
.complete-screen h1 { margin-top: 18px; }
.receipt-summary { gap: 8px; overflow: visible; }
.receipt-summary > div { border: 0; border-radius: 10px; background: rgba(255, 255, 255, .033); }
.after-seal { gap: 9px; }
.after-seal button { border-radius: 12px; }
.library-tools { gap: 14px; }
.seal-table { display: grid; gap: 8px; overflow: visible; border: 0; background: transparent; box-shadow: none; }
.seal-row { min-height: 72px; border-radius: 13px; background: rgba(255, 255, 255, .032); }
.seal-row.head { min-height: 38px; background: transparent; box-shadow: none; }
button.seal-row:hover { background: rgba(3, 140, 140, .11); }
.settings-card > button, .connection-state, .core-card dl div { border: 0; }
.settings-card > button { margin-bottom: 7px; padding: 13px; border-radius: 10px; background: rgba(255, 255, 255, .03); }
.settings-card > button > i { border: 0; background: rgba(8, 166, 150, .06); }
.connection-state { padding: 13px; border-radius: 10px; background: rgba(255, 255, 255, .03); }
.core-card dl { display: grid; gap: 7px; }
.core-card dl div { padding: 11px; border-radius: 9px; background: rgba(255, 255, 255, .03); }
.profile-card > button, .fund-card > button, .core-card > button { border: 0; background: rgba(255, 255, 255, .055); }
.app-footer { border: 0; }
.receipt-drawer { border: 0; box-shadow: -35px 0 100px rgba(0, 0, 0, .43); }
.close { border: 0; background: rgba(255, 255, 255, .055); }
.drawer-seal { border: 0; background: rgba(8, 166, 150, .035); box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .25); }
.drawer-energy-mark {
  width: 40px;
  height: 52px;
  margin-bottom: 7px;
  border-radius: 0;
  background: linear-gradient(180deg, #fff, #b9f5eb);
  -webkit-mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  color: transparent !important;
  font-size: 0 !important;
}
.receipt-drawer details { border: 0; padding: 15px; border-radius: 11px; background: rgba(255, 255, 255, .03); }
.toast { border: 0; background: #17211f; }

/* Evidence-bound system and recovery journeys */
.service-banner {
  position: sticky;
  z-index: 56;
  top: 74px;
  min-height: 58px;
  padding: 10px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #2b2117;
  color: #f8ead7;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
}
.service-banner > span { display: grid; grid-template-columns: 30px auto; grid-template-rows: auto auto; column-gap: 11px; }
.service-banner i { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(242, 135, 5, .14); color: var(--amber); font-style: normal; }
.service-banner b, .service-banner small { display: block; }
.service-banner b { font-size: 10px; }
.service-banner small { margin-top: 3px; color: #c8b9a5; font-size: 8px; }
.service-banner button { min-height: 36px; padding: 0 14px; border: 0; border-radius: 999px; background: var(--amber); color: #1b140d; font-size: 9px; font-weight: 680; cursor: pointer; }
.panel-top em.expired { color: var(--coral); }
.quote-refresh { background: linear-gradient(115deg, #b54d44, var(--coral)) !important; box-shadow: 0 16px 40px rgba(255, 113, 104, .18) !important; }
.button:disabled, .verify-field button:disabled { opacity: .55; cursor: wait; }

.failure-screen { max-width: 790px; padding-top: 70px; text-align: center; }
.failure-mark { width: 150px; height: 150px; margin: 0 auto 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: radial-gradient(circle at 50% 35%, rgba(255, 113, 104, .12), rgba(255, 113, 104, .035)); box-shadow: inset 0 0 0 1px rgba(255, 113, 104, .23), 0 28px 80px rgba(0, 0, 0, .22); }
.failure-mark i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 113, 104, .12); color: var(--coral); font-family: var(--serif); font-size: 26px; font-style: normal; }
.failure-mark span { margin-top: 13px; color: var(--coral); font-size: 8px; font-weight: 680; letter-spacing: .15em; text-transform: uppercase; }
.failure-screen h1 { margin: 17px 0; font-family: var(--sans); font-size: clamp(46px, 6vw, 72px); font-weight: 500; letter-spacing: -.065em; line-height: .96; }
.failure-screen > p { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 14px; line-height: 1.6; }
.failure-facts { margin: 34px auto 18px; padding: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: left; }
.failure-facts span { padding: 14px; border-radius: 11px; background: rgba(255, 255, 255, .032); }
.failure-facts small, .failure-facts b { display: block; }
.failure-facts small { color: var(--faint); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.failure-facts b { margin-top: 6px; color: #d2d8d5; font-size: 10px; }
.failure-actions { display: flex; justify-content: center; gap: 9px; }
.library-actions { display: flex; gap: 9px; }

.drawer-intro { margin: 0 0 25px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.verify-field { display: block; color: var(--muted); font-size: 8px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.verify-field > div { height: 54px; margin-top: 9px; padding: 6px; display: grid; grid-template-columns: 1fr auto; gap: 6px; border-radius: 13px; background: rgba(255, 255, 255, .05); }
.verify-field input { min-width: 0; padding: 0 12px; border: 0; outline: 0; background: transparent; color: white; font-family: var(--font-geist-mono); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.verify-field button { min-width: 96px; border: 0; border-radius: 9px; background: var(--cobalt); color: white; font-size: 10px; font-weight: 670; cursor: pointer; }
.verify-guidance, .verify-progress, .boundary-card { margin-top: 18px; padding: 16px; display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; border-radius: 12px; background: rgba(255, 255, 255, .032); }
.verify-guidance > i, .boundary-card > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(8, 166, 150, .07); color: var(--cyan); font-style: normal; }
.verify-guidance b, .verify-guidance small, .boundary-card b, .boundary-card small { display: block; }
.verify-guidance b, .boundary-card b { font-size: 10px; }
.verify-guidance small, .boundary-card small { margin-top: 5px; color: var(--muted); font-size: 8px; line-height: 1.5; }
.verify-progress { grid-template-columns: 20px 1fr; color: #c8d0cd; font-size: 10px; }
.verify-progress i { width: 16px; height: 16px; border-radius: 50%; background: conic-gradient(var(--cyan), transparent); animation: rotate 1s linear infinite; }
.verify-result { margin-top: 18px; padding: 22px; border-radius: 15px; background: rgba(255, 255, 255, .034); }
.verify-result.success { background: linear-gradient(145deg, rgba(8, 166, 150, .07), rgba(8, 166, 150, .025)); }
.verify-result.not-found { background: rgba(255, 113, 104, .045); }
.verify-result-mark { width: 52px; height: 52px; margin-bottom: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(8, 166, 150, .08); color: var(--lime); font-family: var(--serif); font-size: 24px; }
.not-found .verify-result-mark { background: rgba(255, 113, 104, .09); color: var(--coral); }
.verify-result > small { color: var(--lime); font-size: 7px; font-weight: 680; letter-spacing: .14em; }
.not-found > small { color: var(--coral); }
.verify-result h3 { margin: 8px 0 16px; font-family: var(--sans); font-size: 23px; font-weight: 520; letter-spacing: -.04em; line-height: 1.08; }
.verify-result > p { color: var(--muted); font-size: 9px; line-height: 1.6; }
.verify-result dl { margin: 0 0 18px; display: grid; gap: 7px; }
.verify-result dl div { padding: 11px; display: flex; justify-content: space-between; gap: 15px; border-radius: 9px; background: rgba(255, 255, 255, .035); }
.verify-result dt { color: var(--faint); font-size: 8px; }
.verify-result dd { margin: 0; color: #d2d9d6; font-size: 9px; text-align: right; }
.prototype-boundary { margin: 18px 0 0; color: var(--faint); font-size: 8px; line-height: 1.55; }

.licence-hero { margin: 24px 0; padding: 18px; display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; border-radius: 14px; background: rgba(255, 255, 255, .035); }
.licence-hero .rail-mark { width: 52px; height: 52px; }
.licence-hero small { color: var(--lime); font-size: 7px; letter-spacing: .13em; }
.licence-hero h2 { margin: 5px 0 !important; font-size: 23px !important; }
.licence-hero code { color: var(--cyan); font-size: 8px; }
.licence-metrics { margin-bottom: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.licence-metrics span { min-width: 0; padding: 14px 11px; border-radius: 10px; background: rgba(255, 255, 255, .033); }
.licence-metrics small, .licence-metrics b { display: block; }
.licence-metrics small { color: var(--faint); font-size: 7px; text-transform: uppercase; }
.licence-metrics b { margin-top: 7px; font-size: 10px; overflow: hidden; text-overflow: ellipsis; }
.licence-empty { margin-bottom: 18px; padding: 24px; border-radius: 14px; background: rgba(255, 255, 255, .03); text-align: center; }
.licence-empty > i { color: var(--cyan); font-size: 28px; font-style: normal; }
.licence-empty h3 { margin: 10px 0 7px; font-family: var(--sans); font-size: 20px; font-weight: 520; }
.licence-empty p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.boundary-card { align-items: start; background: rgba(242, 135, 5, .05); }
.boundary-card > i { background: rgba(242, 135, 5, .10); color: var(--amber); }

/* Stable journey stage: the action never moves between steps. */
html { scrollbar-gutter: stable; }
.journey-screen {
  min-height: calc(100dvh - 156px);
  padding-bottom: 172px;
  animation: journeyReveal .34s cubic-bezier(.2, .8, .2, 1) both;
}
.readiness-card > .button.primary,
.side-summary > .button.primary,
.destination-footer > .button.primary,
.identity-card > .button.primary { display: none; }
.complete-actions .button:first-child,
.failure-actions { display: none; }
.seal-action-dock {
  position: fixed;
  z-index: 86;
  left: 50%;
  bottom: 24px;
  width: min(720px, calc(100% - 48px));
  min-height: 74px;
  padding: 9px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 20px;
  background: rgba(13, 23, 21, .94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .52);
  backdrop-filter: blur(24px);
}
.seal-action-dock .dock-back,
.dock-back-spacer {
  width: 54px;
  flex: 0 0 54px;
  border: 0;
  border-radius: 13px;
}
.seal-action-dock .dock-back { background: rgba(255, 255, 255, .06); color: #cbd4d0; font-size: 18px; cursor: pointer; }
.dock-back-spacer { display: block; background: rgba(255, 255, 255, .018); }
.seal-action-dock .dock-primary {
  min-width: 0;
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(115deg, var(--energy-orange), var(--ember));
  color: var(--obsidian);
  text-align: left;
  box-shadow: 0 14px 38px rgba(3, 140, 140, .28);
  cursor: pointer;
}
.seal-action-dock .dock-primary span,
.seal-action-dock .dock-primary small,
.seal-action-dock .dock-primary b { display: block; }
.seal-action-dock .dock-primary small { opacity: .68; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.seal-action-dock .dock-primary b { max-width: none; margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.seal-action-dock .dock-primary > i { font-size: 18px; font-style: normal; }

/* Declared commitment: neutral at creation, class-specific when sealed. */
.spl-invoice {
  --invoice-ink: #061311;
  --invoice-muted: #667078;
  --invoice-blue: #176b80;
  --invoice-teal: #08a696;
  width: 100%;
  margin-bottom: 28px;
  padding: clamp(24px, 3.5vw, 46px);
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 7% 92%, rgba(8, 166, 150, .055), transparent 23%),
    linear-gradient(145deg, #fffefa, #f7faf9);
  color: var(--invoice-ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}
.spl-invoice.review, .spl-invoice.sealed { margin: 26px 0; }
.spl-invoice.sealed { box-shadow: 0 38px 110px rgba(8, 166, 150, .13); }
.spl-invoice-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 34px; }
.invoice-issuer { min-width: 0; display: flex; align-items: center; gap: 15px; }
.invoice-issuer > .commitment-energy-mark { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 16px; background: #050908 url('../public/se-symbol-transparent.png') center / 30px 48px no-repeat; box-shadow: 0 16px 36px rgba(6, 19, 17, .18); }
.commitment-issuer-copy { min-width: 0; display: grid; gap: 4px; }
.commitment-issuer-copy > small { color: var(--invoice-teal); font-size: 10px; font-weight: 720; letter-spacing: .13em; text-transform: uppercase; }
.invoice-title { min-width: min(100%, 350px); display: grid; justify-items: end; gap: 7px; }
.invoice-title > span { max-width: 420px; color: var(--invoice-ink); font-size: clamp(27px, 2.8vw, 43px); font-weight: 760; letter-spacing: -.055em; line-height: .92; text-align: right; }
.invoice-title .invoice-field { width: 210px; text-align: right; }
.commitment-class-control { width: 210px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.commitment-class-control > span { color: var(--invoice-muted); font-size: 10px; font-weight: 680; letter-spacing: .09em; text-transform: uppercase; }
.commitment-class-control select { min-width: 118px; min-height: 38px; padding: 0 32px 0 12px; border: 0; border-radius: 10px; outline: 0; background: rgba(6, 26, 45, .055); color: var(--invoice-ink); font: inherit; font-size: 13px; font-weight: 680; cursor: pointer; }
.commitment-class-control select:focus { box-shadow: 0 0 0 3px rgba(8, 166, 150, .16); }
.commitment-class-control select:disabled { appearance: none; padding-right: 12px; color: var(--invoice-teal); cursor: default; opacity: 1; }
.invoice-field { min-width: 0; display: grid; gap: 4px; }
.invoice-field > span { color: var(--invoice-muted); font-size: 10px; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; }
.invoice-field input {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 4px 7px;
  border: 0;
  border-radius: 7px;
  outline: 0;
  background: rgba(6, 26, 45, .035);
  color: var(--invoice-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 590;
  transition: background .2s ease, box-shadow .2s ease;
}
.invoice-field input:hover { background: rgba(6, 26, 45, .065); }
.invoice-field input:focus { background: white; box-shadow: 0 0 0 3px rgba(8, 121, 184, .18), 0 10px 26px rgba(6, 26, 45, .08); }
.invoice-field input[aria-invalid="true"] { background: rgba(255, 113, 104, .1); box-shadow: 0 0 0 2px rgba(255, 113, 104, .24); }
.spl-invoice.review .invoice-field input,
.spl-invoice.sealed .invoice-field input { padding-inline: 0; background: transparent; pointer-events: none; }
.invoice-issuer .invoice-field > span { display: block; }
.invoice-issuer .invoice-field input { min-height: 45px; padding: 0; background: transparent; font-size: clamp(25px, 2.8vw, 39px); font-weight: 720; letter-spacing: -.045em; }
.invoice-issuer-line { margin: 26px 0; display: grid; grid-template-columns: 1.6fr 1fr .65fr; gap: 9px; }
.invoice-parties { margin-bottom: 25px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, .56fr); gap: 14px; }
.invoice-party-card, .invoice-due-card { padding: 18px; border-radius: 16px; background: linear-gradient(145deg, rgba(8, 166, 150, .075), rgba(23, 107, 128, .035)); }
.invoice-party-card { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.invoice-party-card > small, .invoice-due-card > small { grid-column: 1 / -1; color: var(--invoice-ink); font-size: 11px; font-weight: 720; }
.invoice-due-card { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 14px; }
.invoice-due-card > strong { color: var(--invoice-teal); font-size: 12px; white-space: nowrap; }
.invoice-line-head { min-height: 44px; padding: 0 14px; display: grid; grid-template-columns: minmax(0, 2fr) 82px 120px 128px; align-items: center; gap: 10px; border-radius: 11px; background: var(--invoice-ink); color: white; font-size: 10px; font-weight: 720; letter-spacing: .06em; text-transform: uppercase; }
.invoice-line-item { min-height: 76px; padding: 12px 14px; display: grid; grid-template-columns: minmax(0, 2fr) 82px 120px 128px; align-items: center; gap: 10px; border-radius: 12px; }
.invoice-line-item:nth-of-type(2n) { background: rgba(6, 26, 45, .026); }
.invoice-line-item .invoice-field > span { display: none; }
.invoice-line-item output { color: var(--invoice-ink); font-size: 14px; font-weight: 720; text-align: right; }
.invoice-line-item.operational > div { display: grid; gap: 4px; }
.invoice-line-item.operational > div small { color: var(--invoice-teal); font-size: 9px; font-weight: 710; letter-spacing: .08em; text-transform: uppercase; }
.invoice-line-item.operational > div strong { font-size: 13px; font-weight: 580; }
.invoice-line-item.operational > span { color: var(--invoice-muted); font-size: 13px; text-align: center; }
.invoice-totals { margin: 8px 0 28px auto; width: min(100%, 430px); display: grid; gap: 4px; }
.invoice-totals > span { min-height: 38px; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 9px; }
.invoice-totals small { color: var(--invoice-muted); font-size: 11px; }
.invoice-totals strong { font-size: 13px; }
.invoice-totals .grand-total { min-height: 56px; background: linear-gradient(90deg, rgba(8, 121, 184, .08), rgba(6, 155, 138, .12)); }
.invoice-totals .grand-total small { color: var(--invoice-ink); font-size: 14px; font-weight: 720; text-transform: uppercase; }
.invoice-totals .grand-total strong { font-size: 25px; letter-spacing: -.035em; }
.invoice-settlement { display: grid; grid-template-columns: 1.2fr .9fr; gap: 14px; }
.invoice-payment-panel, .invoice-provenance-panel { min-width: 0; padding: 17px; border-radius: 17px; background: rgba(6, 26, 45, .045); }
.invoice-payment-copy small, .invoice-payment-copy strong { display: block; }
.invoice-payment-copy small, .invoice-provenance-panel small { color: var(--invoice-teal); font-size: 10px; font-weight: 710; letter-spacing: .1em; text-transform: uppercase; }
.invoice-payment-copy strong { margin-top: 5px; font-size: 14px; }
.invoice-rail-options { margin: 14px 0 12px; display: flex; gap: 7px; }
.invoice-rail-options button { min-height: 42px; padding: 0 13px; display: flex; align-items: center; gap: 8px; border: 0; border-radius: 11px; background: white; color: var(--invoice-ink); font: inherit; font-size: 11px; font-weight: 650; box-shadow: 0 9px 24px rgba(6, 26, 45, .06); cursor: pointer; }
.invoice-rail-options button i { color: var(--invoice-blue); font-family: var(--serif); font-size: 18px; font-style: normal; }
.invoice-rail-options button.selected { background: var(--invoice-ink); color: white; }
.invoice-rail-options button:disabled { cursor: default; }
.invoice-payment-fields { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8px; }
.invoice-provenance-panel { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; }
.invoice-provenance-panel > div:last-child { min-width: 0; display: grid; gap: 6px; }
.invoice-provenance-panel code { overflow: hidden; color: var(--invoice-blue); font-size: 10px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.invoice-document-footer { margin-top: 23px; min-height: 44px; padding: 0 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--invoice-muted); }
.invoice-document-footer span { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.invoice-document-footer span i { width: 8px; height: 8px; border-radius: 50%; background: var(--invoice-teal); box-shadow: 0 0 0 5px rgba(6, 155, 138, .1); }
.invoice-document-footer strong { color: var(--invoice-teal); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 760px) {
  .spl-invoice { padding: 22px 16px; border-radius: 19px; }
  .spl-invoice-header { flex-direction: column; gap: 24px; }
  .invoice-issuer > .commitment-energy-mark { width: 48px; height: 48px; flex-basis: 48px; border-radius: 14px; background-size: 25px 40px; }
  .invoice-title { width: 100%; min-width: 0; justify-items: start; }
  .invoice-title > span { max-width: none; font-size: 29px; text-align: left; }
  .invoice-title .invoice-field, .commitment-class-control { width: 100%; text-align: left; }
  .commitment-class-control select { flex: 1; }
  .invoice-issuer .invoice-field input { font-size: 22px; }
  .invoice-issuer-line, .invoice-parties, .invoice-settlement { grid-template-columns: 1fr; }
  .invoice-party-card { grid-template-columns: 1fr; }
  .invoice-line-head { display: none; }
  .invoice-line-item { margin-top: 9px; padding: 15px; grid-template-columns: 1fr 86px; gap: 10px; background: rgba(6, 26, 45, .035); }
  .invoice-line-item .invoice-field:first-child, .invoice-line-item.operational > div { grid-column: 1 / -1; }
  .invoice-line-item output { align-self: end; }
  .invoice-line-item.operational > span { display: none; }
  .invoice-payment-fields { grid-template-columns: 1fr; }
  .invoice-provenance-panel { grid-template-columns: minmax(0, 1fr); }
  .invoice-document-footer { align-items: flex-start; flex-direction: column; gap: 9px; }
}

/* Final Exchange and Home alignment: preserve frames, strengthen their contents. */
@media (min-width: 901px) {
  .exchange-surface-markets .market-row {
    grid-template-columns: 72px minmax(0, 1fr) 92px;
    gap: 14px;
  }
  .exchange-surface-markets .market-row-image { width: 72px; height: 72px; }
  .exchange-surface-markets .market-row-main > span:first-child { gap: 10px; }
  .exchange-surface-markets .market-row-main b { font-size: 16px; line-height: 1.15; }
  .exchange-surface-markets .market-row-main em { font-size: 11px; letter-spacing: .1em; }
  .exchange-surface-markets .market-row-main > small { margin-top: 6px; font-size: 12px; }
  .exchange-surface-markets .market-row-meta { margin-top: 10px; gap: 6px; overflow: visible; }
  .exchange-surface-markets .market-row-meta i { padding: 5px 7px; font-size: 10px; }
  .exchange-surface-markets .market-row-value b { font-size: 21px; }
  .exchange-surface-markets .market-row-value small { margin-top: 6px; font-size: 10px; line-height: 1.3; }
  .exchange-surface-markets .market-row-value > span { height: 6px; margin-top: 13px; }
}

.cycle-principles:first-child { margin-top: 0; }
.cycle-principles + .cycle-opening { margin-top: clamp(90px, 9vw, 140px); }

/* Seal Exchange uses the same editorial landing grammar as Home. */
.exchange-marketing {
  width: 100%;
  margin: 0;
  padding: 0 0 140px;
}
.exchange-marketing-hero {
  width: min(1440px, calc(100% - (var(--viewport-gutter) * 2)));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(86px, 7vw, 124px) 0 var(--space-section);
  display: block;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}
.exchange-marketing-copy h1 {
  max-width: 1380px;
  margin: 12px 0 clamp(46px, 5vw, 76px);
  font-size: clamp(82px, 10.4vw, 168px);
  line-height: .84;
}
.exchange-marketing-copy h1 em { color: var(--ink); }
.exchange-marketing-copy > p,
.exchange-marketing-actions {
  width: min(690px, 100%);
  margin-left: auto;
}
.exchange-marketing-copy > p { color: #4e5b56; font-size: var(--type-body-large); }
.exchange-marketing-actions { margin-top: 30px; }
.exchange-marketing-actions a { color: #4e5b56; }
.exchange-marketing-visual {
  min-height: clamp(520px, 42vw, 680px);
  margin-top: clamp(72px, 7vw, 112px);
  border-radius: 10px;
  box-shadow: 0 36px 100px rgba(7, 16, 15, .18);
}
.exchange-marketing-ticket { border-radius: 10px; }
.exchange-story-banners {
  width: min(1440px, calc(100% - (var(--viewport-gutter) * 2)));
  margin: 0 auto;
  padding: var(--space-section) 0 0;
  gap: 0;
}
.exchange-story-banner,
.exchange-story-banner.reverse {
  min-height: 720px;
  grid-template-columns: minmax(420px, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 7vw, 120px);
  overflow: visible;
  border-top: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.exchange-story-banner.reverse { grid-template-columns: minmax(0, 1.28fr) minmax(420px, .72fr); }
.exchange-story-banner.reverse .exchange-story-image { order: 2; }
.exchange-story-image {
  min-height: 360px;
  height: 360px;
  align-self: center;
  overflow: hidden;
  border-radius: 999px;
}
.exchange-story-image::after,
.exchange-story-banner.reverse .exchange-story-image::after { background: linear-gradient(90deg, transparent 58%, rgba(7, 16, 15, .3)); }
.exchange-story-banner > div:last-child { padding: clamp(40px, 5vw, 76px) 0; }
.exchange-story-banner h2 { max-width: 760px; font-size: clamp(64px, 6.8vw, 108px); line-height: .88; }
.exchange-story-banner p { max-width: 690px; font-size: var(--type-body); }
.exchange-access-panel {
  width: min(1440px, calc(100% - (var(--viewport-gutter) * 2)));
  margin: var(--space-section) auto 0;
  border-radius: 10px;
}

@media (max-width: 1080px) {
  .exchange-marketing-hero { width: calc(100% - 36px); }
  .exchange-story-banners,
  .exchange-access-panel { width: calc(100% - 36px); }
  .exchange-story-banner,
  .exchange-story-banner.reverse { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding: 76px 0; }
  .exchange-story-banner.reverse .exchange-story-image { order: 0; }
}

@media (max-width: 700px) {
  .exchange-marketing { width: 100%; padding: 0 0 100px; }
  .exchange-marketing-hero { width: calc(100% - 28px); padding: 52px 0 88px; }
  .exchange-marketing-copy h1 { font-size: clamp(58px, 17vw, 82px); }
  .exchange-marketing-visual { min-height: 460px; border-radius: 10px; }
  .exchange-marketing-ticket { border-radius: 10px; }
  .exchange-story-banners,
  .exchange-access-panel { width: calc(100% - 28px); }
  .exchange-story-banner { border-radius: 0; }
  .exchange-story-image { min-height: 260px; height: 260px; }
  .exchange-story-banner h2 { font-size: clamp(48px, 14vw, 66px); }
  .exchange-access-panel { border-radius: 10px; }
  .cycle-principles + .cycle-opening { margin-top: 76px; }
}

/* Final premium control authority: stable geometry, restrained hierarchy and one progress colour. */
:root {
  --premium-control-height: 54px;
  --premium-control-radius: 14px;
  --premium-control-pad: 20px;
}

:is(
  .button,
  .landing-cta,
  .wallet-primary,
  .wallet-demo,
  .exchange-entry-card > button,
  .exchange-marketing-actions button,
  .exchange-access-panel > button,
  .exchange-intro-cta button,
  .verify-field button,
  .cycle-form button,
  .community-channels button,
  .exchange-complete-secondary button,
  .amount-presets button,
  .visibility-choice button
) {
  min-height: var(--premium-control-height);
  padding: 0 var(--premium-control-pad);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: var(--premium-control-radius);
  font: inherit;
  font-size: 15px;
  font-weight: 590;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

:is(
  .button,
  .landing-cta,
  .wallet-primary,
  .wallet-demo,
  .exchange-entry-card > button,
  .exchange-marketing-actions button,
  .exchange-access-panel > button,
  .exchange-intro-cta button,
  .verify-field button,
  .cycle-form button,
  .community-channels button,
  .exchange-complete-secondary button,
  .amount-presets button,
  .visibility-choice button
):focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* Receipt completion: contain every identifier and keep the instrument inside its frame. */
.complete-screen,
.complete-screen > * { min-width: 0; }
.complete-screen .receipt-summary {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  overflow: hidden;
}
.complete-screen .receipt-summary > div { min-width: 0; overflow: hidden; }
.complete-screen .receipt-summary strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  line-height: 1.35;
}

/* Wider viewport dock with a stable related-entity card. */
.seal-action-dock,
.exchange-action-dock {
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  width: min(1420px, calc(100vw - 40px)) !important;
}
.dock-entity-context {
  width: 222px;
  flex: 0 0 222px;
  min-width: 0;
  padding: 0 18px 0 4px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}
.dock-entity-context > span:last-child { min-width: 0; display: grid; gap: 5px; }
.dock-entity-context small { color: var(--cyan); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.dock-entity-context b { overflow: hidden; color: #eef2ef; font-size: 12px; font-weight: 620; text-overflow: ellipsis; white-space: nowrap; }
.dock-entity-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: rgba(255, 255, 255, .06);
  color: #eef2ef;
  font-size: 19px;
}
.dock-entity-avatar svg { width: 23px; height: 23px; }
.dock-entity-avatar.market-avatar img { object-fit: cover; }

/* Market support is a primary progression action, never a black utility button. */
.market-backing-ticket > button,
.market-detail-mobile-action button {
  min-height: 58px;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(112deg, #c7ff31, #a9ef32) !important;
  color: #07100f !important;
  box-shadow: 0 18px 48px rgba(199, 255, 49, .22) !important;
  font-weight: 680 !important;
}
.market-backing-ticket > button:hover,
.market-detail-mobile-action button:hover { background: linear-gradient(112deg, #d5ff61, #b9f34c) !important; }

.app-footer {
  z-index: 1;
  padding-bottom: 6px;
  font-size: 9px !important;
  letter-spacing: .12em;
  opacity: .42;
}

@media (max-width: 1100px) {
  .dock-entity-context { width: 176px; flex-basis: 176px; }
}

@media (max-width: 900px) {
  .dock-entity-context { display: none; }
  .seal-action-dock,
  .exchange-action-dock { width: auto !important; }
  .complete-screen .receipt-summary { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 560px) {
  .complete-screen .receipt-summary { grid-template-columns: minmax(0, 1fr) !important; }
}

:is(.button, .landing-cta, .wallet-primary, .exchange-entry-card > button, .exchange-marketing-actions button, .exchange-access-panel > button, .exchange-intro-cta button):hover:not(:disabled) {
  transform: translateY(-2px);
}

:is(.button, .landing-cta, .wallet-primary, .wallet-demo, .verify-field button, .cycle-form button):disabled {
  cursor: not-allowed;
  opacity: .44;
}

.library-actions { align-items: center; }
.library-actions .button {
  min-width: 190px;
  justify-content: space-between;
  white-space: nowrap;
}

.landing-hero h1,
.landing-hero h1 .hero-keyword {
  font-weight: 400 !important;
}

/* The dock is the sole journey controller and is anchored to the viewport, not page flow. */
.seal-action-dock,
.exchange-action-dock {
  position: fixed !important;
  z-index: 500 !important;
  top: auto !important;
  right: auto !important;
  bottom: max(16px, env(safe-area-inset-bottom)) !important;
  left: 50% !important;
  width: min(1180px, calc(100vw - 48px)) !important;
  margin: 0 !important;
  transform: translate3d(-50%, 0, 0) !important;
  isolation: isolate;
}

.exchange-dock-context {
  width: 154px;
  flex: 0 0 154px;
  min-width: 0;
  padding: 0 10px 0 4px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}
.exchange-dock-context small {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.exchange-dock-context b {
  overflow: hidden;
  color: #eef2ef;
  font-size: 12px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seal-action-dock .dock-primary.ready-to-progress,
.exchange-action-dock .dock-primary.ready-to-progress {
  background: linear-gradient(112deg, #c7ff31, #a9ef32) !important;
  color: #07100f !important;
  box-shadow: 0 18px 54px rgba(199, 255, 49, .26), inset 0 0 0 1px rgba(255, 255, 255, .18) !important;
}
.seal-action-dock .dock-primary.needs-input,
.exchange-action-dock .dock-primary.needs-input {
  background: #172321 !important;
  color: rgba(238, 243, 240, .62) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05) !important;
}

/* Removing the duplicate exchange header also removes its reserved space. */
.exchange-surface-detail,
.exchange-surface-swap { padding-top: clamp(28px, 3vw, 46px) !important; }

@media (max-width: 900px) {
  .library-actions .button { min-width: 0; }
  .exchange-dock-context { display: none; }
  .seal-action-dock,
  .exchange-action-dock {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    left: max(10px, env(safe-area-inset-left)) !important;
    width: auto !important;
    transform: none !important;
  }
}

:is(
  .button,
  .landing-cta,
  .wallet-primary,
  .wallet-demo,
  .exchange-entry-card > button,
  .exchange-marketing-actions button,
  .exchange-access-panel > button,
  .exchange-intro-cta button,
  .verify-field button,
  .cycle-form button,
  .community-channels button,
  .exchange-complete-secondary button
) {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 590;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

:is(
  .button,
  .landing-cta,
  .wallet-primary,
  .wallet-demo,
  .exchange-entry-card > button,
  .exchange-marketing-actions button,
  .exchange-access-panel > button,
  .exchange-intro-cta button,
  .verify-field button,
  .cycle-form button,
  .community-channels button,
  .exchange-complete-secondary button
):focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  :is(.button, .landing-cta, .wallet-primary, .wallet-demo, .exchange-entry-card > button, .exchange-marketing-actions button, .exchange-access-panel > button, .exchange-intro-cta button) {
    transition: none;
  }
}

/* Final loader and Seal Exchange layout authority. */
.components-preparing { visibility: hidden !important; opacity: 0 !important; }
.components-ready { animation: componentsArrive .34s cubic-bezier(.22, 1, .36, 1) both !important; }
.app-loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow: hidden; background: #050c0d; }
.loader-symbol,
.exchange-transition-symbol { width: clamp(108px, 10vw, 154px); aspect-ratio: .72; display: block; background: linear-gradient(155deg, #f8f6ee 8%, #59dce8 58%, #728cff); -webkit-mask: url('../public/se-symbol-transparent.png') center / contain no-repeat; mask: url('../public/se-symbol-transparent.png') center / contain no-repeat; filter: drop-shadow(0 24px 48px rgba(89, 220, 232, .18)); }
.app-loader.is-entering .loader-symbol { animation: loaderEnter .68s cubic-bezier(.2, .9, .2, 1.15) both; }
.app-loader.is-exiting { animation: loaderBackdropOut .34s ease both; }
.app-loader.is-exiting .loader-symbol { animation: loaderExit .34s cubic-bezier(.55, 0, 1, .45) both; }

.exchange-context-header { grid-template-columns: 168px minmax(0, 1fr) minmax(270px, 340px) !important; }
.exchange-context-title { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 18px; }
.exchange-context-title small { color: var(--cyan); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.exchange-context-title strong { margin-top: 5px; overflow: hidden; color: #f3f1e9; font-size: clamp(18px, 1.6vw, 24px); font-weight: 620; letter-spacing: -.02em; text-overflow: ellipsis; white-space: nowrap; }
.exchange-page-transition { position: fixed !important; inset: 86px 0 0 !important; z-index: 116 !important; padding: 0 !important; display: grid !important; place-items: center !important; background: rgba(4, 10, 13, .96) !important; backdrop-filter: none !important; animation: exchangeLoaderIn .18s ease both !important; }
.exchange-transition-symbol { width: clamp(82px, 8vw, 126px); animation: exchangeLoaderBump .54s cubic-bezier(.2, .9, .2, 1.12) both; }
.exchange-transition-card,
.exchange-transition-path,
.exchange-context-breadcrumbs { display: none !important; }

@media (max-width: 780px) {
  .exchange-context-header { grid-template-columns: 54px minmax(0, 1fr) !important; }
  .exchange-context-title { padding-inline: 8px; }
  .exchange-context-title small { font-size: 9px; }
  .exchange-context-title strong { font-size: 16px; }
  .exchange-page-transition { inset: calc(68px + env(safe-area-inset-top)) 0 var(--mobile-dock-height) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .app-loader, .loader-symbol, .components-ready, .exchange-page-transition, .exchange-transition-symbol { animation: none !important; }
}

/* Seal Exchange introduction: sealing terminal, not a trading clone. */
.exchange-intro-page { width: 100%; margin: 0; padding: 0 0 140px; color: #f3f1e9; }
.exchange-intro-hero { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); min-height: 0; margin: 0 auto; padding: clamp(86px, 7vw, 124px) 0 var(--space-section); display: block; background: var(--paper); color: var(--ink); box-shadow: 0 0 0 100vmax var(--paper); clip-path: inset(0 -100vmax); }
.exchange-intro-copy { position: relative; z-index: 2; }
.exchange-intro-copy h1 { max-width: none; margin: 12px 0 clamp(46px, 5vw, 76px); font-size: clamp(82px, 9.7vw, 158px); font-weight: 500; line-height: .84; letter-spacing: -.075em; }
.exchange-intro-copy h1 span,
.exchange-intro-copy h1 em { display: block; white-space: nowrap; }
.exchange-intro-copy .eyebrow { color: var(--ink); }
.exchange-intro-copy h1 em { color: var(--ink); font-style: normal; }
.exchange-intro-copy > p { width: min(690px, 100%); max-width: none; margin: 0 0 0 auto; color: #4e5b56; font-size: var(--type-body-large); line-height: 1.55; }
.exchange-public-promise { width: min(690px, 100%); margin: 24px 0 0 auto; }
.exchange-public-promise { color: #4e5b56; }
.exchange-entry-card { position: relative; z-index: 1; min-height: 590px; margin-top: clamp(72px, 7vw, 112px); padding: clamp(28px, 2.5vw, 40px); display: flex; flex-direction: column; border-radius: 10px; background: #0b1117; box-shadow: 0 44px 120px rgba(0, 0, 0, .25); }
.exchange-entry-head { min-height: 66px; padding: 0 4px 18px; display: flex; justify-content: space-between; align-items: center; }
.exchange-entry-head small, .exchange-entry-head b { display: block; }.exchange-entry-head small { color: var(--cyan); font-size: 10px; letter-spacing: .18em; }.exchange-entry-head b { margin-top: 5px; font-size: 20px; }.exchange-entry-head > i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-style: normal; }
.exchange-entry-trenches { min-height: 350px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; border-radius: 8px; background: #090d12; }
.exchange-entry-trenches > div { padding: 16px 12px; border-right: 1px solid rgba(255, 255, 255, .055); }.exchange-entry-trenches > div:last-child { border-right: 0; }.exchange-entry-trenches > div > small { display: block; margin-bottom: 13px; color: #71807b; font-size: 9px; letter-spacing: .12em; }.exchange-entry-trenches span { min-height: 126px; padding: 12px 8px; display: grid; grid-template-columns: 36px 1fr; align-content: center; gap: 6px 9px; border-top: 0; }.exchange-entry-trenches span i { grid-row: 1 / 3; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(89, 220, 232, .1); color: var(--cyan); font-style: normal; }.exchange-entry-trenches span b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }.exchange-entry-trenches span em { color: #7f8d88; font-size: 10px; font-style: normal; }
.exchange-entry-card > button { min-height: 76px; margin-top: 18px; padding: 0 22px; display: flex; justify-content: space-between; align-items: center; border: 0; border-radius: 18px; background: linear-gradient(115deg, #c7ff31, #a8ed35); color: #07100f; font: inherit; text-align: left; cursor: pointer; box-shadow: 0 18px 54px rgba(199, 255, 49, .18); }.exchange-entry-card > button small, .exchange-entry-card > button b { display: block; }.exchange-entry-card > button small { font-size: 11px; }.exchange-entry-card > button b { margin-top: 3px; font-size: 18px; }.exchange-entry-card > button i { font-size: 25px; font-style: normal; }.exchange-entry-card > p { margin: 14px 5px 0; color: #7d8a86; font-size: 12px; line-height: 1.5; }
.exchange-process-intro { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); margin: 0 auto; display: grid; gap: 120px; padding-top: 120px; }.exchange-process-intro > article { min-height: 720px; display: grid; grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(54px, 7vw, 120px); }.exchange-process-intro > article.reverse { grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr); }.exchange-process-intro > article.reverse .exchange-process-copy { grid-column: 2; grid-row: 1; }.exchange-process-intro > article.reverse .exchange-screen-mock { grid-column: 1; grid-row: 1; }
.exchange-process-copy > span { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: .18em; }.exchange-process-copy h2 { margin: 22px 0 24px; font-size: clamp(52px, 5.3vw, 88px); font-weight: 510; line-height: .92; letter-spacing: -.06em; }.exchange-process-copy p { max-width: 620px; margin: 0; color: #899691; font-size: 18px; line-height: 1.7; }
.exchange-screen-mock { min-height: 590px; padding: 22px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, #141c24, #090e13); box-shadow: 0 42px 110px rgba(0, 0, 0, .34); }.exchange-screen-mock > header { min-height: 62px; padding: 0 5px 18px; display: flex; align-items: center; justify-content: space-between; color: #dfe5e2; }.exchange-screen-mock > header span { color: #7f8c88; font-size: 12px; }
.mock-columns { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 18px; overflow: hidden; background: #0a0e13; }.mock-columns section { min-height: 480px; padding: 15px; border-right: 1px solid rgba(255, 255, 255, .055); }.mock-columns section:last-child { border: 0; }.mock-columns section > small { display: block; margin-bottom: 14px; color: #77847f; font-size: 10px; letter-spacing: .14em; }.mock-row { min-height: 132px; padding: 14px 6px; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: center; gap: 9px; border-top: 0; }.mock-row > i { grid-row: 1 / 3; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(89, 220, 232, .09); color: var(--cyan); font-style: normal; }.mock-row b, .mock-row small { display: block; }.mock-row b { font-size: 13px; }.mock-row small { margin-top: 5px; color: #75817d; font-size: 10px; line-height: 1.4; }.mock-row em { grid-column: 2; color: var(--lime); font-size: 10px; font-style: normal; }
.mock-support { display: flex; flex-direction: column; }.mock-support header small, .mock-support header b { display: block; }.mock-support header small { color: var(--cyan); font-size: 10px; letter-spacing: .15em; }.mock-support header b { margin-top: 5px; font-size: 18px; }.mock-support header code { color: #85928d; }.mock-support-body { flex: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 12px; }.mock-support-body > * { padding: 32px; border-radius: 20px; background: rgba(255, 255, 255, .035); }.mock-support-body small { color: #80908a; font-size: 10px; letter-spacing: .14em; }.mock-support-body section strong { display: block; margin-top: 80px; font-size: clamp(72px, 7vw, 112px); font-weight: 500; letter-spacing: -.07em; }.mock-support-body section > span { color: var(--cyan); }.mock-support-body nav { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }.mock-support-body nav i { min-height: 46px; display: grid; place-items: center; border-radius: 11px; background: rgba(255, 255, 255, .055); color: #aeb8b4; font-size: 11px; font-style: normal; }.mock-support-body aside b { display: block; margin-top: 26px; font-size: 34px; }.mock-support-body dl { margin-top: 90px; }.mock-support-body dl div { padding: 18px 0; display: flex; justify-content: space-between; border-top: 0; }.mock-support-body dt { color: #83908c; }.mock-support-body dd { margin: 0; color: #e8edea; }
.mock-receipt { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.mock-seal-mark { width: 150px; height: 150px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: rgba(199, 255, 49, .06); box-shadow: inset 0 0 0 1px rgba(199, 255, 49, .28); }.mock-seal-mark i { color: var(--lime); font-size: 36px; font-style: normal; }.mock-seal-mark small { margin-top: 8px; color: var(--cyan); font-size: 9px; letter-spacing: .16em; }.mock-receipt h3 { margin: 32px 0 12px; font-size: clamp(48px, 5vw, 74px); font-weight: 510; letter-spacing: -.06em; }.mock-receipt > code { color: var(--cyan); }.mock-receipt dl { width: min(720px, 100%); margin: 42px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; text-align: left; }.mock-receipt dl div { min-height: 90px; padding: 17px; border-radius: 14px; background: rgba(255, 255, 255, .035); }.mock-receipt dt { color: #7f8c88; font-size: 11px; }.mock-receipt dd { margin: 10px 0 0; color: #e4ebe7; font-size: 14px; font-weight: 650; }
.exchange-intro-cta { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); min-height: 430px; margin: 130px auto 0; padding: clamp(40px, 6vw, 88px); display: flex; align-items: end; justify-content: space-between; gap: 42px; border-radius: 10px; background: radial-gradient(circle at 80% 20%, rgba(89, 220, 232, .13), transparent 32%), linear-gradient(135deg, #101a21, #07100f); }.exchange-intro-cta small { color: var(--cyan); letter-spacing: .16em; }.exchange-intro-cta h2 { margin: 18px 0 0; font-size: clamp(58px, 6.4vw, 104px); font-weight: 510; line-height: .88; letter-spacing: -.065em; }.exchange-intro-cta button { min-width: 260px; min-height: 76px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 18px; background: var(--lime); color: #07100f; font: inherit; font-size: 18px; font-weight: 720; cursor: pointer; }.exchange-intro-cta button i { font-style: normal; }
@media (max-width: 1100px) { .exchange-intro-hero { padding-top: 62px; }.exchange-entry-card { min-height: 560px; }.exchange-process-intro > article, .exchange-process-intro > article.reverse { grid-template-columns: 1fr; }.exchange-process-intro > article.reverse .exchange-process-copy, .exchange-process-intro > article.reverse .exchange-screen-mock { grid-column: 1; grid-row: auto; }.exchange-process-intro > article.reverse .exchange-process-copy { order: 0; }.exchange-process-intro > article.reverse .exchange-screen-mock { order: 1; } }
@media (max-width: 700px) { .exchange-intro-page { width: 100%; padding: 0 0 110px; }.exchange-intro-hero { width: calc(100% - 28px); min-height: 0; padding: 52px 0 88px; }.exchange-intro-copy h1 { font-size: clamp(58px, 18vw, 82px); }.exchange-intro-copy h1 span, .exchange-intro-copy h1 em { white-space: normal; }.exchange-intro-copy > p { font-size: 17px; }.exchange-entry-card { min-height: 0; padding: 14px; border-radius: 10px; }.exchange-entry-trenches { grid-template-columns: 1fr; }.exchange-entry-trenches > div:not(:first-child) { display: none; }.exchange-entry-trenches span { min-height: 96px; }.exchange-process-intro { width: calc(100% - 28px); gap: 88px; padding-top: 90px; }.exchange-process-intro > article { min-height: 0; gap: 34px; }.exchange-process-copy h2 { font-size: 50px; }.exchange-process-copy p { font-size: 16px; }.exchange-screen-mock { min-height: 520px; padding: 14px; border-radius: 22px; }.mock-columns { grid-template-columns: 1fr; }.mock-columns section:not(:first-child) { display: none; }.mock-support-body { grid-template-columns: 1fr; }.mock-support-body > * { padding: 22px; }.mock-support-body section strong { margin-top: 40px; }.mock-support-body nav { margin-top: 34px; }.mock-support-body aside { display: none; }.mock-receipt dl { grid-template-columns: 1fr; }.exchange-intro-cta { width: calc(100% - 28px); min-height: 440px; margin-top: 90px; padding: 36px 24px; align-items: stretch; flex-direction: column; justify-content: space-between; }.exchange-intro-cta h2 { font-size: 58px; }.exchange-intro-cta button { min-width: 0; width: 100%; } }

/* Desktop trenches are the terminal home: no repeated hero and no document scroll. */
@media (min-width: 901px) {
  .exchange-terminal.exchange-surface-markets {
    width: calc(100% - 24px) !important;
    height: calc(100dvh - 86px);
    min-height: 0;
    padding: 14px 0 12px !important;
    overflow: hidden;
  }
  .exchange-surface-markets .market-discovery {
    height: 100%;
    margin: 0;
    display: grid;
    grid-template-rows: 44px 62px minmax(0, 1fr);
    gap: 10px;
    overflow: hidden;
  }
  .exchange-surface-markets .market-category-bar {
    padding: 0;
    align-items: center;
    overflow: hidden;
  }
  .exchange-surface-markets .market-category-bar button { min-height: 40px; border-radius: 11px; }
  .exchange-surface-markets .market-toolbar {
    min-height: 62px;
    margin: 0;
    padding: 8px;
    border-radius: 14px;
  }
  .exchange-surface-markets .market-board {
    min-height: 0;
    height: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: hidden;
  }
  .exchange-surface-markets .market-trench {
    min-height: 0;
    height: 100%;
    padding: 7px;
    display: grid;
    grid-template-rows: 66px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 16px;
  }
  .exchange-surface-markets .market-trench > header {
    min-height: 66px;
    padding: 9px 10px;
    align-items: center;
  }
  .exchange-surface-markets .market-trench > header h2 { font-size: clamp(19px, 1.45vw, 26px); }
  .exchange-surface-markets .market-trench-list {
    min-height: 0;
    padding-right: 2px;
    align-content: start;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(89, 220, 232, .22) transparent;
  }
  .exchange-surface-markets .market-row {
    min-height: 122px;
    padding: 12px;
    grid-template-columns: 58px minmax(0, 1fr) 70px;
    gap: 11px;
    border-radius: 13px;
  }
  .exchange-surface-markets .market-row-image { width: 58px; height: 58px; }
  .exchange-surface-markets .market-row-main b { font-size: 14px; }
  .exchange-surface-markets .market-row-main > small { margin-top: 4px; font-size: 10px; }
  .exchange-surface-markets .market-row-meta { margin-top: 8px; flex-wrap: nowrap; overflow: hidden; }
  .exchange-surface-markets .market-row-meta i { padding: 4px 5px; font-size: 8px; white-space: nowrap; }
  .exchange-surface-markets .market-row-value b { font-size: 17px; }
  .exchange-surface-markets .market-row-value small { font-size: 8px; }
  .view-exchange:has(.exchange-surface-markets) .app-footer { display: none; }
}

@keyframes journeyReveal {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .landing-wrap { width: min(100% - 40px, 1240px); }
  .landing-hero h1 { font-size: clamp(74px, 14vw, 116px); }
  .section-intro.split { gap: 55px; }
  .process-list article { grid-template-columns: 180px minmax(0, 1fr); gap: 32px; }
  .integrate-grid { gap: 45px; }
  .trust-card { min-height: 420px; }
  .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 42px; }
}

@media (max-width: 640px) {
  :root { --mobile-nav-height: 66px; --mobile-dock-height: 78px; }
  .app-shell { padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom)); }
  .app-header { height: 58px; padding: env(safe-area-inset-top) 14px 0; box-shadow: 0 10px 34px rgba(0, 0, 0, .16); }
  .brand { gap: 8px; }
  .brand-mark { width: 32px; height: 32px; flex-basis: 32px; border-radius: 9px; background-size: 28px 27px; }
  .brand-lockup b { font-size: 9px; }
  .brand-lockup small { font-size: 5px; }
  .system-state, .surface-state { display: none; }
  .app-header nav {
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
    padding: 5px 8px env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(7, 16, 15, .94);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, .42);
    backdrop-filter: blur(22px);
  }
  .home-header nav { background: rgba(243, 240, 232, .96); }
  .app-header nav button { min-width: 0; min-height: 54px; padding: 3px; border-radius: 12px; flex-direction: column; gap: 4px; }
  .app-header nav button > i { display: block; height: 19px; font-size: 17px; line-height: 19px; }
  .app-header nav button > span { font-size: 9px; }
  .app-header nav button.active { color: var(--cyan); background: rgba(8, 166, 150, .07); }
  .home-header nav button.active { color: var(--cobalt); background: rgba(3, 140, 140, .07); }
  .landing-wrap { width: calc(100% - 28px); }
  .landing-hero { padding: 52px 0 88px; }
  .landing-kicker { font-size: 11px; }
  .landing-hero h1 { margin: 6px 0 30px; font-size: clamp(56px, 17vw, 78px); line-height: .85; }
  .landing-lead { margin-left: 0; grid-template-columns: 1fr; gap: 18px; }
  .landing-lead p { font-size: 14px; }
  .landing-cta { width: 100%; }
  .product-collage { margin-top: 48px; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 300px 222px 212px; gap: 8px; }
  .product-collage > button { padding: 16px; border-radius: 3px; }
  .collage-main { grid-column: 1 / 3; grid-row: 1; }
  .collage-proof { grid-column: 1; grid-row: 2; }
  .collage-receipt { grid-column: 2; grid-row: 2; }
  .collage-rail { grid-column: 1; grid-row: 3; }
  .collage-licence { grid-column: 2; grid-row: 3; }
  .collage-copy { max-width: 57%; }
  .collage-copy h2 { margin-top: 60px; font-size: 34px; }
  .collage-copy p { display: none; }
  .collage-aperture { top: 40px; right: 6%; width: 112px; height: 112px; }
  .collage-aperture strong { font-size: 38px; }
  .collage-aperture i, .collage-aperture small { font-size: 6px; }
  .collage-action { left: 16px; right: auto; bottom: 16px; min-width: 118px; }
  .collage-proof h3, .collage-receipt h3 { margin-top: 42px; font-size: 18px; }
  .collage-proof::after { font-size: 160px; bottom: -30px; }
  .mini-evidence { left: 12px; right: 12px; bottom: 12px; padding: 9px; grid-template-columns: 24px 1fr; }
  .mini-evidence i { width: 24px; height: 24px; }
  .mini-evidence b { font-size: 9px; }
  .mini-evidence small { font-size: 7px; }
  .receipt-orbit { width: 42px; height: 42px; right: 12px; top: 12px; }
  .collage-receipt code { font-size: 7px; }
  .collage-rail > span { margin-bottom: 10px; }
  .collage-rail > div { margin-top: 5px; padding: 6px; grid-template-columns: 25px 1fr; }
  .collage-rail i { width: 24px; height: 24px; }
  .collage-licence strong { margin: 30px 0 15px; font-size: 27px; }
  .collage-licence > div { display: grid; gap: 3px; }
  .landing-process, .landing-integrate, .landing-use { padding: 92px 0; }
  .section-intro.split { grid-template-columns: 1fr; gap: 24px; margin-bottom: 47px; }
  .section-intro h2, .integrate-copy h2 { font-size: 58px; }
  .section-intro.split > div p, .section-intro.split > p, .integrate-copy p { font-size: 13px; }
  .process-list { gap: 44px; }
  .process-list article { grid-template-columns: 1fr; gap: 15px; }
  .process-copy { display: grid; grid-template-columns: 1fr auto; }
  .process-copy p { grid-column: 1 / 3; max-width: 290px; }
  .process-visual { min-height: 145px; padding: 20px; }
  .process-visual > strong { font-size: 20px; }
  .mock-window { width: 130px; height: 82px; }
  .witness-line { width: 140px; }
  .seal-mini { width: 82px; height: 82px; }
  .process-visual.seal dl { width: 135px; }
  .integrate-grid { grid-template-columns: 1fr; gap: 30px; }
  .surface-orbit { width: 100%; height: 330px; min-height: 0; order: 2; }
  .orbit-core { width: 112px; height: 112px; }
  .orbit-core span { font-size: 40px; }
  .orbit-core small { margin-top: 10px; }
  .orbit-node { width: 125px; height: 64px; padding: 10px 11px; grid-template-columns: 32px 1fr; column-gap: 8px; }
  .orbit-node i { width: 32px; height: 32px; font-size: 14px; }
  .orbit-node b { font-size: 9px; }
  .orbit-node small { font-size: 6px; }
  .orbit-mobile { left: 0; top: 4%; }
  .orbit-browser { right: 0; top: 12%; }
  .orbit-workspace { left: 0; bottom: 8%; }
  .orbit-server { right: 2%; bottom: 1%; }
  .landing-trust { padding: 92px 0 104px; }
  .trust-stage { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -14px; padding-right: 14px; scrollbar-width: none; }
  .trust-stage::-webkit-scrollbar { display: none; }
  .trust-card { min-width: 82vw; min-height: 410px; scroll-snap-align: start; }
  .section-intro.centred { margin-bottom: 48px; }
  .use-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -14px; padding: 0 14px 8px 0; scrollbar-width: none; }
  .use-grid::-webkit-scrollbar { display: none; }
  .use-grid > button { min-width: 80vw; scroll-snap-align: start; }
  .use-art { height: 245px; }
  .use-grid h3 { min-height: 0; }
  .landing-conversion { min-height: 0; padding: 92px 0 110px; }
  .conversion-grid { grid-template-columns: 1fr; gap: 58px; }
  .conversion-copy blockquote { font-size: 43px; }
  .mobile-device { width: min(310px, 91%); min-height: 590px; margin: auto; border-radius: 44px; transform: rotate(2deg); }
  .landing-footer .landing-wrap { grid-template-columns: 1fr; }
  .landing-footer small { grid-column: 1; }

  .step-shell { border: 0; }
  .workspace { width: calc(100% - 24px); padding-bottom: calc(118px + env(safe-area-inset-bottom)); }
  .panel { border-radius: 17px; }
  .observe-grid, .flow-grid, .authorize-grid { gap: 12px; }
  .work-card, .readiness-card, .review-main, .side-summary, .fee-card, .identity-card, .account-grid article { padding: 20px; }
  .readiness-card > .button, .side-summary > .button, .destination-footer > .button, .identity-card > .button { display: none; }
  .rail-card { border-radius: 16px; }
  .destination-footer { border-radius: 16px; }
  .seal-table { gap: 10px; }
  .seal-row { border: 0; box-shadow: 0 18px 50px rgba(0, 0, 0, .20); }
  .receipt-drawer { width: 100%; border: 0; }
  .mobile-action-dock { border: 0; background: rgba(13, 23, 21, .95); box-shadow: 0 24px 74px rgba(0, 0, 0, .58); }
  .seal-action-dock { left: max(10px, env(safe-area-inset-left)); right: max(10px, env(safe-area-inset-right)); bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom) + 8px); width: auto; min-height: 68px; padding: 8px; transform: none; border-radius: 18px; }
  .seal-action-dock .dock-back, .dock-back-spacer { width: 50px; flex-basis: 50px; }
  .seal-action-dock .dock-primary { min-height: 52px; padding-inline: 15px; border-radius: 12px; }
  .dock-back { border: 0; background: rgba(255, 255, 255, .055); }
  .service-banner { top: calc(58px + env(safe-area-inset-top)); padding: 10px 14px; }
  .service-banner small { display: none; }
  .service-banner button { flex: 0 0 auto; }
  .failure-screen { padding-top: 38px; }
  .failure-mark { width: 124px; height: 124px; margin-bottom: 26px; }
  .failure-screen h1 { font-size: 43px; }
  .failure-screen > p { font-size: 12px; }
  .failure-facts { grid-template-columns: 1fr; }
  .failure-actions { display: grid; grid-template-columns: 1fr; }
  .complete-screen { padding-top: 24px; }
  .completed-seal { width: 164px; height: 164px; margin-bottom: 28px; }
  .completed-seal::before { inset: -34px; }
  .seal-energy-mark { width: 43px; height: 61px; margin-bottom: 8px; }
  .seal-protocol { font-size: 9px !important; }
  .seal-rings b { margin-top: 5px; }
  .library-heading { flex-direction: column; align-items: stretch; gap: 20px; }
  .library-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .library-actions .button { min-width: 0; padding-inline: 12px; gap: 10px; }
  .verify-field > div { height: auto; grid-template-columns: 1fr; }
  .verify-field input { min-height: 48px; font-size: 16px; }
  .verify-field button { min-height: 46px; }
  .licence-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .landing-wrap { width: calc(100% - 22px); }
  .landing-hero h1 { font-size: 54px; }
  .product-collage { grid-template-rows: 288px 212px 204px; }
  .collage-aperture { width: 100px; height: 100px; }
  .collage-copy h2 { font-size: 31px; }
  .collage-proof h3, .collage-receipt h3 { font-size: 16px; }
  .dock-primary b { max-width: 185px; }
}

@keyframes sealArrival {
  from { opacity: 0; transform: scale(.82) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes sealTrace {
  from { transform: rotate(-90deg) scale(.9); opacity: 0; }
  to { transform: rotate(270deg) scale(1); opacity: 1; }
}
@keyframes sealMarkReveal {
  from { opacity: 0; clip-path: inset(100% 0 0); transform: translateY(10px) scale(.96); filter: blur(5px); }
  to { opacity: 1; clip-path: inset(0 0 0); transform: translateY(0) scale(1); filter: drop-shadow(0 0 16px rgba(8, 166, 150, .18)); }
}
@keyframes sealDetailIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sealNetworkArrive {
  from { opacity: 0; transform: scale(.5) translate(12px, 12px); }
  to { opacity: 1; transform: scale(1) translate(0, 0); }
}
@keyframes sealAura { to { transform: rotate(360deg); } }
@keyframes sealArcSettle {
  from { opacity: 0; transform: rotate(-120deg) scale(.84); }
  to { opacity: .78; transform: rotate(0) scale(1); }
}
@keyframes sealCoreBloom {
  from { opacity: 0; transform: scale(.6); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes sealHaloBreathe {
  0%, 100% { opacity: .58; transform: scale(.96); }
  50% { opacity: .88; transform: scale(1.05); }
}
@keyframes sealMarkBreathe {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(8, 166, 150, .14)); }
  50% { filter: drop-shadow(0 0 22px rgba(8, 166, 150, .22)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* Community market story: public presentation remains distinct from private proof. */
.market-story-builder {
  margin-top: 30px;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  outline: none;
  background:
    radial-gradient(circle at 0 0, rgba(89, 220, 232, .075), transparent 38%),
    linear-gradient(145deg, #101d1c, #0b151b 74%);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .24);
  container-type: inline-size;
}

@container (max-width: 1000px) {
  .market-story-builder .market-story-compose { grid-template-columns: 1fr; }
  .market-story-builder .market-media-grid { min-height: 520px; }
}

.market-story-builder:focus-visible { box-shadow: 0 0 0 3px rgba(89, 220, 232, .28), 0 30px 82px rgba(0, 0, 0, .24); }
.market-story-builder-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; }
.market-story-builder-head small { color: var(--cyan); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.market-story-builder-head h2 { margin: 10px 0 12px; color: #f3f1e9; font-size: clamp(38px, 4vw, 60px); font-weight: 510; line-height: .96; letter-spacing: -.06em; }
.market-story-builder-head p { max-width: 760px; margin: 0; color: #94a19c; font-size: 15px; line-height: 1.6; }
.market-story-builder-head > span { flex: 0 0 auto; padding: 11px 14px; display: flex; align-items: center; gap: 7px; border-radius: 13px; background: rgba(255, 255, 255, .045); color: #9aa6a2; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.market-story-builder-head > span i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: rgba(89, 220, 232, .09); color: var(--cyan); font-style: normal; }

.market-story-compose { margin-top: 30px; display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: 26px; align-items: start; }
.market-media-editor,
.market-story-fields { min-width: 0; }
.market-media-heading { margin-bottom: 10px; display: flex; justify-content: space-between; color: #d9dfdc; font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.market-media-heading em { color: var(--cyan); font-style: normal; }
.market-media-grid { min-height: 430px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(130px, .75fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 10px; }
.market-media-grid.invalid { animation: fieldAttention .28s ease-out; }
.market-media-slot { position: relative; min-width: 0; overflow: hidden; border: 0; border-radius: 19px; }
.market-media-slot.primary { grid-row: 1 / 3; }
.market-media-slot.filled { background: #07100f; box-shadow: 0 20px 50px rgba(0, 0, 0, .22); }
.market-media-slot.filled::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 12, 12, .75), transparent 48%); pointer-events: none; }
.market-media-slot.filled img { object-fit: cover; }
.market-media-slot.filled > span { position: absolute; z-index: 2; left: 14px; bottom: 13px; padding: 7px 9px; border-radius: 9px; background: rgba(247, 245, 239, .92); color: #07100f; font-size: 9px; font-weight: 720; letter-spacing: .09em; text-transform: uppercase; }
.market-media-slot.filled > button { position: absolute; z-index: 3; top: 11px; right: 11px; width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 11px; background: rgba(7, 16, 15, .8); color: white; cursor: pointer; font-size: 18px; backdrop-filter: blur(10px); }
.market-media-slot.empty { padding: 18px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; background: rgba(255, 255, 255, .035); color: #c7cfcc; cursor: pointer; text-align: left; transition: transform .2s ease, background .2s ease; }
.market-media-slot.empty:hover { transform: translateY(-2px); background: rgba(89, 220, 232, .07); }
.market-media-slot.empty > i { width: 38px; height: 38px; margin-bottom: auto; display: grid; place-items: center; border-radius: 12px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-size: 19px; font-style: normal; }
.market-media-slot.empty > span { font-size: 13px; font-weight: 660; }
.market-media-slot.empty > small { margin-top: 5px; color: #75827e; font-size: 10px; line-height: 1.45; }
.market-field-error { margin: 9px 0 0; color: #f3b94d; font-size: 11px; }
.market-add-media { width: 100%; min-height: 48px; margin-top: 10px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 14px; background: rgba(255, 255, 255, .045); color: #d8dfdc; cursor: pointer; font: inherit; font-size: 12px; font-weight: 640; }
.market-add-media:disabled { cursor: default; opacity: .4; }
.market-add-media span { color: var(--cyan); font-size: 18px; }
.market-story-fields { padding: 22px; border-radius: 22px; background: rgba(4, 11, 13, .38); }
.market-story-fields .field { margin-bottom: 15px; }
.market-story-fields .claim-grid .field { margin-bottom: 0; }
.market-story-fields textarea { resize: vertical; }
.market-story-fields select { width: 100%; min-height: 50px; margin-top: 8px; padding: 0 14px; border: 0; border-radius: 13px; background: rgba(255, 255, 255, .055); color: #eef2f0; font: inherit; font-size: 14px; }
.market-meta-fields { grid-template-columns: 1fr 1fr 1fr; }
.market-link-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.market-card-preview { margin-top: 24px; padding: 14px; display: grid; grid-template-columns: 112px minmax(0, 1fr) auto; align-items: center; gap: 18px; border-radius: 20px; background: rgba(247, 245, 239, .94); color: #07100f; }
.market-card-preview-image { position: relative; width: 112px; height: 92px; overflow: hidden; border-radius: 14px; background: #dfe5e1; }
.market-card-preview-image img { object-fit: cover; }
.market-card-preview-image > i { width: 100%; height: 100%; display: grid; place-items: center; color: #77827e; font-size: 11px; font-style: normal; }
.market-card-preview > span:nth-child(2) { min-width: 0; }
.market-card-preview small,
.market-card-preview b,
.market-card-preview em,
.market-card-preview p { display: block; }
.market-card-preview small { color: #038c8c; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.market-card-preview b { margin-top: 5px; overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.market-card-preview em { margin-top: 3px; color: #6d7874; font-size: 10px; font-style: normal; }
.market-card-preview p { margin: 7px 0 0; overflow: hidden; color: #5f6a66; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.market-card-preview > strong { padding: 9px 11px; border-radius: 10px; background: #07100f; color: var(--cyan); font-size: 10px; letter-spacing: .08em; }

.market-review-listing { margin: 18px 0; padding: 14px; display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 22px; border-radius: 22px; background: rgba(89, 220, 232, .045); }
.market-review-gallery { min-height: 260px; display: grid; grid-template-columns: 1.5fr .75fr; grid-template-rows: 1fr 1fr; gap: 7px; }
.market-review-gallery > span { position: relative; overflow: hidden; border-radius: 13px; background: #07100f; }
.market-review-gallery > span.primary { grid-row: 1 / 3; }
.market-review-gallery img { object-fit: cover; }
.market-review-copy { padding: 12px 10px 12px 0; }
.market-review-copy > small { color: var(--cyan); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.market-review-copy h3 { margin: 8px 0 10px; font-size: 31px; font-weight: 520; letter-spacing: -.045em; }
.market-review-copy > p { margin: 0; color: #a2ada9; font-size: 13px; line-height: 1.55; }
.market-review-copy blockquote { margin: 16px 0; padding: 14px; border: 0; border-radius: 14px; background: rgba(255, 255, 255, .035); color: #bbc4c1; font-size: 12px; line-height: 1.6; }
.market-review-copy > div { display: flex; flex-wrap: wrap; gap: 6px; }
.market-review-copy > div span { padding: 7px 9px; border-radius: 8px; background: rgba(255, 255, 255, .045); color: #9ea9a5; font-size: 9px; }
.market-review-copy nav { margin-top: 15px; display: flex; gap: 7px; }
.market-review-copy nav a { padding: 9px 11px; display: inline-flex; gap: 8px; border-radius: 10px; background: #f4f1e9; color: #07100f; font-size: 10px; font-weight: 680; text-decoration: none; }
.market-review-copy nav i { color: #038c8c; font-style: normal; }

.sealed-market-story { margin-top: 22px; padding: clamp(28px, 4vw, 58px); border-radius: 30px; background: linear-gradient(145deg, #111d1c, #081013 78%); box-shadow: 0 36px 100px rgba(0, 0, 0, .27); }
.sealed-market-story > header { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); align-items: end; gap: 50px; }
.sealed-market-story > header small { color: var(--cyan); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.sealed-market-story > header h2 { max-width: 800px; margin: 12px 0 0; color: #f4f2eb; font-size: clamp(48px, 5.4vw, 82px); font-weight: 500; line-height: .92; letter-spacing: -.065em; }
.sealed-market-story > header p { margin: 0; color: #8f9b97; font-size: 14px; line-height: 1.65; }
.sealed-market-story-gallery { min-height: 600px; margin-top: 40px; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .75fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 12px; }
.sealed-market-story-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 22px; background: #07100f; }
.sealed-market-story-gallery figure.primary { grid-row: 1 / 3; }
.sealed-market-story-gallery figure:only-child { grid-column: 1 / -1; grid-row: 1 / 3; }
.sealed-market-story-gallery figure img { object-fit: cover; transition: transform .6s cubic-bezier(.2, .8, .2, 1); }
.sealed-market-story-gallery figure:hover img { transform: scale(1.025); }
.sealed-market-story-gallery figcaption { position: absolute; z-index: 1; left: 16px; bottom: 16px; padding: 9px 11px; border-radius: 10px; background: rgba(247, 245, 239, .92); color: #07100f; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.sealed-market-story-copy { margin-top: 38px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 30px 55px; }
.sealed-market-story-copy > .eyebrow { grid-column: 1 / -1; }
.sealed-market-story-copy > p { margin: 0; color: #e5e9e6; font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.2; }
.sealed-market-story-copy > div { display: grid; gap: 10px; }
.sealed-market-story-copy > div > span { padding: 17px; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.sealed-market-story-copy > div small,
.sealed-market-story-copy > div b { display: block; }
.sealed-market-story-copy > div small { color: var(--cyan); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.sealed-market-story-copy > div b { margin-top: 7px; color: #aab5b1; font-size: 12px; font-weight: 520; line-height: 1.55; }
.sealed-market-story-copy nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; }
.sealed-market-story-copy nav a { min-height: 48px; padding: 0 15px; display: inline-flex; align-items: center; gap: 18px; border-radius: 13px; background: #f4f1e9; color: #07100f; font-size: 11px; font-weight: 680; text-decoration: none; }
.sealed-market-story-copy nav i { color: #038c8c; font-style: normal; }

@media (max-width: 980px) {
  .market-story-compose { grid-template-columns: 1fr; }
  .market-media-grid { min-height: 520px; }
  .market-review-listing { grid-template-columns: 1fr; }
  .sealed-market-story > header,
  .sealed-market-story-copy { grid-template-columns: 1fr; gap: 24px; }
  .sealed-market-story-copy > .eyebrow,
  .sealed-market-story-copy nav { grid-column: auto; }
}

@media (max-width: 700px) {
  .market-story-builder { margin-inline: -8px; padding: 22px 16px; border-radius: 23px; }
  .market-story-builder-head { flex-direction: column; gap: 16px; }
  .market-story-builder-head h2 { font-size: 43px; }
  .market-story-builder-head > span { align-self: flex-start; }
  .market-media-grid { min-height: 470px; grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr; }
  .market-media-slot.primary { grid-column: 1 / -1; grid-row: 1; }
  .market-media-slot.supporting { grid-row: 2; }
  .market-story-fields { padding: 17px; }
  .market-meta-fields,
  .market-link-fields { grid-template-columns: 1fr; }
  .market-card-preview { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
  .market-card-preview-image { width: 82px; height: 78px; }
  .market-card-preview > strong { grid-column: 1 / -1; justify-self: start; }
  .market-review-gallery { min-height: 340px; }
  .sealed-market-story { padding: 24px 18px; border-radius: 24px; }
  .sealed-market-story > header h2 { font-size: 46px; }
  .sealed-market-story-gallery { min-height: 520px; grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr; }
  .sealed-market-story-gallery figure.primary { grid-column: 1 / -1; grid-row: 1; }
  .sealed-market-story-gallery figure.supporting { grid-row: 2; }
  .sealed-market-story-copy > p { font-size: 29px; }
}

/* Genesis account origin and refined symbol */
.brand-mark {
  position: relative;
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 1px 7px;
  background: linear-gradient(155deg, #f8f6ee 10%, #54d8e5 62%, #08a696);
  -webkit-mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  filter: drop-shadow(0 8px 16px rgba(5, 21, 20, .2));
}
.home-header .brand-mark::before { background: linear-gradient(155deg, #061311, #038c8c); }
.loading-mark {
  position: relative;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
}
.loading-mark::before,
.loading-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(84, 216, 229, .22);
  animation: genesisHalo 3.6s ease-in-out infinite;
}
.loading-mark::after { inset: 25px; animation-delay: -.9s; }
.app-loading .loading-mark .brand-mark {
  width: 104px;
  height: 104px;
  animation: genesisSymbol 2.8s cubic-bezier(.2,.75,.25,1) infinite;
}
.app-loading p { font-size: 15px; letter-spacing: .08em; }
@keyframes genesisHalo { 0%,100% { transform: scale(.82); opacity: .2; } 50% { transform: scale(1); opacity: .8; } }
@keyframes genesisSymbol { 0%,100% { transform: translateY(4px) scale(.96); filter: drop-shadow(0 10px 20px rgba(8,166,150,.14)); } 50% { transform: translateY(-5px) scale(1.04); filter: drop-shadow(0 18px 34px rgba(84,216,229,.32)); } }

.genesis-screen { min-height: calc(100svh - 86px); padding: clamp(62px, 6vw, 104px) var(--viewport-gutter) 120px; background: radial-gradient(circle at 78% 24%, rgba(49,84,232,.12), transparent 34%), #06110f; color: var(--paper); }
.genesis-intro { width: min(1460px, 100%); margin: 0 auto 54px; }
.genesis-intro h1 { max-width: 1020px; margin: 16px 0 18px; font-size: clamp(58px, 7.2vw, 116px); line-height: .88; letter-spacing: -.07em; }
.genesis-intro > p { max-width: 760px; margin: 0; color: rgba(245,243,235,.65); font-size: clamp(18px, 1.4vw, 24px); line-height: 1.5; }
.review-boundary { display: inline-flex; margin-top: 22px; color: var(--cyan); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.genesis-shell { width: min(1460px, 100%); margin: auto; display: grid; grid-template-columns: 180px minmax(0, 1fr) 340px; gap: 22px; align-items: stretch; }
.genesis-steps { display: flex; flex-direction: column; gap: 8px; }
.genesis-steps button { min-height: 78px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; padding: 12px; border: 0; border-radius: 16px; background: rgba(255,255,255,.035); color: rgba(245,243,235,.48); text-align: left; cursor: pointer; }
.genesis-steps button i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.05); font-style: normal; }
.genesis-steps button.active { background: rgba(84,216,229,.1); color: white; }
.genesis-steps button.active i { background: var(--cobalt); }
.genesis-steps button.complete i { color: var(--lime); }
.genesis-stage { min-height: 700px; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 52px); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 36px 90px rgba(0,0,0,.25); }
.genesis-fields { display: grid; gap: 20px; }
.stage-label { color: var(--cyan); font-size: 12px; letter-spacing: .22em; }
.genesis-fields h2 { margin: 0 0 8px; font-size: clamp(38px, 4vw, 64px); line-height: .95; letter-spacing: -.05em; }
.genesis-fields > p { max-width: 660px; margin: -4px 0 8px; color: rgba(245,243,235,.6); font-size: 17px; line-height: 1.55; }
.genesis-fields label { display: grid; gap: 9px; color: rgba(245,243,235,.65); font-size: 13px; }
.genesis-fields input:not([type="range"]), .genesis-fields select { min-height: 60px; width: 100%; padding: 0 18px; border: 0; border-radius: 14px; background: rgba(255,255,255,.07); color: white; font: inherit; font-size: 17px; }
.field-row, .choice-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice-pair button { min-height: 126px; display: grid; align-content: center; gap: 8px; padding: 22px; border: 0; border-radius: 20px; background: rgba(255,255,255,.05); color: white; text-align: left; font-size: 22px; cursor: pointer; }
.choice-pair button small { color: rgba(245,243,235,.55); font-size: 14px; }
.choice-pair button.selected { background: linear-gradient(135deg, rgba(49,84,232,.8), rgba(3,140,140,.58)); }
.artifact-preview { display: grid; gap: 8px; padding: 22px; border-radius: 18px; background: #f6f3eb; color: #061311; }
.artifact-preview small { letter-spacing: .14em; }
.artifact-preview strong { overflow-wrap: anywhere; font: 500 clamp(20px, 2vw, 30px)/1.2 ui-monospace, monospace; }
.artifact-preview span { color: #60706d; }
.genesis-toggle { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 18px; border: 0; border-radius: 16px; background: rgba(255,255,255,.045); color: white; text-align: left; cursor: pointer; }
.genesis-toggle span { display: grid; gap: 6px; }
.genesis-toggle small { color: rgba(245,243,235,.52); font-size: 13px; }
.genesis-toggle > i { width: 52px; height: 30px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.14); }
.genesis-toggle > i em { display: block; width: 22px; height: 22px; border-radius: 50%; background: white; transition: transform .22s ease; }
.genesis-toggle.on > i { background: var(--cobalt); }
.genesis-toggle.on > i em { transform: translateX(22px); }
.rail-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rail-options button { min-height: 132px; display: flex; align-items: center; gap: 14px; padding: 18px; border: 0; border-radius: 18px; background: rgba(255,255,255,.05); color: white; text-align: left; cursor: pointer; }
.rail-options button > i { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(84,216,229,.08); color: var(--cyan); font: normal 24px Georgia, serif; }
.rail-options button span { display: grid; gap: 5px; }.rail-options button small { color: rgba(245,243,235,.55); }.rail-options button.selected { background: linear-gradient(140deg, rgba(49,84,232,.72), rgba(49,84,232,.24)); }
.range-label { padding: 18px; border-radius: 16px; background: rgba(255,255,255,.045); }.range-label strong { color: white; font-size: 20px; }.range-label input { accent-color: var(--cyan); }
.genesis-review { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.genesis-review span { min-height: 92px; display: grid; align-content: center; gap: 8px; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.04); }.genesis-review small { color: var(--cyan); letter-spacing: .12em; }.genesis-review b { overflow-wrap: anywhere; }
.genesis-controls { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; gap: 16px; }
.genesis-controls button, .genesis-profile-card button { min-height: 58px; padding: 0 24px; border: 0; border-radius: 14px; font-weight: 700; cursor: pointer; }.genesis-controls .primary, .genesis-profile-card > button, .profile-actions button:first-child { background: var(--cobalt); color: white; }.genesis-controls .quiet, .profile-actions .quiet { background: rgba(255,255,255,.06); color: rgba(245,243,235,.7); }.genesis-controls button:disabled { opacity: .4; cursor: not-allowed; }
.genesis-memory { min-height: 700px; display: flex; flex-direction: column; align-items: center; padding: 42px 28px; border-radius: 30px; background: radial-gradient(circle at 50% 27%, rgba(84,216,229,.14), transparent 32%), linear-gradient(160deg, #102923, #07110f 65%); text-align: center; }
.genesis-memory > small { margin-top: 34px; color: var(--cyan); letter-spacing: .2em; }.genesis-memory > strong { margin-top: 10px; font: 44px Georgia, serif; }.genesis-memory > p { max-width: 230px; color: rgba(245,243,235,.58); line-height: 1.5; }.genesis-memory dl { width: 100%; margin-top: auto; }.genesis-memory dl div { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 0; }.genesis-memory dt { color: rgba(245,243,235,.5); }.genesis-memory dd { margin: 0; text-transform: capitalize; }
.genesis-profile-card { grid-column: span 2; }.genesis-profile-id { display: grid; gap: 7px; padding: 22px; border-radius: 18px; background: #061311; color: white; }.genesis-profile-id small { color: var(--cyan); letter-spacing: .14em; }.genesis-profile-id strong { font-size: clamp(22px, 2vw, 32px); }.genesis-profile-id code { color: rgba(245,243,235,.55); }.genesis-profile-card dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }.genesis-profile-card dl div { padding: 16px; border-radius: 14px; background: rgba(5,19,17,.05); }.genesis-profile-card dt { color: var(--muted); font-size: 12px; }.genesis-profile-card dd { margin: 7px 0 0; font-weight: 700; text-transform: capitalize; }.profile-actions { display: flex; gap: 10px; }.profile-actions .quiet { color: var(--ink); background: rgba(5,19,17,.07); }

@media (max-width: 1100px) { .genesis-shell { grid-template-columns: 120px minmax(0,1fr); }.genesis-memory { grid-column: 1 / -1; min-height: 380px; }.genesis-profile-card { grid-column: auto; } }
@media (max-width: 700px) {
  .brand-mark { width: 43px; height: 43px; flex-basis: 43px; background: transparent; }
  .genesis-screen { padding: 42px 18px 110px; }
  .genesis-intro { margin-bottom: 30px; }.genesis-intro h1 { font-size: 58px; }.genesis-intro > p { font-size: 17px; }
  .genesis-shell { display: block; }.genesis-steps { margin-bottom: 12px; flex-direction: row; overflow-x: auto; }.genesis-steps button { min-width: 112px; min-height: 58px; grid-template-columns: 30px 1fr; }.genesis-steps button i { width: 30px; height: 30px; }
  .genesis-stage { min-height: 650px; padding: 24px 18px; border-radius: 22px; }.genesis-fields h2 { font-size: 42px; }.field-row, .choice-pair, .rail-options, .genesis-review { grid-template-columns: 1fr; }.choice-pair button { min-height: 96px; }.rail-options button { min-height: 88px; }.genesis-controls { position: sticky; bottom: 12px; padding: 12px; margin: auto -8px -8px; border-radius: 18px; background: rgba(6,17,15,.94); backdrop-filter: blur(18px); }.genesis-controls button { padding: 0 16px; }.genesis-memory { min-height: 410px; margin-top: 18px; }.genesis-profile-card dl { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) { .loading-mark::before, .loading-mark::after, .app-loading .loading-mark .brand-mark { animation: none; } }

/* Production-flow consolidation: one stable shell, no drawn-box aesthetic. */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.app-loading {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: var(--muted);
}
.app-loading .brand-mark { width: 52px; height: 52px; background-size: 29px 39px; animation: sealMarkBreathe 2.8s ease-in-out infinite; }
.app-loading p { margin: 0; font-size: 12px; }
.system-state.demo i { background: var(--amber); box-shadow: 0 0 12px rgba(242, 135, 5,.65); }
.system-state.live i { background: var(--lime); }

.landing-actions { display: grid; gap: 11px; justify-items: stretch; }
.landing-text-action { min-height: 34px; border: 0; background: transparent; color: var(--cobalt); cursor: pointer; font-size: 10px; font-weight: 640; }
.collage-aperture strong { letter-spacing: -.07em; }
.use-art.token { background: radial-gradient(circle at 68% 18%, rgba(8, 166, 150,.30), transparent 28%), radial-gradient(circle at 27% 68%, rgba(8, 166, 150,.38), transparent 36%), linear-gradient(145deg, #10211f, #07100f); color: white; }
.use-art.cause { background: radial-gradient(circle at 68% 20%, #ff9d91, transparent 26%), linear-gradient(135deg, #f4d5ce, #eaaea8); }
.use-art.community { background: radial-gradient(circle at 30% 22%, rgba(8, 166, 150,.55), transparent 27%), linear-gradient(135deg, #cce8e0, #08a696); }

.step-area {
  position: sticky;
  z-index: 45;
  top: 74px;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(420px, 760px) auto;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 0 24px;
  background: rgba(7,16,15,.93);
  box-shadow: 0 15px 42px rgba(0,0,0,.16);
  backdrop-filter: blur(22px);
}
.step-shell { width: 100%; max-width: 760px; height: 74px; grid-template-columns: repeat(4, 1fr); margin: 0; }
.step-shell button { cursor: default; }
.step-shell button.done { cursor: pointer; }
.mode-banner { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 13px; background: rgba(242, 135, 5,.075); color: #dbc9aa; }
.mode-banner > i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(242, 135, 5,.10); color: var(--amber); font-style: normal; }
.mode-banner b, .mode-banner small { display: block; }
.mode-banner b { font-size: 9px; }
.mode-banner small { margin-top: 3px; color: #9d917c; font-size: 7px; }

.machine-screen { padding-top: 42px; }
.machine-heading { margin-bottom: 34px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; }
.machine-heading > div:first-child { max-width: 800px; }
.machine-heading h1 { max-width: 820px; margin: 15px 0 13px; font-family: var(--sans); font-size: clamp(48px, 5.4vw, 72px); font-weight: 500; line-height: .94; letter-spacing: -.068em; }
.machine-heading p { max-width: 680px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }
.draft-actions { display: flex; gap: 8px; }
.draft-actions button { min-height: 42px; padding: 0 14px; border: 0; border-radius: 11px; background: rgba(255,255,255,.055); color: #c6d0cc; cursor: pointer; font-size: 9px; }
.draft-actions button:first-child { background: rgba(8, 166, 150,.09); color: var(--cyan); }
.kind-picker { margin: 0 0 22px; }
.kind-options button { min-height: 92px; border-radius: 15px; }
.claim-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { position: relative; margin-bottom: 17px; }
.field > small { display: block; margin: 7px 2px 0; color: var(--coral); font-size: 8px; letter-spacing: 0; text-transform: none; }
.field.invalid input,
.field.invalid textarea { outline: 2px solid rgba(255,113,104,.72); outline-offset: 1px; background: rgba(255,113,104,.045); }
.work-card .origin-boundary { margin: 0 0 22px; }
.proof-empty { min-height: 132px; padding: 20px; display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; border-radius: 14px; background: rgba(255,255,255,.03); }
.proof-empty > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(8, 166, 150,.07); color: var(--cyan); font-style: normal; }
.proof-empty b, .proof-empty small { display: block; }
.proof-empty b { font-size: 11px; }
.proof-empty small { max-width: 480px; margin-top: 5px; color: var(--muted); font-size: 8px; line-height: 1.55; }
.proof-empty button { min-height: 40px; padding: 0 13px; border: 0; border-radius: 10px; background: var(--cobalt); color: white; cursor: pointer; font-size: 9px; }
.seal-aperture strong em { margin-left: 2px; color: var(--muted); font-family: var(--sans); font-size: 15px; font-style: normal; font-weight: 500; }
.plain-checks span.done { color: #dce5e1; background: rgba(8, 166, 150,.04); }

.scope-card { margin: 14px 0 26px; padding: 18px; border-radius: 14px; background: linear-gradient(145deg, rgba(8, 166, 150,.075), rgba(3, 140, 140,.055)); }
.scope-card small { color: var(--cyan); font-size: 7px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.scope-card p { margin: 8px 0 0; color: #c3cfca; font-size: 11px; line-height: 1.55; }
.demo-total { margin-top: 10px; padding: 19px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 13px; background: rgba(8, 166, 150,.055); }
.demo-total small, .demo-total strong { display: block; }
.demo-total small { color: var(--muted); font-size: 8px; }
.demo-total strong { margin-top: 5px; font-size: 23px; }
.demo-total em { color: var(--lime); font-size: 8px; font-style: normal; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.dock-primary.needs-input { background: linear-gradient(115deg, #025159, #038c8c); }
.complete-scope { margin-inline: auto; max-width: 760px; text-align: left; }

.verify-screen { padding-top: 70px; }
.verify-heading { max-width: 880px; margin-bottom: 48px; }
.verify-heading h1 { margin: 16px 0; font-size: clamp(48px, 6vw, 76px); font-weight: 500; line-height: .95; letter-spacing: -.07em; }
.verify-heading p { max-width: 680px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.verify-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 18px; align-items: start; }
.verify-console { padding: 30px; }
.verify-principles { padding: 28px; border-radius: 22px; background: linear-gradient(145deg, rgba(19,32,30,.98), rgba(8,15,14,.99)); box-shadow: 0 26px 74px rgba(0,0,0,.24); }
.verify-principles > span { color: var(--cyan); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.verify-principles ol { list-style: none; margin: 23px 0; padding: 0; display: grid; gap: 8px; }
.verify-principles li { padding: 14px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 11px; border-radius: 12px; background: rgba(255,255,255,.032); }
.verify-principles li i { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(8, 166, 150,.07); color: var(--cyan); font-style: normal; }
.verify-principles li b { font-size: 10px; }
.verify-principles li small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.verify-principles > p { margin: 0; padding: 15px; border-radius: 12px; background: rgba(242, 135, 5,.055); color: var(--muted); font-size: 9px; line-height: 1.55; }
.verify-principles > p b { display: block; margin-bottom: 4px; color: var(--amber); }

.surface-grid .surface-item { min-height: 76px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 11px; background: rgba(255,255,255,.03); }
.surface-item > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: rgba(8, 166, 150,.065); color: var(--cyan); font-style: normal; }
.surface-item b, .surface-item small { display: block; }
.surface-item b { font-size: 11px; }
.surface-item small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.surface-item > em { color: var(--lime); font-size: 7px; font-style: normal; }
.account-mode { padding: 9px 12px; border-radius: 999px; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.account-mode.demo { background: rgba(242, 135, 5,.09); color: var(--amber); }
.account-mode.live { background: rgba(8, 166, 150,.08); color: var(--lime); }
.settings-card > button.selected { background: linear-gradient(135deg, rgba(3, 140, 140,.22), rgba(8, 166, 150,.055)); }
.fund-card details { margin-top: 20px; padding: 14px; border-radius: 11px; background: rgba(255,255,255,.03); }
.fund-card summary { cursor: pointer; color: #cbd4d0; font-size: 9px; }
.fund-card summary span { float: right; color: var(--cyan); }
.fund-card details p { margin: 10px 0 0; font-size: 8px; }
.authority-list { display: grid; gap: 7px; }
.authority-list > span { padding: 12px; display: grid; grid-template-columns: 12px 1fr; grid-template-rows: auto auto; column-gap: 8px; border-radius: 10px; background: rgba(255,255,255,.03); }
.authority-list i { grid-row: 1 / 3; width: 7px; height: 7px; margin-top: 3px; border-radius: 50%; }
.authority-list i.ready { background: var(--lime); box-shadow: 0 0 11px rgba(8, 166, 150,.45); }
.authority-list i.pending { background: var(--amber); }
.authority-list b { font-size: 9px; }
.authority-list small { margin-top: 3px; color: var(--muted); font-size: 7px; }
.core-boundary { color: var(--muted); font-size: 8px; line-height: 1.55; }
.core-boundary b { color: var(--amber); }

.seal-row .demo-record { color: var(--amber); }
.seal-row .demo-record .status-dot { background: var(--amber); box-shadow: 0 0 10px rgba(242, 135, 5,.4); }
.seal-row .live-record { color: var(--lime); }
.receipt-scope { margin: 18px 0; padding: 15px; border-radius: 12px; background: rgba(8, 166, 150,.055); }
.receipt-scope small { color: var(--cyan); font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.receipt-scope p { margin: 7px 0 0; color: #b9c6c1; font-size: 9px; line-height: 1.55; }
.verification-banner.demo { background: rgba(242, 135, 5,.055); color: var(--amber); }
.verification-banner.demo i { background: var(--amber); box-shadow: 0 0 10px rgba(242, 135, 5,.45); }
.empty-state .button { margin-top: 16px; }

@media (max-width: 980px) {
  .step-area { grid-template-columns: minmax(0, 1fr); gap: 0; padding-bottom: 10px; }
  .step-shell { margin-inline: auto; }
  .mode-banner { justify-self: center; }
  .machine-heading { grid-template-columns: 1fr; gap: 18px; }
  .draft-actions { justify-self: start; }
  .claim-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  .landing-actions { width: 100%; }
  .landing-text-action { min-height: 42px; }
  .step-area { top: calc(58px + env(safe-area-inset-top)); min-height: 60px; padding: 0 8px; }
  .step-shell { position: static; height: 60px; padding: 0 6px; background: transparent; backdrop-filter: none; }
  .mode-banner { position: fixed; z-index: 82; top: calc(13px + env(safe-area-inset-top)); right: 53px; width: auto; padding: 7px 9px; border-radius: 999px; }
  .mode-banner > i, .mode-banner small { display: none; }
  .mode-banner b { font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
  .machine-screen { padding-top: 28px; }
  .machine-heading { margin-bottom: 27px; }
  .machine-heading h1 { font-size: clamp(42px, 13vw, 56px); }
  .machine-heading p { font-size: 12px; }
  .draft-actions { width: 100%; display: grid; grid-template-columns: 1fr auto; }
  .draft-actions button { min-height: 46px; }
  .proof-empty { grid-template-columns: 36px 1fr; }
  .proof-empty > i { width: 36px; height: 36px; }
  .proof-empty button { grid-column: 1 / -1; min-height: 46px; }
  .verify-screen { padding-top: 40px; }
  .verify-heading { margin-bottom: 30px; }
  .verify-heading h1 { font-size: 44px; }
  .verify-layout { grid-template-columns: 1fr; gap: 12px; }
  .verify-console, .verify-principles { padding: 20px; border-radius: 17px; }
  .surface-grid .surface-item { min-height: 70px; }
  .account-mode { grid-column: 1 / -1; justify-self: start; }
  .demo-total { align-items: flex-start; }
  .demo-total strong { font-size: 20px; }
  .seal-action-dock .dock-primary b { max-width: calc(100vw - 124px); }
}

/*
 * Viewport composition system
 * The product is intentionally spacious: editorial scale, legible controls and
 * a consistent reading rhythm replace compact dashboard conventions.
 */
:root {
  --viewport-gutter: clamp(24px, 4.5vw, 86px);
  --space-section: clamp(112px, 10vw, 184px);
  --type-micro: clamp(11px, .7vw, 12px);
  --type-label: clamp(12px, .8vw, 14px);
  --type-small: clamp(13px, .9vw, 15px);
  --type-body: clamp(16px, 1.05vw, 18px);
  --type-body-large: clamp(18px, 1.25vw, 21px);
  --radius-panel: clamp(20px, 1.7vw, 28px);
}

/* Header */
.app-header {
  height: 86px;
  padding-inline: var(--viewport-gutter);
}
.brand { gap: 14px; }
.brand-mark { width: 44px; height: 44px; flex-basis: 44px; border-radius: 50%; background-size: 23px 38px; box-shadow: 0 0 0 7px rgba(8, 166, 150, .045), 0 12px 30px rgba(7, 16, 15, .18); }
.brand-lockup { gap: 5px; }
.brand-lockup b { font-size: 13px; }
.brand-lockup small { font-size: 9px; }
.app-header nav { gap: 8px; }
.app-header nav button { min-width: 82px; min-height: 48px; padding-inline: 20px; font-size: 13px; }
.surface-state { grid-template-columns: 34px auto; column-gap: 11px; }
.surface-state > i { width: 34px; height: 34px; font-size: 14px; }
.surface-state span { font-size: 10px; }
.surface-state b { font-size: 12px; }
.system-state { padding: 10px 14px; font-size: 10px; }
.avatar { width: 40px; height: 40px; font-size: 11px; }

/* Editorial home */
.landing-wrap { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); }
.landing-hero { padding: clamp(86px, 7vw, 124px) 0 var(--space-section); }
.landing-kicker { font-size: var(--type-label); letter-spacing: -.015em; }
.landing-hero h1 {
  max-width: 1380px;
  margin: 12px 0 clamp(46px, 5vw, 76px);
  font-size: clamp(82px, 10.4vw, 168px);
  line-height: .84;
}
.landing-lead { width: min(690px, 100%); grid-template-columns: minmax(0, 1fr) 190px; gap: 36px; }
.landing-lead p { font-size: var(--type-body-large); line-height: 1.55; }
.landing-actions { gap: 12px; }
.landing-cta { min-height: 58px; padding-inline: 24px; font-size: 14px; }
.landing-text-action { min-height: 42px; font-size: 13px; }

.product-collage {
  margin-top: clamp(72px, 7vw, 112px);
  grid-template-rows: clamp(420px, 31vw, 500px) clamp(290px, 22vw, 350px);
  gap: 16px;
}
.product-collage > button { padding: clamp(28px, 2.5vw, 40px); border-radius: 10px; }
.collage-copy > span,
.collage-proof > span,
.collage-receipt > span,
.collage-rail > span,
.collage-licence > span { font-size: var(--type-micro); }
.collage-copy h2 { margin-top: clamp(74px, 7vw, 112px); font-size: clamp(56px, 4.8vw, 78px); }
.collage-copy p { max-width: 330px; font-size: var(--type-small); line-height: 1.58; }
.collage-aperture { top: clamp(58px, 5vw, 84px); width: clamp(190px, 15vw, 240px); height: clamp(190px, 15vw, 240px); }
.collage-aperture i, .collage-aperture small { font-size: var(--type-micro); }
.collage-aperture strong { font-size: clamp(68px, 5.2vw, 88px); }
.collage-action { right: 32px; bottom: 30px; min-width: 174px; padding: 16px 19px; font-size: 13px; }
.collage-proof h3 { max-width: 520px; margin-top: clamp(76px, 6vw, 104px); font-size: clamp(40px, 3.35vw, 54px); }
.mini-evidence { left: 32px; right: 32px; bottom: 30px; padding: 18px; grid-template-columns: 36px 1fr; column-gap: 13px; }
.mini-evidence i { width: 36px; height: 36px; font-size: 12px; }
.mini-evidence b { font-size: var(--type-small); }
.mini-evidence small { font-size: var(--type-micro); }
.receipt-orbit { width: 76px; height: 76px; right: 32px; top: 30px; font-size: 18px; }
.collage-receipt h3 { margin-top: 78px; font-size: clamp(34px, 2.8vw, 46px); }
.collage-receipt code { font-size: var(--type-label); }
.collage-rail > span { margin-bottom: 24px; }
.collage-rail > div { grid-template-columns: 38px 1fr; gap: 11px; margin-top: 10px; padding: 11px 13px; }
.collage-rail i { width: 36px; height: 36px; }
.collage-rail b { font-size: var(--type-small); }
.collage-licence strong { margin: 46px 0 26px; font-size: clamp(44px, 3.5vw, 60px); }
.collage-licence > div { padding: 14px; }
.collage-licence small, .collage-licence b, .collage-licence em { font-size: var(--type-label); }
.collage-licence em { margin-top: 18px; }

.landing-process, .landing-integrate, .landing-use { padding: var(--space-section) 0; }
.section-intro.split { grid-template-columns: .92fr 1.08fr; gap: clamp(70px, 8vw, 140px); margin-bottom: clamp(76px, 7vw, 112px); }
.section-intro h2, .integrate-copy h2 { font-size: clamp(72px, 7.3vw, 116px); }
.section-intro.split > div p,
.section-intro.split > p,
.integrate-copy p { max-width: 620px; font-size: var(--type-body); line-height: 1.68; }
.process-list { gap: clamp(44px, 4vw, 68px); }
.process-list article { grid-template-columns: 280px minmax(0, 1fr); gap: clamp(50px, 5vw, 86px); }
.process-copy small { font-size: var(--type-micro); }
.process-copy h3 { margin: 11px 0 12px; font-size: clamp(38px, 2.6vw, 46px); }
.process-copy p { max-width: 270px; font-size: var(--type-small); line-height: 1.65; }
.process-visual { min-height: clamp(210px, 16vw, 260px); padding: 34px 46px; }
.process-visual > strong { font-size: clamp(24px, 2vw, 34px); }
.process-visual.seal dl { font-size: 13px; }

.integrate-grid { grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 8vw, 130px); }
.memory-highlight { width: fit-content; margin-top: 22px; display: block; background: linear-gradient(95deg, var(--lime), var(--cyan) 58%, #f28705); background-clip: text; -webkit-background-clip: text; color: transparent; font-size: clamp(27px, 2.15vw, 36px); font-weight: 580; line-height: 1; letter-spacing: -.045em; }
.memory-highlight + h2 { margin-top: 15px; }
.surface-orbit { width: min(100%, 620px); height: 560px; }
.orbit-core { width: 176px; height: 176px; }
.orbit-core span { font-size: 62px; }
.orbit-core small { font-size: var(--type-micro); }
.orbit-node { width: 188px; height: 88px; padding: 16px 18px; grid-template-columns: 44px 1fr; column-gap: 13px; }
.orbit-node i { width: 44px; height: 44px; font-size: 19px; }
.orbit-node b { font-size: var(--type-small); }
.orbit-node small { font-size: var(--type-micro); }
.integrate-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.integrate-chips span { padding: 12px 17px; font-size: var(--type-label); }

.landing-trust { padding: var(--space-section) 0; }
.trust-stage { margin-top: clamp(74px, 7vw, 112px); gap: 20px; }
.trust-card { min-height: clamp(500px, 35vw, 580px); padding: clamp(32px, 2.7vw, 44px); border-radius: 36px 36px 9px 9px; }
.trust-card > small { font-size: var(--type-micro); }
.trust-card h3 { font-size: clamp(34px, 2.6vw, 44px); }
.trust-card > span { font-size: var(--type-small); }
.trust-symbol { width: clamp(136px, 11vw, 176px); height: clamp(136px, 11vw, 176px); font-size: clamp(46px, 4vw, 62px); }
.section-intro.centred { margin-bottom: clamp(72px, 7vw, 110px); }
.use-grid { gap: 22px; }
.use-art { height: clamp(300px, 23vw, 360px); border-radius: 10px; }
.use-grid > button > small { margin-top: 22px; font-size: var(--type-micro); }
.use-grid h3 { min-height: 110px; margin: 13px 0; font-size: clamp(22px, 1.55vw, 27px); line-height: 1.16; }
.use-link { font-size: var(--type-label); }

.landing-conversion { min-height: 940px; padding: var(--space-section) 0 112px; }
.conversion-grid { gap: clamp(80px, 9vw, 150px); }
.conversion-copy blockquote { max-width: 860px; font-size: clamp(58px, 5.7vw, 92px); line-height: .94; }
.conversion-copy > p { max-width: 660px; font-size: var(--type-body); }
.mobile-device { width: 380px; min-height: 720px; padding: 34px 30px; border-radius: 58px; }
.device-top { margin-bottom: 66px; font-size: 14px; }
.device-top i { width: 38px; height: 38px; font-size: 11px; }
.mobile-device > small { font-size: var(--type-micro); }
.device-aperture { width: 206px; height: 206px; }
.device-aperture strong { font-size: 76px; }
.device-aperture span { font-size: var(--type-micro); }
.mobile-device h3 { font-size: 34px; }
.device-checks { gap: 13px; font-size: var(--type-small); }
.mobile-device > button { min-height: 58px; padding-inline: 19px; font-size: 14px; }
.landing-cycles { padding: var(--space-section) 0; overflow: hidden; }
.cycle-opening { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .55fr); align-items: center; gap: clamp(70px, 9vw, 150px); }
.cycle-copy h2 { margin: 22px 0 34px; max-width: 940px; font-family: var(--sans); font-size: clamp(70px, 7.2vw, 116px); font-weight: 500; line-height: .88; letter-spacing: -.075em; }
.cycle-copy h2 em { color: var(--cobalt); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
.cycle-copy p { max-width: 790px; color: #596664; font-size: var(--type-body); line-height: 1.62; }
.cycle-orbit { position: relative; width: min(100%, 430px); aspect-ratio: 1; display: grid; place-content: center; justify-items: center; border-radius: 50%; background: radial-gradient(circle at 38% 32%, rgba(8, 166, 150, .24), transparent 34%), radial-gradient(circle at 68% 70%, rgba(3, 140, 140, .52), transparent 42%), #061312; color: #f4f2ea; box-shadow: 0 40px 110px rgba(17, 39, 45, .24); isolation: isolate; }
.cycle-orbit::before { content: ""; position: absolute; inset: 8%; border-radius: 50%; background: conic-gradient(from 32deg, var(--lime) 0 14%, rgba(8, 166, 150, .35) 14% 42%, rgba(242, 135, 5, .62) 42% 72%, rgba(255,255,255,.12) 72% 100%); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0); mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0); }
.cycle-orbit span { font-family: var(--serif); font-size: clamp(100px, 10vw, 156px); line-height: .75; letter-spacing: -.07em; }
.cycle-orbit strong { margin-top: 18px; color: var(--cyan); font-size: var(--type-body); font-weight: 500; text-transform: uppercase; letter-spacing: .22em; }
.cycle-orbit small { margin-top: 10px; color: #9caaa8; font-size: var(--type-micro); text-transform: uppercase; letter-spacing: .18em; }
.cycle-node { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 28px rgba(8, 166, 150, .65); }
.cycle-node.one { top: 8%; left: 50%; }
.cycle-node.two { right: 6%; top: 54%; background: var(--cyan); }
.cycle-node.three { left: 10%; bottom: 20%; background: var(--cobalt); }
.cycle-principles { margin-top: clamp(90px, 9vw, 140px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.cycle-principles article { min-height: 360px; padding: clamp(34px, 4vw, 58px); display: flex; flex-direction: column; justify-content: flex-end; border-radius: 34px; background: #ebeae3; }
.cycle-principles article:last-child { background: linear-gradient(135deg, #0a1716, #08101d 72%); color: #f4f2ea; }
.cycle-principles small { margin-bottom: auto; color: var(--cobalt); font-size: var(--type-micro); letter-spacing: .2em; }
.cycle-principles article:last-child small { color: var(--lime); }
.cycle-principles h3 { max-width: 660px; margin: 90px 0 20px; font-family: var(--sans); font-size: clamp(42px, 4vw, 64px); font-weight: 500; line-height: .96; letter-spacing: -.06em; }
.cycle-principles p { max-width: 650px; color: #667270; font-size: var(--type-small); line-height: 1.6; }
.cycle-principles article:last-child p { color: #a9b4b2; }
.cycle-community { margin-top: 20px; padding: clamp(38px, 5vw, 70px); display: grid; grid-template-columns: .85fr 1.1fr .8fr; gap: clamp(34px, 5vw, 76px); align-items: end; border-radius: 34px; background: radial-gradient(circle at 7% 10%, rgba(83, 231, 236, .22), transparent 22%), linear-gradient(135deg, #025159, #038c8c 54%, #f28705); color: white; box-shadow: 0 42px 110px rgba(2, 81, 89, .23); }
.community-intro h3 { margin: 16px 0; font-family: var(--sans); font-size: clamp(42px, 3.8vw, 62px); font-weight: 500; line-height: .94; letter-spacing: -.06em; }
.community-intro p { max-width: 420px; color: rgba(255,255,255,.75); font-size: var(--type-small); line-height: 1.55; }
.cycle-form label, .community-channels > span { display: block; margin-bottom: 12px; color: rgba(255,255,255,.72); font-size: var(--type-micro); text-transform: uppercase; letter-spacing: .16em; }
.cycle-form > div { display: grid; grid-template-columns: 1fr auto; gap: 9px; padding: 8px; border-radius: 18px; background: rgba(5, 12, 20, .88); }
.cycle-form input { min-width: 0; min-height: 58px; padding: 0 16px; border: 0; outline: 0; background: transparent; color: white; font: inherit; font-size: 16px; }
.cycle-form input::placeholder { color: #85908f; }
.cycle-form button { min-height: 58px; padding: 0 24px; border: 0; border-radius: 13px; background: var(--lime); color: #07100e; font: inherit; font-size: 14px; font-weight: 650; cursor: pointer; }
.cycle-form > small, .community-channels > small { display: block; min-height: 22px; margin-top: 11px; color: rgba(255,255,255,.72); font-size: var(--type-micro); line-height: 1.45; }
.community-channels > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.community-channels button { min-height: 58px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 14px; background: rgba(7, 15, 23, .72); color: white; font: inherit; font-size: 13px; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.community-channels button:hover { transform: translateY(-2px); background: #07100e; }
.community-channels button.selected { background: var(--lime); color: #07100e; }
.community-channels button i { font-style: normal; }
.landing-footer .landing-wrap { min-height: 150px; }
.landing-footer p, .landing-footer button, .landing-footer small { font-size: var(--type-small); }

/* Product shell */
.workspace { width: min(1380px, calc(100% - (var(--viewport-gutter) * 2))); }
.step-area { top: 86px; min-height: 104px; grid-template-columns: minmax(520px, 840px) auto; gap: 46px; padding-inline: var(--viewport-gutter); }
.step-shell { max-width: 840px; height: 88px; }
.step-shell button { gap: 10px; font-size: var(--type-micro); }
.step-shell button i { width: 30px; height: 30px; font-size: 11px; }
.mode-banner { padding: 13px 16px; }
.mode-banner > i { width: 34px; height: 34px; }
.mode-banner b { font-size: var(--type-label); }
.mode-banner small { font-size: var(--type-micro); }
.machine-screen { padding-top: 64px; }
.machine-heading { margin-bottom: 48px; }
.machine-heading h1 { max-width: 980px; font-size: clamp(64px, 5.3vw, 88px); }
.machine-heading p, .verify-heading p { max-width: 780px; font-size: var(--type-body); }
.eyebrow { font-size: var(--type-label); }
.draft-actions { gap: 10px; }
.draft-actions button { min-height: 48px; padding-inline: 18px; font-size: var(--type-label); }
.kind-picker { margin-bottom: 30px; }
.kind-picker-heading { margin-bottom: 16px; }
.kind-picker-heading > span { font-size: var(--type-body); }
.kind-picker-heading > small { font-size: var(--type-small); }
.kind-options { gap: 14px; }
.kind-options button { min-height: 122px; padding: 19px; grid-template-columns: 42px minmax(0, 1fr) 20px; gap: 14px; border-radius: 20px; }
.kind-options button > i { width: 42px; height: 42px; font-size: 18px; }
.kind-options button b { font-size: var(--type-body); }
.kind-options button small { font-size: var(--type-label); line-height: 1.45; }
.kind-options button > em { font-size: var(--type-label); }
.observe-grid { grid-template-columns: minmax(0, 1.5fr) minmax(380px, .58fr); gap: 24px; }
.panel { border-radius: var(--radius-panel); }
.work-card, .readiness-card, .review-main, .side-summary, .fee-card, .identity-card { padding: clamp(30px, 2.3vw, 40px); }
.panel-top { margin-bottom: 32px; font-size: var(--type-label); }
.field { margin-bottom: 25px; font-size: var(--type-label); }
.field input, .field textarea,
.licence-settings input, .licence-settings select,
.storage-select select, .settings-card select,
.verify-field input, .search input { min-height: 54px; padding: 16px 17px; font-size: 16px; }
.field > small { margin-top: 9px; font-size: var(--type-label); }
.origin-boundary, .settlement-note, .token-boundary { gap: 14px; padding: 18px; border-radius: 17px; }
.origin-boundary > i, .settlement-note > i, .token-boundary > i { width: 30px; height: 30px; font-size: 12px; }
.origin-boundary b, .settlement-note b, .token-boundary b { font-size: var(--type-small); }
.origin-boundary span, .settlement-note small, .token-boundary small { font-size: var(--type-label); }
.evidence-head { margin-bottom: 16px; }
.evidence-head b { font-size: var(--type-body); }
.evidence-head span { font-size: var(--type-label); }
.evidence-head button, .capture-strip button, .profile-card > button, .settings-card > button, .fund-card > button, .core-card > button { font-size: var(--type-label); }
.evidence-list { gap: 10px; }
.evidence-list > div { min-height: 76px; padding: 13px 16px; grid-template-columns: 34px 1fr auto 24px; gap: 14px; border-radius: 14px; }
.evidence-list > div > i { width: 32px; height: 32px; font-size: var(--type-micro); }
.evidence-list b { font-size: var(--type-small); }
.evidence-list small, .evidence-list code { font-size: var(--type-micro); }
.evidence-list em { font-size: var(--type-label); }
.proof-empty { min-height: 160px; padding: 26px; grid-template-columns: 50px 1fr auto; gap: 18px; border-radius: 18px; }
.proof-empty > i { width: 50px; height: 50px; }
.proof-empty b { font-size: var(--type-body); }
.proof-empty small { font-size: var(--type-label); }
.proof-empty button { min-height: 48px; padding-inline: 18px; font-size: var(--type-label); }
.capture-strip { padding: 18px; }
.capture-strip b { font-size: var(--type-small); }
.capture-strip small { font-size: var(--type-label); }
.seal-aperture { width: 240px; height: 240px; }
.seal-aperture small, .seal-aperture span { font-size: var(--type-label); }
.readiness-card h2 { font-family: var(--sans); font-size: 31px; font-weight: 500; letter-spacing: -.04em; }
.readiness-card > p { max-width: 330px; font-size: var(--type-small); }
.plain-checks { gap: 10px; }
.plain-checks span { padding: 14px; font-size: var(--type-small); }
.button { min-height: 56px; padding-inline: 22px; border-radius: 14px; font-size: 14px; }
.text-button, .back { min-height: 42px; font-size: var(--type-label); }

.flow-screen { padding-top: 56px; }
.flow-heading { max-width: 980px; margin-bottom: 52px; }
.flow-heading h1 { font-size: clamp(58px, 5vw, 80px); }
.flow-heading p { max-width: 760px; font-size: var(--type-body); }
.flow-grid, .authorize-grid { grid-template-columns: minmax(0, 1.4fr) minmax(380px, .6fr); gap: 24px; }
.summary-banner { grid-template-columns: 96px 1fr; gap: 24px; padding: 22px; border-radius: 18px; }
.mini-seal { width: 96px; height: 96px; font-size: 35px; }
.summary-banner small { font-size: var(--type-micro); }
.summary-banner h2 { font-family: var(--sans); font-size: 32px; font-weight: 500; letter-spacing: -.04em; }
.summary-banner p { font-size: var(--type-small); }
.review-facts { gap: 10px; }
.review-facts > div { padding: 18px !important; border-radius: 14px; }
.review-facts small { font-size: var(--type-micro); }
.review-facts strong { font-size: var(--type-small); }
.scope-card { margin: 18px 0 30px; padding: 22px; border-radius: 18px; }
.scope-card small { font-size: var(--type-micro); }
.scope-card p { font-size: var(--type-small); }
.section-label { margin: 32px 0 15px; }
.section-label span { font-size: var(--type-body); }
.section-label small { font-size: var(--type-label); }
.choice-stack { gap: 11px; }
.choice-stack button { min-height: 72px; padding: 18px; grid-template-columns: 26px 1fr auto; border-radius: 14px; }
.choice-stack b { font-size: var(--type-small); }
.choice-stack small, .choice-stack em { font-size: var(--type-micro); }
.side-summary dl div, .receipt-drawer dl div { padding: 15px; border-radius: 13px; }
.side-summary dt, .receipt-drawer dt { font-size: var(--type-micro); }
.side-summary dd, .receipt-drawer dd { font-size: var(--type-small); }
.privacy-note { padding: 18px; border-radius: 14px; }
.privacy-note b { font-size: var(--type-small); }
.privacy-note small { font-size: var(--type-label); }

.rail-grid { gap: 20px; }
.rail-card { min-height: 470px; padding: 32px; border-radius: var(--radius-panel); }
.rail-mark { width: 58px; height: 58px; font-size: 24px; }
.rail-card > small { font-size: var(--type-micro); }
.rail-card h2 { margin: 14px 0; font-family: var(--sans); font-size: clamp(42px, 3vw, 52px); font-weight: 500; letter-spacing: -.055em; }
.rail-card > p { font-size: var(--type-body); }
.rail-detail { font-size: var(--type-small); }
.rail-card footer small { font-size: var(--type-micro); }
.rail-card footer b { font-size: var(--type-small); }
.destination-footer { min-height: 136px; padding: 24px; gap: 26px; border-radius: 22px; }
.destination-choice { min-width: 330px; }
.destination-choice small, .quote-chip small, .storage-select { font-size: var(--type-micro); }
.destination-choice strong { font-size: var(--type-body); }
.destination-choice p, .quote-chip span, .destination-note { font-size: var(--type-label); }
.quote-chip { padding: 16px 20px; }
.quote-chip strong { font-size: 26px; }
.fee-title small { font-size: var(--type-micro); }
.fee-title h2 { font-family: var(--sans); font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
.fee-lines > div { padding: 16px; border-radius: 13px; font-size: var(--type-small); }
.quote-disclaimer { font-size: var(--type-label); }
.identity-option { min-height: 70px; padding: 16px; border-radius: 14px; }
.identity-option > i { width: 40px; height: 40px; font-size: var(--type-label); }
.identity-option b, .authorization-note b { font-size: var(--type-small); }
.identity-option small, .authorization-note span { font-size: var(--type-label); }
.demo-total { padding: 22px; border-radius: 16px; }
.demo-total small, .demo-total em { font-size: var(--type-micro); }
.demo-total strong { font-size: 28px; }

.sealing-screen, .complete-screen { max-width: 980px; }
.sealing-screen > p, .complete-screen > p { font-size: var(--type-body); }
.sealing-steps { max-width: 720px; gap: 9px; }
.sealing-steps > div { min-height: 68px; padding-inline: 19px; }
.sealing-steps span { font-size: var(--type-small); }
.sealing-steps em, .failure-facts small { font-size: var(--type-micro); }
.seal-protocol { font-size: 13px !important; }
.seal-rings b { font-size: var(--type-micro); }
.seal-id { font-size: var(--type-label); }
.receipt-summary > div { padding: 20px; }
.receipt-summary small { font-size: var(--type-micro); }
.receipt-summary strong { font-size: var(--type-small); }
.after-seal { gap: 13px; }
.after-seal button { min-height: 92px; padding: 19px; border-radius: 14px; }
.after-seal b { font-size: var(--type-small); }
.after-seal small { font-size: var(--type-micro); }

.library-screen, .account-screen, .verify-screen { padding-top: 84px; }
.library-heading { margin-bottom: 58px; }
.library-heading p { font-size: var(--type-body); }
.filters button { min-height: 40px; padding-inline: 16px; font-size: var(--type-label); }
.search { width: 320px; height: 48px; padding-inline: 14px; border-radius: 12px; }
.seal-row { min-height: 94px; padding-inline: 26px; gap: 20px; }
.seal-row.head { min-height: 48px; font-size: var(--type-micro); }
.row-mark { width: 42px; height: 42px; }
.seal-row b { font-size: var(--type-small); }
.seal-row small, .seal-row code, .seal-row em, .seal-row > span:nth-child(5) { font-size: var(--type-micro); }
.empty-state p { font-size: var(--type-small); }
.account-grid { gap: 20px; }
.account-grid article { padding: clamp(28px, 2.2vw, 38px); }
.profile-card { grid-template-columns: 82px 1fr auto; gap: 22px; }
.profile-avatar { width: 82px; height: 82px; font-size: 28px; }
.profile-card small, .settings-card > label, .custody-path small, .connection-state small, .core-card dt { font-size: var(--type-micro); }
.profile-card h2 { font-family: var(--sans); font-size: 32px; font-weight: 500; letter-spacing: -.04em; }
.profile-card p, .settings-card > button small, .custody-path code, .fund-card > p, .core-card dd { font-size: var(--type-small); }
.settings-card > button { min-height: 72px; padding-block: 16px; }
.settings-card > button b, .connection-state b, .authority-list b { font-size: var(--type-small); }
.surface-grid .surface-item { min-height: 92px; padding: 16px 18px; grid-template-columns: 46px 1fr auto; }
.surface-item > i { width: 44px; height: 44px; }
.surface-item b { font-size: var(--type-small); }
.surface-item small, .surface-item > em, .authority-list small, .core-boundary { font-size: var(--type-micro); }
.account-mode { padding: 11px 15px; font-size: var(--type-micro); }
.fund-card summary, .fund-card details p { font-size: var(--type-label); }
.verify-heading { margin-bottom: 58px; }
.verify-heading h1 { font-size: clamp(60px, 6vw, 88px); }
.verify-layout { grid-template-columns: minmax(0, 1.3fr) minmax(390px, .7fr); gap: 22px; }
.verify-console, .verify-principles { padding: 38px; border-radius: var(--radius-panel); }
.drawer-intro { font-size: var(--type-small); }
.verify-field { font-size: var(--type-micro); }
.verify-field button { min-width: 120px; font-size: var(--type-label); }
.verify-guidance b, .boundary-card b, .verify-principles li b { font-size: var(--type-small); }
.verify-guidance small, .boundary-card small, .verify-result > p, .verify-principles li small, .verify-principles > p { font-size: var(--type-label); }
.verify-progress { font-size: var(--type-small); }
.verify-result > small, .verify-result dt, .verify-principles > span { font-size: var(--type-micro); }
.verify-result dd { font-size: var(--type-small); }
.receipt-drawer { width: min(620px, 100%); padding: 62px 52px; }
.receipt-drawer h2 { font-family: var(--sans); font-size: 40px; font-weight: 500; letter-spacing: -.04em; }
.drawer-id, .verification-banner, .receipt-drawer summary, .receipt-drawer details p, .receipt-scope p { font-size: var(--type-label); }
.verification-banner span, .receipt-scope small { font-size: var(--type-micro); }
.app-footer { min-height: 94px; padding-inline: var(--viewport-gutter); font-size: var(--type-micro); }
.seal-action-dock { width: min(780px, calc(100% - 48px)); min-height: 82px; padding: 10px; border-radius: 23px; }
.seal-action-dock .dock-back, .dock-back-spacer { width: 60px; flex-basis: 60px; }
.seal-action-dock .dock-primary { min-height: 62px; padding-inline: 22px; border-radius: 15px; }
.seal-action-dock .dock-primary small { font-size: var(--type-micro); }
.seal-action-dock .dock-primary b { font-size: 14px; }

@media (max-width: 1100px) {
  :root { --viewport-gutter: clamp(24px, 3vw, 40px); }
  .landing-wrap, .workspace { width: calc(100% - (var(--viewport-gutter) * 2)); }
  .step-area { grid-template-columns: minmax(0, 1fr); gap: 8px; padding-block: 8px; }
  .mode-banner { justify-self: center; }
  .product-collage { grid-template-rows: 410px 300px; }
  .collage-aperture { width: 184px; height: 184px; }
  .process-list article { grid-template-columns: 240px minmax(0, 1fr); }
  .observe-grid, .flow-grid, .authorize-grid, .verify-layout { grid-template-columns: 1fr; }
  .readiness-card, .side-summary { position: relative; top: auto; }
  .kind-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  :root {
    --viewport-gutter: 18px;
    --space-section: 100px;
    --type-micro: 11px;
    --type-label: 12px;
    --type-small: 14px;
    --type-body: 16px;
    --type-body-large: 18px;
  }
  .app-header { height: calc(64px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) 16px 0; }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; border-radius: 50%; background-size: 20px 33px; }
  .brand-lockup b { font-size: 11px; }
  .brand-lockup small { font-size: 8px; }
  .app-header nav button > span { font-size: 11px; }
  .landing-wrap, .workspace { width: calc(100% - 36px); }
  .landing-hero { padding-top: 62px; }
  .landing-kicker { font-size: 12px; }
  .landing-hero h1 { margin: 10px 0 34px; font-size: clamp(60px, 18vw, 82px); line-height: .86; }
  .landing-lead { grid-template-columns: 1fr; gap: 22px; }
  .landing-lead p { font-size: 18px; }
  .landing-cta { min-height: 58px; font-size: 15px; }
  .landing-text-action { min-height: 48px; font-size: 14px; }
  .product-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 300px 280px 310px 270px;
    gap: 12px;
  }
  .product-collage > button { padding: 22px; border-radius: 10px; }
  .collage-main, .collage-proof, .collage-receipt, .collage-rail, .collage-licence { grid-column: 1; }
  .collage-main { grid-row: 1; }
  .collage-proof { grid-row: 2; }
  .collage-receipt { grid-row: 3; }
  .collage-rail { grid-row: 4; }
  .collage-licence { grid-row: 5; }
  .collage-copy { max-width: 62%; }
  .collage-copy h2 { margin-top: 82px; font-size: clamp(37px, 11.5vw, 50px); }
  .collage-copy p { display: none; }
  .collage-aperture { top: 54px; right: 5%; width: 132px; height: 132px; }
  .collage-aperture strong { font-size: 46px; }
  .collage-aperture i, .collage-aperture small { font-size: 9px; }
  .collage-action { left: 22px; right: 22px; bottom: 22px; min-width: 0; font-size: 14px; }
  .collage-proof h3, .collage-receipt h3 { margin-top: 54px; font-size: 30px; }
  .mini-evidence { left: 20px; right: 20px; bottom: 20px; padding: 15px; }
  .mini-evidence b { font-size: 14px; }
  .mini-evidence small { font-size: 11px; }
  .collage-receipt code { font-size: 12px; }
  .collage-rail > div { padding: 11px 13px; }
  .collage-licence strong { margin-top: 45px; font-size: 46px; }
  .section-intro.split { grid-template-columns: 1fr; gap: 30px; margin-bottom: 58px; }
  .section-intro h2, .integrate-copy h2 { font-size: clamp(62px, 18vw, 78px); }
  .section-intro.split > div p, .section-intro.split > p, .integrate-copy p { font-size: 17px; }
  .process-list { gap: 56px; }
  .process-list article { grid-template-columns: 1fr; gap: 20px; }
  .process-copy p { max-width: 100%; font-size: 14px; }
  .process-visual { min-height: 178px; padding: 24px; }
  .process-visual > strong { font-size: 23px; }
  .integrate-grid { grid-template-columns: 1fr; gap: 40px; }
  .memory-highlight { margin-top: 18px; font-size: clamp(25px, 8vw, 32px); }
  .surface-orbit { order: 2; height: 390px; }
  .orbit-core { width: 128px; height: 128px; }
  .orbit-node { width: 148px; height: 74px; padding: 11px 12px; grid-template-columns: 36px 1fr; }
  .orbit-node i { width: 36px; height: 36px; }
  .orbit-node b { font-size: 12px; }
  .orbit-node small { font-size: 10px; }
  .trust-stage, .use-grid { gap: 14px; margin-right: -18px; padding-right: 18px; }
  .use-grid > button { min-width: 86vw; }
  .use-art { height: 290px; }
  .use-grid h3 { font-size: 24px; }
  .conversion-grid { grid-template-columns: 1fr; gap: 70px; }
  .conversion-copy blockquote { font-size: clamp(48px, 14vw, 64px); }
  .conversion-copy > p { font-size: 17px; }
  .mobile-device { width: min(340px, 96%); min-height: 650px; padding: 30px 24px; transform: rotate(1.5deg); }
  .device-aperture { width: 180px; height: 180px; }
  .cycle-opening { grid-template-columns: 1fr; gap: 56px; }
  .cycle-copy h2 { font-size: clamp(58px, 17vw, 76px); }
  .cycle-copy p { font-size: 17px; }
  .cycle-orbit { width: min(100%, 340px); justify-self: center; }
  .cycle-principles { grid-template-columns: 1fr; margin-top: 76px; }
  .cycle-principles article { min-height: 330px; padding: 30px; border-radius: 24px; }
  .cycle-principles h3 { margin-top: 72px; font-size: 44px; }
  .cycle-principles p { font-size: 15px; }
  .cycle-community { padding: 28px 20px; grid-template-columns: 1fr; gap: 36px; border-radius: 24px; }
  .community-intro h3 { font-size: 48px; }
  .cycle-form > div { grid-template-columns: 1fr; }
  .cycle-form button { width: 100%; }
  .community-channels > div { grid-template-columns: 1fr; }
  .landing-footer p, .landing-footer button, .landing-footer small { font-size: 13px; }

  .step-area { top: calc(64px + env(safe-area-inset-top)); min-height: 66px; padding: 0 8px; }
  .step-shell { height: 64px; padding-inline: 4px; }
  .step-shell button { gap: 5px; font-size: 10px; letter-spacing: .04em; }
  .step-shell button i { width: 24px; height: 24px; }
  .mode-banner { top: calc(16px + env(safe-area-inset-top)); right: 55px; padding: 8px 10px; }
  .mode-banner b { font-size: 10px; }
  .machine-screen { padding-top: 38px; }
  .machine-heading { margin-bottom: 34px; }
  .machine-heading h1, .verify-heading h1 { font-size: clamp(48px, 14vw, 64px); }
  .machine-heading p, .flow-heading p, .verify-heading p { font-size: 16px; }
  .draft-actions { width: 100%; grid-template-columns: 1fr auto; }
  .draft-actions button { min-height: 50px; font-size: 13px; }
  .kind-picker-heading > span { font-size: 17px; }
  .kind-picker-heading > small { font-size: 13px; }
  .kind-options { display: grid; grid-template-columns: 1fr; overflow: visible; margin: 0; padding: 0; }
  .kind-options button { min-width: 0; min-height: 106px; }
  .kind-options button b { font-size: 16px; }
  .kind-options button small { font-size: 13px; }
  .observe-grid, .flow-grid, .authorize-grid, .verify-layout { gap: 16px; }
  .work-card, .readiness-card, .review-main, .side-summary, .fee-card, .identity-card, .account-grid article { padding: 24px; }
  .field, .panel-top { font-size: 12px; }
  .field input, .field textarea, .licence-settings input, .licence-settings select, .storage-select select, .settings-card select, .verify-field input, .search input { min-height: 56px; font-size: 16px; }
  .proof-empty { grid-template-columns: 44px 1fr; }
  .proof-empty button { grid-column: 1 / -1; min-height: 52px; }
  .seal-aperture { width: 220px; height: 220px; }
  .plain-checks span { font-size: 14px; }
  .flow-screen { padding-top: 40px; }
  .flow-heading { margin-bottom: 36px; }
  .flow-heading h1 { font-size: clamp(46px, 13vw, 60px); }
  .summary-banner { grid-template-columns: 72px 1fr; gap: 16px; padding: 18px; }
  .mini-seal { width: 72px; height: 72px; }
  .summary-banner h2 { font-size: 25px; }
  .review-facts { grid-template-columns: 1fr; }
  .section-label { display: block; }
  .section-label small { display: block; margin-top: 6px; }
  .rail-card { min-height: 390px; padding: 26px; }
  .rail-card h2 { font-size: 44px; }
  .rail-card > p { font-size: 16px; }
  .destination-footer { padding: 22px; }
  .destination-choice, .quote-chip, .storage-select { min-width: 100%; }
  .receipt-summary { grid-template-columns: 1fr; }
  .after-seal button { min-height: 96px; }
  .library-screen, .account-screen, .verify-screen { padding-top: 52px; }
  .filters button { min-height: 44px; font-size: 12px; }
  .search { width: 100%; height: 52px; }
  .seal-row { min-height: 104px; }
  .profile-card { grid-template-columns: 64px 1fr; }
  .profile-avatar { width: 64px; height: 64px; }
  .profile-card > button { grid-column: 1 / -1; }
  .receipt-drawer { padding: 58px 24px 34px; }
  .receipt-drawer h2 { font-size: 34px; }
  .seal-action-dock { left: max(10px, env(safe-area-inset-left)); right: max(10px, env(safe-area-inset-right)); bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom) + 10px); width: auto; min-height: 74px; padding: 8px; transform: none; }
  .seal-action-dock .dock-back, .dock-back-spacer { width: 52px; flex-basis: 52px; }
  .seal-action-dock .dock-primary { min-height: 58px; padding-inline: 16px; }
  .seal-action-dock .dock-primary small { font-size: 10px; }
  .seal-action-dock .dock-primary b { font-size: 14px; }
}

/* Identity and wallet controls */
.wallet-connect {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .065);
  color: #e8eeeb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  cursor: pointer;
  font-size: 12px;
  font-weight: 620;
  white-space: nowrap;
}
.wallet-connect i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 166, 150, .09);
  color: var(--cyan);
  font-style: normal;
}
.wallet-connect .wallet-line-icon svg { width: 18px; height: 18px; display: block; }
.wallet-connect .wallet-line-icon svg path { stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.wallet-connect.connected { background: rgba(8, 166, 150, .08); color: var(--lime); }
.wallet-connect.connected i { background: rgba(8, 166, 150, .11); color: var(--lime); }
.home-header .wallet-connect { background: rgba(7, 16, 15, .055); color: var(--ink); }
.home-header .wallet-connect.connected { background: rgba(3, 140, 140, .08); color: var(--cobalt); }
.avatar { transition: box-shadow .2s ease, transform .2s ease; }
.avatar:hover { transform: translateY(-1px); }
.avatar.active { box-shadow: 0 0 0 3px rgba(8, 166, 150, .16), 0 10px 28px rgba(0, 0, 0, .2); }

/* Fixed five-stage journey control */
.journey-screen { padding-bottom: 196px; }
.seal-action-dock {
  width: min(1420px, calc(100% - 48px));
  min-height: 102px;
  padding: 12px;
  gap: 14px;
  border-radius: 26px;
  background: linear-gradient(105deg, rgba(13, 27, 24, .97), rgba(10, 19, 27, .97));
  box-shadow: 0 28px 100px rgba(0, 0, 0, .58), 0 0 64px rgba(3, 140, 140, .08);
}
.seal-action-dock .dock-back {
  width: 76px;
  flex-basis: 76px;
  border-radius: 18px;
  font-size: 25px;
}
.seal-action-dock .dock-back:disabled { cursor: wait; opacity: .45; }
.dock-progress {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(76px, 1fr));
  align-items: center;
  gap: 6px;
}
.dock-progress button {
  min-width: 0;
  min-height: 72px;
  padding: 7px 5px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #7e8b87;
}
.dock-progress button i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  color: #a2aca8;
  font-size: 11px;
  font-style: normal;
}
.dock-progress button span {
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
  font-size: 10px;
  font-weight: 620;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dock-progress button.done { color: #aab5b0; cursor: pointer; }
.dock-progress button.done i { background: rgba(8, 166, 150, .08); color: var(--lime); }
.dock-progress button.active { color: #eef3f0; }
.dock-progress button.active i { background: var(--cobalt); color: white; box-shadow: 0 8px 24px rgba(3, 140, 140, .35); }
.dock-progress button:last-child.active i { background: var(--lime); color: #07100f; box-shadow: 0 8px 24px rgba(8, 166, 150, .22); }
.seal-action-dock .dock-primary {
  flex: 0 0 clamp(230px, 20vw, 320px);
  min-height: 76px;
  padding-inline: 24px;
  border-radius: 18px;
}
.seal-action-dock .dock-primary small { font-size: 10px; }
.seal-action-dock .dock-primary b { font-size: 16px; }
.seal-action-dock .dock-primary:disabled { cursor: wait; opacity: .78; }

@media (max-width: 1180px) {
  .surface-state { display: none; }
  .seal-action-dock { width: calc(100% - 32px); }
  .seal-action-dock .dock-primary { flex-basis: 250px; }
}

@media (max-width: 820px) {
  .system-state { display: none; }
  .wallet-connect span { max-width: 116px; overflow: hidden; text-overflow: ellipsis; }
  .journey-screen { padding-bottom: 226px; }
  .seal-action-dock {
    min-height: 142px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: 58px 56px;
    gap: 8px;
  }
  .seal-action-dock .dock-back { grid-column: 1; grid-row: 2; width: 56px; min-height: 56px; }
  .dock-progress { grid-column: 1 / 3; grid-row: 1; }
  .dock-progress button { min-height: 54px; padding: 3px 2px; gap: 4px; }
  .dock-progress button i { width: 25px; height: 25px; }
  .dock-progress button span { font-size: 8px; letter-spacing: .06em; }
  .seal-action-dock .dock-primary { grid-column: 2; grid-row: 2; width: 100%; min-height: 56px; }
}

@media (max-width: 700px) {
  :root { --mobile-dock-height: 150px; }
  .app-header nav { grid-template-columns: repeat(3, 1fr); }
  .header-actions { gap: 7px; }
  .wallet-connect { min-height: 38px; padding: 0 10px; gap: 7px; font-size: 10px; }
  .wallet-connect i { width: 23px; height: 23px; }
  .wallet-connect.connected span { max-width: 76px; }
  .avatar { width: 38px; height: 38px; flex: 0 0 38px; }
  .journey-screen { padding-bottom: calc(240px + env(safe-area-inset-bottom)); }
  .seal-action-dock {
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom) + 8px);
    width: auto;
    min-height: 142px;
    padding: 8px;
    transform: none;
    border-radius: 20px;
  }
  .seal-action-dock .dock-primary { padding-inline: 16px; border-radius: 13px; }
  .seal-action-dock .dock-primary small { font-size: 9px; }
  .seal-action-dock .dock-primary b { font-size: 14px; }
}

@media (max-width: 420px) {
  .brand-lockup { display: none; }
  .wallet-connect { padding-inline: 8px; }
  .dock-progress button span { font-size: 7px; letter-spacing: .03em; }
}

/* Desktop typography is sized natively at 100% browser zoom. */
@media (min-width: 701px) {
  :root {
    --type-micro: clamp(14px, .8vw, 15px);
    --type-label: clamp(16px, .95vw, 17px);
    --type-small: clamp(18px, 1.08vw, 19px);
    --type-body: clamp(20px, 1.2vw, 21px);
    --type-body-large: clamp(23px, 1.4vw, 25px);
  }

  .brand-lockup b { font-size: 15px; }
  .brand-lockup small { font-size: 11px; }
  .app-header nav button { font-size: 15px; }
  .surface-state span, .system-state { font-size: 12px; }
  .surface-state b { font-size: 14px; }
  .wallet-connect { font-size: 14px; }
  .avatar { font-size: 12px; }

  .landing-cta, .mobile-device > button, .button { font-size: 16px; }
  .landing-text-action { font-size: 15px; }
  .collage-action { font-size: 15px; }
  .process-visual.seal dl, .device-top { font-size: 15px; }

  .readiness-card h2 { font-size: 35px; }
  .summary-banner h2 { font-size: 36px; }
  .fee-title h2 { font-size: 34px; }
  .quote-chip strong { font-size: 29px; }
  .profile-card h2 { font-size: 36px; }

  .dock-progress button span { font-size: 14px; }
  .dock-progress button i { font-size: 14px; }
  .seal-action-dock .dock-primary small { font-size: 14px; }
  .seal-action-dock .dock-primary b { font-size: 17px; }
}

/* Final alignment system and persistent proof-type navigation */
:root {
  --content-max: 1440px;
  --alignment-gap: clamp(22px, 2vw, 32px);
}

.seal-kind-menu {
  position: sticky;
  top: 86px;
  z-index: 52;
  background: linear-gradient(90deg, rgba(7, 16, 15, .985), rgba(8, 18, 23, .975));
  box-shadow: 0 22px 64px rgba(0, 0, 0, .2);
  backdrop-filter: blur(24px);
}

.seal-kind-menu-inner {
  width: min(var(--content-max), calc(100% - (var(--viewport-gutter) * 2)));
  min-height: 128px;
  margin-inline: auto;
  padding-block: 15px;
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 3.28fr);
  align-items: center;
  gap: var(--alignment-gap);
}

.seal-kind-menu-intro {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.seal-kind-menu-intro strong {
  color: #f2f5f2;
  font-size: var(--type-body);
  font-weight: 570;
  letter-spacing: -.03em;
}

.seal-kind-menu-intro span {
  max-width: 300px;
  color: #8f9b97;
  font-size: var(--type-label);
  line-height: 1.35;
}

.seal-kind-menu-options {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
}

.seal-kind-menu-options button {
  min-width: 0;
  min-height: 94px;
  padding: 15px 14px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 17px;
  background: rgba(255, 255, 255, .038);
  color: #edf2ef;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.seal-kind-menu-options button:hover {
  background: rgba(255, 255, 255, .065);
  transform: translateY(-1px);
}

.seal-kind-menu-options button.selected {
  background: linear-gradient(140deg, rgba(3, 140, 140, .28), rgba(8, 166, 150, .085));
  box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .24), 0 16px 36px rgba(2, 81, 89, .14);
}

.seal-kind-menu-options button > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--cyan);
  font-size: 18px;
  font-style: normal;
}

.seal-kind-menu-options button.selected > i {
  background: var(--cobalt);
  color: white;
}

.seal-kind-menu-options button > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.seal-kind-menu-options button b {
  font-size: var(--type-label);
  font-weight: 620;
  letter-spacing: -.015em;
}

.seal-kind-menu-options button small {
  display: -webkit-box;
  overflow: hidden;
  color: #98a5a0;
  font-size: 13px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.seal-kind-menu-options button > em {
  color: var(--cyan);
  font-size: 17px;
  font-style: normal;
  text-align: center;
}

.seal-kind-menu-options button.selected > em { color: var(--lime); }

.landing-wrap,
.workspace {
  width: min(var(--content-max), calc(100% - (var(--viewport-gutter) * 2)));
  margin-inline: auto;
}

.landing-lead,
.machine-heading,
.library-heading,
.section-intro.split,
.conversion-grid,
.observe-grid,
.flow-grid,
.authorize-grid,
.verify-layout,
.rail-grid,
.trust-stage,
.use-grid,
.account-grid {
  column-gap: var(--alignment-gap);
}

.machine-heading,
.library-heading,
.landing-lead { align-items: end; }

.section-intro.split,
.observe-grid,
.flow-grid,
.authorize-grid,
.verify-layout { align-items: start; }

.process-list article,
.conversion-grid { align-items: center; }

.panel-top {
  min-height: 26px;
  align-items: center;
}

.rail-grid,
.trust-stage,
.use-grid,
.account-grid { align-items: stretch; }

.rail-card,
.trust-card,
.use-grid > button,
.settings-card,
.fund-card,
.core-card { height: 100%; }

.use-grid > button {
  display: flex;
  flex-direction: column;
}

.use-link { margin-top: auto; }

.rail-card footer { margin-top: auto; }

.seal-row,
.seal-row.head {
  grid-template-columns: 2fr .75fr .55fr .75fr .55fr 25px;
  align-items: center;
}

.app-header,
.app-footer {
  padding-inline: max(var(--viewport-gutter), calc((100% - var(--content-max)) / 2));
}

.app-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 0;
}

@media (min-width: 701px) and (max-width: 1180px) {
  .seal-kind-menu-inner {
    min-height: 0;
    padding-block: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seal-kind-menu-intro {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
  }

  .seal-kind-menu-intro span { max-width: none; }
  .seal-kind-menu-options button { min-height: 80px; }
}

@media (max-width: 700px) {
  .seal-kind-menu {
    top: calc(64px + env(safe-area-inset-top));
  }

  .seal-kind-menu-inner {
    width: 100%;
    min-height: 0;
    padding: 12px 14px 14px;
    display: block;
  }

  .seal-kind-menu-intro {
    margin-bottom: 10px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 10px;
  }

  .seal-kind-menu-intro strong { font-size: 16px; }
  .seal-kind-menu-intro span { max-width: none; font-size: 13px; }

  .seal-kind-menu-options {
    margin-right: -14px;
    padding-right: 14px;
    display: flex;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .seal-kind-menu-options::-webkit-scrollbar { display: none; }

  .seal-kind-menu-options button {
    flex: 0 0 min(82vw, 340px);
    min-height: 88px;
    padding: 13px;
    scroll-snap-align: start;
  }

  .seal-kind-menu-options button b { font-size: 15px; }
  .seal-kind-menu-options button small { font-size: 13px; }

  .landing-wrap,
  .workspace {
    width: min(100% - 28px, var(--content-max));
  }

  .app-header,
  .app-footer { padding-inline: 14px; }

  .app-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 8px;
  }

  .machine-heading,
  .library-heading { align-items: start; }
}

/* Global product navigation: logo is Home, seal types are the core menu */
.core-navigation {
  position: static;
  height: auto !important;
  align-self: center;
  align-items: center;
  justify-self: start;
  margin-left: clamp(14px, 2vw, 32px);
  gap: 4px !important;
}

.seal-menu-control { position: relative; height: 46px; display: flex; align-items: center; }

.seal-menu-prefix {
  height: 46px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-right: 6px;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .08em;
  white-space: nowrap;
}

.app-header nav .seal-menu-trigger,
.app-header nav .my-seals-nav,
.app-header nav .verify-nav {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #93a09b;
  cursor: pointer;
  white-space: nowrap;
}

.app-header nav .seal-menu-trigger {
  height: 46px;
  width: 286px;
  min-width: 286px;
  max-width: 286px;
  padding-inline: 14px;
  justify-content: flex-start;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.app-header nav .seal-menu-trigger:hover { color: #fff; background: rgba(89, 220, 232, .055); }
.app-header nav .seal-menu-trigger:focus-visible { outline: 0; background: rgba(89, 220, 232, .065); box-shadow: 0 0 0 3px rgba(89, 220, 232, .07); }

.app-header nav .my-seals-nav {
  height: 48px;
  min-width: 0;
  padding-inline: 14px;
}

.app-header nav .verify-nav {
  height: 48px;
  min-width: 118px;
  padding-inline: 14px;
}

.verify-nav-icon,
.verify-input-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}
.verify-nav-icon::before,
.verify-input-icon::before { content: ""; position: absolute; width: 9px; height: 9px; left: 1px; top: 1px; border: 1.7px solid currentColor; border-radius: 50%; }
.verify-nav-icon::after,
.verify-input-icon::after { content: ""; position: absolute; width: 7px; height: 1.7px; left: 10px; top: 12px; border-radius: 99px; background: currentColor; transform: rotate(45deg); transform-origin: left center; }

.app-header nav .seal-menu-trigger.active,
.app-header nav .my-seals-nav.active,
.app-header nav .verify-nav.active {
  background: rgba(8, 166, 150, .065);
  color: var(--cyan);
}

.home-header nav .seal-menu-trigger,
.home-header nav .my-seals-nav,
.home-header nav .verify-nav { color: #5f6b67; }

.home-header nav .seal-menu-trigger.active,
.home-header nav .my-seals-nav.active,
.home-header nav .verify-nav.active {
  background: rgba(3, 140, 140, .065);
  color: var(--cobalt);
}

.seal-trigger-mark {
  display: grid !important;
  width: 20px;
  height: 20px !important;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--cyan);
  font-size: 18px !important;
  font-style: normal;
}

.seal-trigger-mark svg,
.seal-kind-page-icon svg,
.header-seal-menu .seal-kind-menu-options button > i svg {
  width: 100%;
  height: 100%;
  display: block;
}

.seal-trigger-mark svg { width: 22px; height: 22px; }
.seal-trigger-mark.start-sealing-mark svg path,
.seal-trigger-mark.start-sealing-mark svg circle { stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.select-choice-icon { width: 12px; height: 12px; display: block; border: 1.5px solid currentColor; transform: rotate(45deg); }
.seal-trigger-desktop {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
}
.seal-trigger-desktop small,
.seal-trigger-desktop b { color: inherit; font-size: inherit; font-weight: 650; white-space: nowrap; }
.seal-trigger-desktop small { flex: 0 0 auto; letter-spacing: .02em; }
.seal-trigger-desktop b { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.seal-menu-trigger.is-empty .seal-trigger-desktop { padding-left: 2px; }
.seal-menu-trigger.is-empty .seal-trigger-desktop b { font-size: 12px; font-weight: 620; letter-spacing: .055em; text-transform: uppercase; }
.seal-menu-trigger > em { margin-left: auto; flex: 0 0 auto; }

.home-header .seal-trigger-mark {
  background: transparent;
  color: var(--cobalt);
}

.seal-menu-trigger > em {
  margin-left: auto;
  color: currentColor;
  font-size: 14px;
  font-style: normal;
  transition: transform .2s ease;
}

.seal-menu-trigger[aria-expanded="true"] > em { transform: rotate(180deg); }
.seal-trigger-mobile { display: none; }
.my-seals-nav > i { display: none; font-style: normal; }

.header-seal-menu {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 58;
  padding-inline: max(var(--viewport-gutter), calc((100% - var(--content-max)) / 2));
  background: radial-gradient(circle at 14% 0%, rgba(40, 83, 94, .28), transparent 25%), linear-gradient(108deg, rgba(5, 13, 13, .995), rgba(7, 14, 25, .995));
  box-shadow: 0 42px 110px rgba(0, 0, 0, .46);
  backdrop-filter: blur(28px);
  animation: headerMenuReveal .18s ease-out both;
}

.header-seal-menu-inner {
  min-height: 0;
  padding-block: 30px 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.header-seal-menu .seal-kind-menu-intro {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 3.28fr);
  align-items: end;
  gap: var(--alignment-gap);
}

.header-seal-menu .seal-kind-menu-intro strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.045em;
}

.header-seal-menu .seal-kind-menu-intro span {
  max-width: 520px;
  color: #9ca9a5;
  font-size: 16px;
}

.header-seal-menu .seal-kind-menu-options { gap: 14px; }

.header-seal-menu .seal-kind-menu-options button {
  position: relative;
  min-height: 426px;
  padding: 24px;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: end;
  align-content: end;
  gap: 16px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 18px;
  background: #0b1517;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), box-shadow .32s ease;
}

.header-seal-menu .seal-kind-menu-options button::before,
.header-seal-menu .seal-kind-menu-options button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.header-seal-menu .seal-kind-menu-options button::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(.72) contrast(1.04);
  transform: scale(1.015);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}

.header-seal-menu .seal-kind-menu-options button::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 9, 11, .03) 0%, rgba(3, 9, 11, .22) 42%, rgba(3, 9, 11, .96) 100%);
}

.header-seal-menu .seal-kind-menu-options button[data-kind="token"]::before { background-image: url('../assets/menu/spl-asset-banking.webp'); }
.header-seal-menu .seal-kind-menu-options button[data-kind="work"]::before { background-image: url('../assets/menu/work-banking.webp'); }
.header-seal-menu .seal-kind-menu-options button[data-kind="cause"]::before { background-image: url('../assets/menu/cause-banking.webp'); }
.header-seal-menu .seal-kind-menu-options button[data-kind="community"]::before { background-image: url('../assets/menu/community-participation.webp'); }

.header-seal-menu .seal-kind-menu-options button:hover::before,
.header-seal-menu .seal-kind-menu-options button:focus-visible::before,
.header-seal-menu .seal-kind-menu-options button.selected::before {
  filter: saturate(.95) contrast(1.07);
  transform: scale(1.07);
}

.header-seal-menu .seal-kind-menu-options button:hover {
  transform: translateY(-3px);
  background: #0b1517;
  box-shadow: 0 34px 88px rgba(0, 0, 0, .34);
}

.header-seal-menu .seal-kind-menu-options button.selected {
  background: #0b1517;
  box-shadow: 0 32px 84px rgba(2, 81, 89, .32);
}

.header-seal-menu .seal-kind-menu-options button > i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(7, 20, 22, .58);
  color: var(--cyan);
  font-size: 18px;
  backdrop-filter: blur(18px);
}

.header-seal-menu .seal-kind-menu-options button.selected > i {
  background: var(--cobalt);
  color: white;
}

.header-seal-menu .seal-kind-menu-options button b {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
  white-space: nowrap;
}

.header-seal-menu .seal-kind-menu-options button small {
  margin-top: 7px;
  color: rgba(236, 242, 239, .78);
  font-size: 15px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.header-seal-menu .seal-kind-menu-options button > em {
  padding-top: 10px;
  font-size: 18px;
}

@keyframes headerMenuReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .surface-state { display: none; }
  .app-header nav .seal-menu-trigger { width: 260px; min-width: 260px; max-width: 260px; }
  .seal-menu-prefix { display: none; }
  .seal-trigger-desktop { font-size: 13px; }
  .header-seal-menu .seal-kind-menu-intro { grid-template-columns: auto 1fr; align-items: baseline; gap: 14px; }
  .header-seal-menu .seal-kind-menu-intro span { max-width: none; }
}

@media (max-width: 820px) {
  .brand-lockup { display: none; }
  .core-navigation { margin-left: 8px; }
  .app-header nav .seal-menu-trigger { width: 112px; min-width: 112px; max-width: 112px; padding-inline: 12px; }
  .app-header nav .seal-menu-trigger > .seal-trigger-desktop { display: none; }
  .app-header nav .seal-menu-trigger > .seal-trigger-mobile { display: inline; }
  .my-seals-nav > i { display: block; }
  .app-header nav .my-seals-nav { min-width: 88px; padding-inline: 12px; }
}

.landing-hero h1 .hero-keyword {
  background: none;
  color: var(--ink);
  font-weight: 720;
}

.landing-hero h1 .hero-title-line { display: block; white-space: nowrap; }
.landing-hero h1 .hero-title-line .hero-keyword { color: var(--ink); }

.section-intro .process-title { white-space: nowrap; }

/* One signal colour binds navigation and the Home promise. */
.app-header nav .seal-menu-trigger.active,
.app-header nav .verify-nav.active,
.app-header nav .my-seals-nav.active,
.home-header.is-top nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav).active,
.home-header.is-scrolled nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav).active,
.home-header.is-top .seal-trigger-mark,
.home-header.is-scrolled .seal-trigger-mark { color: #59dce8; }

@media (min-width: 701px) {
  .landing-hero h1 { font-size: clamp(82px, 10.4vw, 168px); line-height: .84; }
}

@media (max-width: 700px) {
  .landing-hero h1 { font-size: clamp(38px, 10.6vw, 52px); line-height: .94; letter-spacing: -.065em; }
}

@media (max-width: 700px) {
  :root { --mobile-nav-height: 0px; }
  .app-shell { padding-bottom: 0; }
  .app-header {
    height: calc(68px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 12px 0;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 6px;
  }
  .app-header nav.core-navigation {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-left: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .app-header nav .seal-menu-trigger,
  .app-header nav .my-seals-nav {
    min-height: 44px;
    border-radius: 13px;
  }
  .app-header nav .seal-menu-trigger { padding-inline: 9px; gap: 6px; }
  .seal-trigger-mark { width: 26px; height: 26px !important; }
  .seal-menu-trigger > em { display: none; }
  .app-header nav .my-seals-nav { min-width: 70px; padding-inline: 8px; gap: 5px; }
  .app-header nav .my-seals-nav > span { font-size: 10px; }
  .app-header nav .my-seals-nav > i { height: auto; font-size: 15px; }
  .header-actions { grid-column: auto; grid-row: auto; gap: 5px; }
  .wallet-connect { width: 40px; min-height: 40px; padding: 0; justify-content: center; }
  .wallet-connect > span { display: none; }
  .avatar { width: 40px; height: 40px; flex-basis: 40px; }
  .header-seal-menu {
    top: calc(68px + env(safe-area-inset-top));
    max-height: calc(100dvh - 68px - env(safe-area-inset-top));
    padding: 0;
    overflow-y: auto;
  }
  .header-seal-menu-inner {
    min-height: 0;
    padding: 20px 14px 26px;
    display: block;
  }
  .header-seal-menu .seal-kind-menu-intro {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .header-seal-menu .seal-kind-menu-intro strong { font-size: 22px; }
  .header-seal-menu .seal-kind-menu-intro span { font-size: 14px; }
  .header-seal-menu .seal-kind-menu-options {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    overflow: visible;
  }
  .header-seal-menu .seal-kind-menu-options button {
    width: 100%;
    min-height: 288px;
    padding: 15px;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    border-radius: 13px;
  }
  .journey-screen { padding-bottom: calc(176px + env(safe-area-inset-bottom)); }
  .seal-action-dock { bottom: calc(env(safe-area-inset-bottom) + 8px); }
  .toast { bottom: calc(var(--mobile-dock-height) + env(safe-area-inset-bottom) + 16px); }
}

@media (max-width: 420px) {
  .app-header nav .my-seals-nav { min-width: 46px; }
  .app-header nav .my-seals-nav > span { display: none; }
  .seal-trigger-mobile { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .header-seal-menu { animation: none; }
}

/* Private source capture and tokenized-asset continuity */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.asset-capture {
  margin: 22px 0 26px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(3, 140, 140, .095), rgba(8, 166, 150, .035));
  box-shadow: inset 0 0 0 1px rgba(8, 166, 150, .09);
  outline: none;
}

.asset-capture:focus-visible { box-shadow: inset 0 0 0 2px var(--cyan); }
.asset-capture-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.asset-capture-heading small { color: var(--cyan); font-size: var(--type-micro); letter-spacing: .12em; text-transform: uppercase; }
.asset-capture-heading h2 { margin: 7px 0 8px; font-size: 28px; font-weight: 520; letter-spacing: -.045em; }
.asset-capture-heading p { max-width: 680px; margin: 0; color: var(--muted); font-size: var(--type-label); line-height: 1.5; }
.asset-remove { min-height: 40px; padding-inline: 14px; border: 0; border-radius: 11px; background: rgba(255,255,255,.05); color: #a8b2ae; cursor: pointer; }
.asset-empty { min-height: 118px; margin-top: 20px; padding: 20px; display: flex; align-items: center; gap: 16px; border-radius: 16px; background: rgba(4, 11, 11, .42); }
.asset-empty-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(8, 166, 150,.08); color: var(--cyan); font-size: 22px; }
.asset-empty b, .asset-empty small { display: block; }
.asset-empty b { font-size: var(--type-small); }
.asset-empty small { margin-top: 5px; color: var(--muted); font-size: var(--type-label); }
.asset-actions { margin-top: 12px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.asset-actions button { min-height: 76px; padding: 13px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 11px; border: 0; border-radius: 14px; background: rgba(255,255,255,.045); text-align: left; cursor: pointer; }
.asset-actions button:hover { background: rgba(255,255,255,.075); }
.asset-actions button > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(8, 166, 150,.08); color: var(--cyan); font-style: normal; }
.asset-actions b, .asset-actions small { display: block; }
.asset-actions b { font-size: var(--type-label); }
.asset-actions small { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.25; }
.asset-preview { min-height: 180px; margin-top: 20px; padding: 12px; display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 22px; align-items: center; border-radius: 16px; background: rgba(4, 11, 11, .55); }
.asset-visual { height: 156px; overflow: hidden; display: grid; place-items: center; border-radius: 12px; background: #091211; }
.asset-visual img, .asset-visual video { width: 100%; height: 100%; object-fit: cover; }
.asset-visual > span { display: grid; justify-items: center; gap: 10px; color: var(--cyan); }
.asset-visual > span i { font-size: 24px; font-style: normal; }
.asset-visual > span small { color: var(--muted); }
.asset-details { min-width: 0; }
.asset-private { display: inline-flex; padding: 7px 10px; border-radius: 9px; background: rgba(8, 166, 150,.08); color: var(--lime); font-size: var(--type-micro); }
.asset-details h3 { margin: 14px 0 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 22px; font-weight: 540; }
.asset-details p { margin: 0 0 12px; color: var(--muted); font-size: var(--type-label); }
.asset-details code, .review-asset code { display: block; overflow: hidden; color: #71827c; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.review-asset { margin: 14px 0; padding: 16px; display: grid; grid-template-columns: 48px minmax(0, 1fr) minmax(180px, .55fr); align-items: center; gap: 16px; border-radius: 15px; background: rgba(8, 166, 150,.045); }
.review-asset > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 11px; background: rgba(8, 166, 150,.08); color: var(--cyan); font-size: 11px; font-weight: 700; }
.review-asset small, .review-asset strong, .review-asset p { display: block; }
.review-asset small { color: var(--muted); font-size: var(--type-micro); text-transform: uppercase; letter-spacing: .1em; }
.review-asset strong { margin-top: 4px; font-size: var(--type-small); }
.review-asset p { margin: 4px 0 0; color: var(--muted); font-size: var(--type-label); }

/* Obsidian Memory: a living, code-native lineage fabric */
.memory-stage {
  isolation: isolate;
  overflow: hidden;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 48%, #102521 0, #071211 48%, #040909 100%);
  box-shadow: 0 44px 100px rgba(7,16,15,.22), inset 0 0 0 1px rgba(8, 166, 150,.07);
}

.memory-stage::before,
.memory-stage::after { display: none; }
.memory-fabric-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: .94; }
.memory-stage .orbit-core,
.memory-stage .orbit-node,
.memory-caption { z-index: 2; }
.memory-stage .orbit-core { width: 142px; height: 142px; border-radius: 28px; background: rgba(4,12,11,.82); box-shadow: 0 24px 70px rgba(0,0,0,.35), inset 0 0 0 1px rgba(8, 166, 150,.13); backdrop-filter: blur(12px); }
.memory-stage .orbit-core span { margin-top: 5px; font-family: var(--sans); font-size: 34px; }
.memory-stage .orbit-core small { margin-top: 5px; }
.memory-energy-mark { width: 30px; height: 39px; display: block; background: url('../public/se-symbol-transparent.png') center / contain no-repeat; }
.memory-stage .orbit-node { width: 154px; height: 72px; padding: 12px 13px; grid-template-columns: 38px minmax(0,1fr); column-gap: 10px; border-radius: 16px; background: rgba(243,240,232,.93); box-shadow: 0 18px 54px rgba(0,0,0,.23); backdrop-filter: blur(10px); }
.memory-stage .orbit-node i { width: 38px; height: 38px; border-radius: 10px; }
.memory-caption { position: absolute; left: 24px; top: 22px; display: grid; gap: 4px; color: white; }
.memory-caption small { color: var(--cyan); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.memory-caption b { font-size: 14px; font-weight: 520; }

@media (max-width: 700px) {
  .asset-capture { padding: 18px; border-radius: 17px; }
  .asset-capture-heading h2 { font-size: 24px; }
  .asset-actions { grid-template-columns: 1fr; }
  .asset-actions button { min-height: 68px; }
  .asset-preview { grid-template-columns: 1fr; }
  .asset-visual { height: 200px; }
  .review-asset { grid-template-columns: 46px minmax(0,1fr); }
  .review-asset code { grid-column: 1 / -1; }
  .memory-stage { height: 410px; border-radius: 24px; }
  .memory-stage .orbit-core { width: 112px; height: 112px; border-radius: 24px; }
  .memory-stage .orbit-node { width: 132px; height: 62px; padding: 10px; grid-template-columns: 32px 1fr; }
  .memory-stage .orbit-node i { width: 32px; height: 32px; }
}

/* Calm application layer: brand expression stays editorial, protocol work stays precise. */
.app-shell:not(.view-home) {
  --cobalt: #2949d9;
  --cobalt-soft: #6b8dff;
  --cyan: #59dce8;
  --lime: #c7ff31;
  --amber: #f3b94d;
  --coral: #ff7168;
  background: radial-gradient(circle at 76% -9%, rgba(41, 73, 217, .14), transparent 31%), var(--obsidian);
}

.app-shell:not(.view-home) .button.primary,
.app-shell:not(.view-home) .seal-action-dock .dock-primary {
  background: linear-gradient(115deg, var(--cobalt), #5273ef);
  color: white;
  box-shadow: 0 16px 40px rgba(41, 73, 217, .25);
}

.app-shell:not(.view-home) .button.primary:hover {
  box-shadow: 0 20px 50px rgba(41, 73, 217, .34);
}

.app-shell:not(.view-home) .app-header nav .seal-menu-trigger.active,
.app-shell:not(.view-home) .app-header nav .my-seals-nav.active {
  background: rgba(89, 220, 232, .065);
  color: var(--cyan);
}

.app-shell:not(.view-home) .wallet-connect.connected {
  background: rgba(89, 220, 232, .08);
  color: var(--lime);
}

.app-shell:not(.view-home) .wallet-connect.connected i {
  background: rgba(89, 220, 232, .11);
  color: var(--lime);
}

.app-shell:not(.view-home) .avatar.active {
  box-shadow: 0 0 0 3px rgba(89, 220, 232, .16), 0 10px 28px rgba(0, 0, 0, .2);
}

.app-shell:not(.view-home) .seal-action-dock {
  box-shadow: 0 28px 100px rgba(0, 0, 0, .58), 0 0 64px rgba(41, 73, 217, .08);
}

.app-shell:not(.view-home) .dock-progress button.done i {
  background: rgba(199, 255, 49, .08);
  color: var(--lime);
}

.app-shell:not(.view-home) .dock-progress button.active i {
  background: var(--cobalt);
  color: white;
  box-shadow: 0 8px 24px rgba(41, 73, 217, .35);
}

.app-shell:not(.view-home) .dock-progress button:last-child.active i {
  background: var(--lime);
  color: #07100f;
  box-shadow: 0 8px 24px rgba(199, 255, 49, .22);
}

.menu-open .seal-action-dock {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
}

.header-seal-menu {
  top: 86px;
  bottom: 0;
  padding: 0;
  overflow-y: auto;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header-menu-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(2, 5, 9, .76);
  backdrop-filter: blur(14px) saturate(.72);
  cursor: default;
}

.header-seal-menu-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - (var(--viewport-gutter) * 2)));
  margin: clamp(20px, 3vh, 36px) auto 48px;
  padding: 30px;
  gap: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(13, 23, 28, .985), rgba(7, 13, 21, .99));
  box-shadow: 0 42px 120px rgba(0, 0, 0, .54);
}

.header-seal-menu .seal-kind-menu-intro {
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  align-items: end;
}

.header-seal-menu .seal-kind-menu-intro strong {
  font-size: clamp(30px, 3vw, 42px);
}

.header-seal-menu .seal-kind-menu-intro span {
  max-width: 470px;
  justify-self: end;
  color: #9ca7a5;
  font-size: 15px;
}

.header-seal-menu .seal-kind-menu-options {
  gap: 12px;
}

.header-seal-menu .seal-kind-menu-options button {
  min-height: 280px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  align-content: stretch;
  gap: 16px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(24, 35, 40, .98), rgba(10, 17, 24, .99));
  box-shadow: 0 22px 58px rgba(0, 0, 0, .2);
}

.header-seal-menu .seal-kind-menu-options button::before {
  opacity: 0;
  filter: saturate(.72) contrast(1.04);
  transform: scale(1.025);
  transition: opacity .35s ease, transform .8s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}

.header-seal-menu .seal-kind-menu-options button::after {
  background: linear-gradient(180deg, rgba(4, 8, 13, .08), rgba(4, 8, 13, .18) 40%, rgba(4, 8, 13, .96) 100%);
}

.header-seal-menu .seal-kind-menu-options button:hover::before,
.header-seal-menu .seal-kind-menu-options button:focus-visible::before {
  opacity: .76;
  filter: saturate(.88) contrast(1.06);
  transform: scale(1.065);
}

.header-seal-menu .seal-kind-menu-options button.selected::before {
  opacity: .08;
}

.header-seal-menu .seal-kind-menu-options button.selected:hover::before,
.header-seal-menu .seal-kind-menu-options button.selected:focus-visible::before {
  opacity: .76;
}

.header-seal-menu .seal-kind-menu-options button:hover,
.header-seal-menu .seal-kind-menu-options button.selected {
  background: linear-gradient(155deg, rgba(24, 35, 40, .98), rgba(10, 17, 24, .99));
}

.header-seal-menu .seal-kind-menu-options button.selected {
  box-shadow: 0 28px 74px rgba(41, 73, 217, .2);
}

.header-seal-menu .seal-kind-menu-options button > i {
  grid-column: 1;
  grid-row: 1;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .06);
}

.header-seal-menu .seal-kind-menu-options button.selected > i {
  background: var(--cobalt);
}

.header-seal-menu .seal-kind-menu-options button > span {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
}

.header-seal-menu .seal-kind-menu-options button b {
  font-size: 20px;
}

.header-seal-menu .seal-kind-menu-options button small {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.45;
}

.header-seal-menu .seal-kind-menu-options button > em {
  grid-column: 2;
  grid-row: 1;
  padding: 8px 0 0;
}

@media (max-width: 1180px) and (min-width: 701px) {
  .header-seal-menu-inner {
    width: min(920px, calc(100% - 48px));
  }

  .header-seal-menu .seal-kind-menu-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-seal-menu .seal-kind-menu-options button {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .menu-open .seal-action-dock {
    transform: translateY(20px);
  }

  .header-seal-menu {
    top: calc(68px + env(safe-area-inset-top));
    bottom: 0;
    max-height: none;
  }

  .header-menu-scrim {
    background: rgba(3, 7, 11, .9);
    backdrop-filter: blur(10px);
  }

  .header-seal-menu-inner {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 24px 14px calc(30px + env(safe-area-inset-bottom));
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-seal-menu .seal-kind-menu-intro {
    margin-bottom: 20px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 7px;
  }

  .header-seal-menu .seal-kind-menu-intro strong {
    font-size: 30px;
  }

  .header-seal-menu .seal-kind-menu-intro span {
    justify-self: start;
    font-size: 14px;
  }

  .header-seal-menu .seal-kind-menu-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-seal-menu .seal-kind-menu-options button {
    min-height: 116px;
    padding: 16px;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    grid-template-rows: auto;
    align-items: center;
    gap: 13px;
    border-radius: 16px;
  }

  .header-seal-menu .seal-kind-menu-options button::before {
    display: none;
  }

  .header-seal-menu .seal-kind-menu-options button::after {
    background: linear-gradient(115deg, rgba(255, 255, 255, .025), transparent);
  }

  .header-seal-menu .seal-kind-menu-options button > i {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
  }

  .header-seal-menu .seal-kind-menu-options button > span {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .header-seal-menu .seal-kind-menu-options button > em {
    grid-column: 3;
    grid-row: 1;
    padding: 0;
  }

  .header-seal-menu .seal-kind-menu-options button b {
    font-size: 17px;
  }

  .header-seal-menu .seal-kind-menu-options button small {
    max-width: none;
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}

/* Product palette reset: the teal and orange identity remains on /brand and /login. */
.app-shell {
  --cobalt: #2949d9;
  --cobalt-soft: #6b8dff;
  --cyan: #59dce8;
  --lime: #c7ff31;
  --amber: #f3b94d;
  --coral: #ff7168;
  background: radial-gradient(circle at 76% -9%, rgba(41, 73, 217, .14), transparent 31%), var(--obsidian);
}

.landing-cta.cobalt {
  background: var(--cobalt);
  color: white;
  box-shadow: 0 15px 38px rgba(41, 73, 217, .2);
}

.collage-main {
  background:
    radial-gradient(circle at 16% 12%, rgba(89, 220, 232, .36), transparent 31%),
    radial-gradient(circle at 82% 4%, rgba(41, 73, 217, .64), transparent 37%),
    linear-gradient(138deg, #17302d, #07100f 76%);
}

.collage-main::before {
  background: linear-gradient(108deg, transparent 0 46%, rgba(89, 220, 232, .08) 47% 60%, transparent 61%);
}

.collage-proof {
  background: radial-gradient(circle at 90% 8%, rgba(89, 220, 232, .28), transparent 35%), linear-gradient(145deg, #e8e6df, #b8dadd 80%);
}

.collage-proof::after {
  color: rgba(41, 73, 217, .08);
}

.collage-receipt {
  background: radial-gradient(circle at 88% 9%, rgba(89, 220, 232, .14), transparent 31%), linear-gradient(150deg, #0c1917, #07100f);
}

.receipt-orbit {
  background: rgba(89, 220, 232, .055);
  box-shadow: inset 0 0 0 1px rgba(89, 220, 232, .24);
}

.process-visual.create {
  background: linear-gradient(105deg, #d8dfda, #8ed9d6 49%, #4f6ed4);
}

.process-visual.witness {
  background: linear-gradient(105deg, #1b2523, #634bd1 54%, #d394c6);
}

.landing-trust {
  background:
    radial-gradient(circle at 12% 0%, rgba(89, 220, 232, .28), transparent 30%),
    radial-gradient(circle at 79% 5%, rgba(223, 65, 104, .27), transparent 27%),
    radial-gradient(circle at 100% 0%, rgba(41, 73, 217, .34), transparent 29%),
    #050807;
}

.trust-card.solana {
  background: radial-gradient(circle at 72% 6%, rgba(41, 73, 217, .27), transparent 43%), linear-gradient(155deg, #142321, #07100f);
}

.landing-conversion {
  background: radial-gradient(circle at 82% 16%, rgba(41, 73, 217, .29), transparent 29%), radial-gradient(circle at 100% 0%, rgba(199, 255, 49, .1), transparent 22%), #030504;
}

.mobile-device {
  background: radial-gradient(circle at 50% 18%, rgba(41, 73, 217, .17), transparent 32%), linear-gradient(170deg, #111d1b, #07100f);
}

.use-art.community {
  background: radial-gradient(circle at 30% 22%, rgba(89, 220, 232, .55), transparent 27%), linear-gradient(135deg, #cce8e0, #728cff);
}

.dock-primary.needs-input {
  background: linear-gradient(115deg, #213b86, #3156bd);
}

.memory-highlight {
  background: linear-gradient(95deg, var(--lime), var(--cyan) 58%, #8ca4ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.cycle-community {
  background: radial-gradient(circle at 7% 10%, rgba(83, 231, 236, .22), transparent 22%), linear-gradient(135deg, #2d4ee2, #7a54d9 54%, #dd78b8);
  box-shadow: 0 42px 110px rgba(58, 67, 146, .23);
}

.spl-invoice {
  --invoice-ink: #061a2d;
  --invoice-blue: #0879b8;
  --invoice-teal: #069b8a;
}

.header-seal-menu .seal-kind-menu-options button {
  background: linear-gradient(155deg, #182128, #0b1119);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .28);
}

.header-seal-menu .seal-kind-menu-options button::before {
  opacity: .24;
  background-position: center 34%;
}

.header-seal-menu .seal-kind-menu-options button.selected::before {
  opacity: .34;
}

.header-seal-menu .seal-kind-menu-options button:hover,
.header-seal-menu .seal-kind-menu-options button.selected {
  background: linear-gradient(155deg, #182128, #0b1119);
}

@media (max-width: 700px) {
  .header-seal-menu .seal-kind-menu-options button::before {
    display: block;
    opacity: .14;
    background-position: center 32%;
  }

  .header-seal-menu .seal-kind-menu-options button.selected::before {
    opacity: .22;
  }
}

/* Permanent control plane: the menu is a viewport sibling, never a header child. */
.app-shell:not(.app-loading) {
  padding-top: 86px;
}

.app-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
}

.header-seal-menu {
  z-index: 118;
}

@media (max-width: 700px) {
  .app-shell:not(.app-loading) {
    padding-top: calc(68px + env(safe-area-inset-top));
  }
}

/* Five-front Sealed Energy terminal */
.app-header nav .exchange-nav,
.app-header nav .my-seals-nav {
  min-height: 50px;
  padding-inline: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #93a09b;
  cursor: pointer;
  white-space: nowrap;
}

.app-header nav .exchange-nav.active,
.app-header nav .my-seals-nav.active {
  background: rgba(89, 220, 232, .065);
  color: var(--cyan);
}

.app-header nav .exchange-nav > i,
.app-header nav .my-seals-nav > i {
  display: none;
  color: var(--cyan);
  font-style: normal;
}

.nav-label-short { display: none; }

.use-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.use-art.exchange {
  background: radial-gradient(circle at 72% 18%, rgba(199, 255, 49, .25), transparent 26%), radial-gradient(circle at 20% 78%, rgba(89, 220, 232, .42), transparent 32%), linear-gradient(142deg, #151f32, #080d14);
  color: white;
}

.handoff-status {
  margin: -8px 0 22px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  border-radius: 13px;
  background: rgba(89, 220, 232, .055);
  text-align: left;
}

.handoff-status > i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(89, 220, 232, .08);
  color: var(--cyan);
  font-style: normal;
}

.handoff-status b,
.handoff-status small { display: block; }
.handoff-status b { color: #e8efed; font-size: 13px; }
.handoff-status small { margin-top: 4px; color: #87938f; font-size: 11px; line-height: 1.45; }

.exchange-terminal {
  width: min(1440px, calc(100% - (var(--viewport-gutter) * 2)));
  min-height: calc(100vh - 86px);
  margin-inline: auto;
  padding: clamp(62px, 7vw, 104px) 0 206px;
}

.exchange-hero {
  margin-bottom: clamp(44px, 5vw, 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
}

.exchange-hero h1 {
  max-width: 920px;
  margin: 18px 0 24px;
  color: #f4f2eb;
  font-size: clamp(66px, 7.2vw, 112px);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.075em;
}

.exchange-hero h1 em { color: var(--cyan); font-style: normal; }
.exchange-hero p { max-width: 780px; margin: 0; color: #8d9996; font-size: clamp(18px, 1.35vw, 23px); line-height: 1.55; }

.exchange-trust {
  min-width: 280px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .18);
}

.exchange-trust > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-style: normal; font-size: 20px; }
.exchange-trust small, .exchange-trust b { display: block; }
.exchange-trust small { color: #73817d; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.exchange-trust b { margin-top: 4px; font-size: 14px; }
.exchange-trust em { color: var(--lime); font-size: 10px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

.exchange-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, .58fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}

.swap-machine,
.exchange-sidecar,
.exchange-flow-card,
.authorize-instrument,
.wallet-approval {
  border-radius: 28px;
  background: linear-gradient(148deg, rgba(20, 29, 35, .98), rgba(8, 13, 19, .99));
  box-shadow: 0 38px 110px rgba(0, 0, 0, .32);
}

.swap-machine { position: relative; padding: clamp(26px, 3vw, 48px); }
.swap-machine-head { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.swap-machine-head small { color: var(--cyan); font-size: 12px; font-weight: 680; letter-spacing: .14em; text-transform: uppercase; }
.swap-machine-head h2 { margin: 8px 0 0; font-size: clamp(32px, 3vw, 48px); font-weight: 520; letter-spacing: -.055em; }
.swap-machine-head > button { min-height: 48px; padding: 0 20px; border: 0; border-radius: 14px; background: rgba(199, 255, 49, .1); color: var(--lime); cursor: pointer; font-weight: 650; }

.swap-leg { padding: clamp(22px, 2.3vw, 34px); border-radius: 22px; background: #f2f0e9; color: #07100f; box-shadow: 0 20px 70px rgba(0, 0, 0, .2); }
.swap-leg.receive { background: linear-gradient(135deg, #dce8e6, #cbd4f1); }
.swap-leg-top { margin-bottom: 22px; display: flex; justify-content: space-between; gap: 16px; color: #66716d; font-size: 13px; }
.swap-leg-top label, .swap-leg-top > span:first-child { color: #07100f; font-weight: 680; }
.swap-value { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; }
.swap-value input, .swap-value output { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #07100f; font-size: clamp(46px, 6vw, 86px); font-weight: 480; letter-spacing: -.07em; }
.swap-value output { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.amount-presets { margin-top: 24px; display: flex; gap: 8px; }
.amount-presets button { min-width: 64px; min-height: 34px; border: 0; border-radius: 10px; background: rgba(7, 16, 15, .07); color: #43504c; cursor: pointer; font-size: 12px; font-weight: 650; }
.pair-switch { position: relative; z-index: 2; width: 54px; height: 54px; margin: -15px auto; display: grid; place-items: center; border: 7px solid #10171d; border-radius: 16px; background: var(--cobalt); color: white; cursor: pointer; font-size: 20px; box-shadow: 0 14px 34px rgba(41, 73, 217, .34); }

.asset-picker { position: relative; min-width: 196px; min-height: 70px; padding: 10px 44px 10px 11px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 11px; border-radius: 18px; background: rgba(7, 16, 15, .075); }
.asset-picker select { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; }
.asset-picker > i { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-style: normal; }
.asset-picker b, .asset-picker small { display: block; }
.asset-picker b { font-size: 18px; }
.asset-picker small { margin-top: 2px; color: #67736f; font-size: 11px; }
.asset-symbol { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #07100f; color: white; font-family: var(--serif); font-size: 25px; }
.asset-flux { color: var(--lime); }
.asset-btc { color: #f3b94d; }
.asset-sol { color: var(--cyan); }

.seal-swap-promise { margin-top: 26px; padding: 18px; display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; border-radius: 16px; background: rgba(89, 220, 232, .055); }
.seal-swap-promise > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--lime); color: #07100f; font-style: normal; }
.seal-swap-promise b, .seal-swap-promise small { display: block; }
.seal-swap-promise b { font-size: 15px; }
.seal-swap-promise small { margin-top: 4px; color: #85918d; font-size: 12px; line-height: 1.45; }
.swap-preview { margin-top: 16px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 10px; }
.swap-preview > span { min-width: 0; padding: 16px; border-radius: 14px; background: rgba(255, 255, 255, .035); }
.swap-preview small, .swap-preview b { display: block; }
.swap-preview small { color: #6f7d79; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.swap-preview b { margin-top: 6px; overflow: hidden; color: #bfc8c5; font-size: 12px; font-weight: 560; text-overflow: ellipsis; white-space: nowrap; }

.exchange-sidecar { padding: clamp(24px, 2.5vw, 38px); display: flex; flex-direction: column; }
.sidecar-heading { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.sidecar-heading small, .sidecar-heading b { display: block; }
.sidecar-heading small { color: var(--cyan); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.sidecar-heading b { margin-top: 5px; font-size: 18px; }
.sidecar-heading em { color: var(--lime); font-size: 10px; font-style: normal; }
.exchange-qr { width: min(100%, 340px); aspect-ratio: 1; margin: 34px auto 18px; padding: 18px; display: grid; place-items: center; background: #07100f; box-shadow: 0 0 0 14px rgba(41, 73, 217, .07), 0 28px 70px rgba(0, 0, 0, .34); }
.exchange-qr img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.exchange-sidecar > code { color: var(--cyan); font-size: 11px; text-align: center; }
.exchange-sidecar > p { margin: 18px 0 26px; color: #899591; font-size: 13px; line-height: 1.6; text-align: center; }
.route-rail { margin-top: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.route-rail span { min-width: 0; display: grid; justify-items: center; gap: 7px; color: #65726e; }
.route-rail i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: rgba(255, 255, 255, .045); font-size: 11px; font-style: normal; }
.route-rail b { font-size: 9px; font-weight: 560; letter-spacing: .06em; text-transform: uppercase; }
.route-rail .done { color: var(--lime); }

.exchange-flow-card { max-width: 1040px; margin: 0 auto; padding: clamp(30px, 4.5vw, 64px); }
.exchange-flow-copy { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 34px; }
.exchange-flow-copy h2 { margin: 14px 0 0; font-size: clamp(44px, 5.5vw, 78px); font-weight: 500; line-height: .95; letter-spacing: -.065em; }
.exchange-flow-copy p { margin: 0; color: #8d9895; font-size: 17px; line-height: 1.6; }
.exchange-review-amount { margin: 46px 0 26px; padding: clamp(22px, 3vw, 38px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; border-radius: 22px; background: linear-gradient(120deg, #f0eee7, #d6e0ef); color: #07100f; }
.exchange-review-amount span:last-child { text-align: right; }
.exchange-review-amount small, .exchange-review-amount strong { display: block; }
.exchange-review-amount small { color: #64706c; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.exchange-review-amount strong { margin-top: 6px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.05em; }
.exchange-review-amount > i { color: var(--cobalt); font-size: 28px; font-style: normal; }
.exchange-facts { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.exchange-facts > div { padding: 18px; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.exchange-facts dt { color: #6e7a76; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.exchange-facts dd { margin: 7px 0 0; color: #c2cac7; font-size: 13px; line-height: 1.4; }
.exchange-warning { margin-top: 14px; padding: 18px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; border-radius: 15px; background: rgba(243, 185, 77, .07); }
.exchange-warning > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(243, 185, 77, .1); color: var(--amber); font-style: normal; }
.exchange-warning p { margin: 0; }
.exchange-warning b, .exchange-warning span { display: block; }
.exchange-warning b { font-size: 14px; }
.exchange-warning span { margin-top: 5px; color: #8f9995; font-size: 12px; line-height: 1.5; }
.visibility-choice { margin-top: 14px; padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.visibility-choice small, .visibility-choice b { display: block; }
.visibility-choice small { color: var(--cyan); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.visibility-choice b { margin-top: 5px; font-size: 13px; }
.visibility-choice > div { display: flex; gap: 6px; }
.visibility-choice button { min-height: 42px; padding: 0 16px; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .045); color: #87938f; cursor: pointer; }
.visibility-choice button.active { background: var(--cobalt); color: white; }

.exchange-authorize { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
.authorize-instrument, .wallet-approval { padding: clamp(28px, 4vw, 52px); }
.authorize-instrument h2 { margin: 26px 0; display: flex; align-items: center; gap: 22px; color: #f4f1ea; font-size: clamp(38px, 5vw, 70px); font-weight: 490; letter-spacing: -.065em; }
.authorize-instrument h2 i { color: var(--cyan); font-style: normal; }
.authorize-instrument > p { max-width: 660px; color: #899591; font-size: 16px; line-height: 1.6; }
.authorization-scope { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.authorization-scope span { padding: 17px; border-radius: 14px; background: rgba(255, 255, 255, .035); }
.authorization-scope small, .authorization-scope b { display: block; }
.authorization-scope small { color: #687570; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.authorization-scope b { margin-top: 6px; font-size: 12px; }
.wallet-approval h3 { margin: 22px 0 28px; font-size: 34px; font-weight: 500; letter-spacing: -.05em; }
.wallet-primary { width: 100%; min-height: 76px; padding: 14px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px; border: 0; border-radius: 16px; background: linear-gradient(115deg, var(--cobalt), #5273ef); color: white; cursor: pointer; text-align: left; }
.wallet-primary > i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: rgba(255, 255, 255, .1); font-style: normal; }
.wallet-primary b, .wallet-primary small { display: block; }
.wallet-primary b { font-size: 16px; }
.wallet-primary small { margin-top: 4px; color: rgba(255, 255, 255, .72); font-size: 11px; }
.wallet-demo { width: 100%; min-height: 50px; margin-top: 8px; border: 0; border-radius: 14px; background: rgba(255, 255, 255, .045); color: #abb5b1; cursor: pointer; }
.wallet-ready { min-height: 88px; padding: 18px; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; border-radius: 16px; background: rgba(199, 255, 49, .07); }
.wallet-ready > i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--lime); color: #07100f; font-style: normal; }
.wallet-ready b, .wallet-ready small { display: block; }
.wallet-ready b { font-size: 15px; }
.wallet-ready small { margin-top: 4px; color: #8c9894; font-size: 11px; }
.wallet-approval > p { margin: 24px 0 0; color: #78847f; font-size: 12px; line-height: 1.6; }

.exchange-executing, .exchange-complete { max-width: 820px; margin: 0 auto; text-align: center; }
.exchange-execute-mark, .exchange-complete-mark { width: 190px; height: 190px; margin: 0 auto 34px; display: grid; place-items: center; align-content: center; gap: 8px; border-radius: 56px; background: radial-gradient(circle at 50% 20%, rgba(89, 220, 232, .14), transparent 46%), #0b1417; box-shadow: 0 0 0 1px rgba(89, 220, 232, .13), 0 34px 100px rgba(0, 0, 0, .28); }
.exchange-execute-mark i { color: var(--cyan); font-size: 38px; font-style: normal; }
.exchange-execute-mark strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.exchange-executing h2, .exchange-complete h2 { margin: 18px 0; font-size: clamp(50px, 7vw, 86px); font-weight: 500; letter-spacing: -.07em; }
.exchange-executing > p, .exchange-complete > p { color: #899591; font-size: 16px; }
.exchange-executing > div:last-child { max-width: 620px; margin: 34px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.exchange-executing > div:last-child span { padding: 15px 8px; display: grid; justify-items: center; gap: 9px; border-radius: 14px; background: rgba(255, 255, 255, .03); color: #68746f; }
.exchange-executing > div:last-child i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: rgba(255, 255, 255, .04); font-style: normal; }
.exchange-executing > div:last-child b { font-size: 10px; line-height: 1.35; }
.exchange-executing > div:last-child span.active { color: var(--cyan); }
.exchange-executing > div:last-child span.done { color: var(--lime); }
.exchange-complete-mark > i { color: var(--lime); font-size: 30px; font-style: normal; }
.exchange-complete-mark > span { font-size: 15px; letter-spacing: .17em; }
.exchange-complete-mark > b { color: var(--cyan); font-size: 10px; letter-spacing: .16em; }
.exchange-complete > code { display: inline-block; margin: 14px 0 28px; color: var(--cyan); font-size: 13px; letter-spacing: .1em; }
.exchange-complete > div:last-child { display: flex; justify-content: center; gap: 9px; }
.exchange-complete > div:last-child button { min-height: 52px; padding: 0 20px; border: 0; border-radius: 14px; background: rgba(255, 255, 255, .055); color: #dce3e0; cursor: pointer; }
.exchange-complete > div:last-child button:first-child { background: var(--cobalt); color: white; }

.exchange-action-dock { z-index: 110; }
.exchange-toast { bottom: 140px; }

.portfolio-summary { margin: -18px 0 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.portfolio-summary article { min-height: 152px; padding: 22px; display: flex; flex-direction: column; border-radius: 20px; background: linear-gradient(148deg, rgba(24, 33, 40, .98), rgba(10, 16, 23, .99)); box-shadow: 0 22px 64px rgba(0, 0, 0, .18); }
.portfolio-summary span { color: var(--cyan); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.portfolio-summary strong { margin-top: 12px; font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; }
.portfolio-summary small { margin-top: auto; color: #77837f; font-size: 12px; }

@media (max-width: 1180px) {
  .app-header nav .nav-label-full { display: none; }
  .app-header nav .nav-label-short { display: inline; }
  .app-header nav .exchange-nav > i, .app-header nav .my-seals-nav > i { display: inline; }
  .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .exchange-layout { grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); }
  .swap-value input, .swap-value output { font-size: clamp(42px, 5vw, 64px); }
}

@media (max-width: 900px) {
  .exchange-hero { grid-template-columns: 1fr; }
  .exchange-trust { width: 100%; }
  .exchange-layout, .exchange-authorize { grid-template-columns: 1fr; }
  .exchange-sidecar { min-height: 620px; }
  .exchange-flow-copy { grid-template-columns: 1fr; }
  .exchange-facts { grid-template-columns: repeat(2, 1fr); }
  .portfolio-summary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .app-header nav.core-navigation { gap: 1px; }
  .app-header nav .exchange-nav, .app-header nav .my-seals-nav { min-width: 42px; min-height: 44px; padding: 5px 7px; flex-direction: column; gap: 2px; }
  .app-header nav .exchange-nav > i, .app-header nav .my-seals-nav > i { display: block; height: 18px; font-size: 15px; line-height: 18px; }
  .app-header nav .exchange-nav .nav-label-short, .app-header nav .my-seals-nav .nav-label-short { display: block; font-size: 8px; }
  .app-header nav .nav-label-full { display: none; }
  .exchange-terminal { width: min(100% - 28px, 1440px); padding: 44px 0 calc(190px + env(safe-area-inset-bottom)); }
  .exchange-hero { margin-bottom: 34px; gap: 22px; }
  .exchange-hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .exchange-hero p { font-size: 17px; }
  .exchange-trust { min-width: 0; padding: 14px; }
  .swap-machine, .exchange-sidecar, .exchange-flow-card, .authorize-instrument, .wallet-approval { border-radius: 20px; }
  .swap-machine { padding: 16px; }
  .swap-machine-head { margin: 4px 4px 18px; align-items: center; }
  .swap-machine-head h2 { font-size: 29px; }
  .swap-machine-head > button { min-height: 42px; padding-inline: 14px; }
  .swap-leg { padding: 18px; border-radius: 17px; }
  .swap-leg-top { margin-bottom: 17px; font-size: 11px; }
  .swap-value { grid-template-columns: minmax(0, 1fr) 152px; gap: 9px; }
  .swap-value input, .swap-value output { font-size: clamp(38px, 12vw, 54px); }
  .asset-picker { min-width: 0; min-height: 58px; padding: 8px 32px 8px 8px; grid-template-columns: 40px 1fr; gap: 8px; border-radius: 14px; }
  .asset-symbol { width: 40px; height: 40px; border-radius: 12px; font-size: 21px; }
  .asset-picker b { font-size: 15px; }
  .asset-picker small { display: none; }
  .pair-switch { width: 50px; height: 50px; border-width: 6px; }
  .swap-preview { grid-template-columns: 1fr; }
  .exchange-sidecar { min-height: 560px; padding: 22px; }
  .exchange-qr { max-width: 300px; }
  .exchange-flow-card { padding: 22px; }
  .exchange-flow-copy h2 { font-size: 46px; }
  .exchange-review-amount { grid-template-columns: 1fr; text-align: left; }
  .exchange-review-amount span:last-child { text-align: left; }
  .exchange-review-amount > i { transform: rotate(90deg); }
  .exchange-facts, .authorization-scope { grid-template-columns: 1fr; }
  .visibility-choice { align-items: stretch; flex-direction: column; }
  .visibility-choice > div { display: grid; grid-template-columns: 1fr 1fr; }
  .exchange-authorize { gap: 12px; }
  .authorize-instrument, .wallet-approval { padding: 22px; }
  .authorize-instrument h2 { flex-wrap: wrap; font-size: 42px; }
  .exchange-executing > div:last-child { grid-template-columns: repeat(2, 1fr); }
  .exchange-complete > div:last-child { display: grid; }
  .portfolio-summary { grid-template-columns: 1fr 1fr; gap: 9px; }
  .portfolio-summary article { min-height: 130px; padding: 17px; border-radius: 16px; }
  .portfolio-summary strong { font-size: 39px; }
  .library-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .library-actions .button:last-child { grid-column: 1 / -1; }
  .use-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .app-header nav .exchange-nav .nav-label-short, .app-header nav .my-seals-nav .nav-label-short { display: none; }
  .swap-value { grid-template-columns: minmax(0, 1fr) 136px; }
  .swap-value input, .swap-value output { font-size: 38px; }
  .portfolio-summary { grid-template-columns: 1fr; }
}

/* Mobile handoff QR replaces the draft counter inside the proof aperture. */
.seal-aperture.qr-aperture {
  padding: 14px;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(41, 73, 217, .16), rgba(9, 16, 21, .98) 62%);
  box-shadow: 0 0 72px rgba(41, 73, 217, .13);
}

.seal-aperture.qr-aperture::before {
  display: none;
}

.seal-aperture.qr-aperture::after {
  display: none;
}

.seal-aperture.qr-aperture > .seal-qr-surface {
  width: 100%;
  height: 100%;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #091013;
  box-shadow: none;
}

.seal-qr-surface img {
  width: 84%;
  height: 84%;
  display: block;
  border-radius: 0;
  image-rendering: pixelated;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  animation: qrReveal .25s ease-out both;
}

.seal-qr-loading {
  width: 84%;
  aspect-ratio: 1;
  border-radius: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, .045) 30%, rgba(255, 255, 255, .1) 48%, rgba(255, 255, 255, .045) 66%);
  background-size: 240% 100%;
  animation: qrLoading 1.2s linear infinite;
}

@keyframes qrReveal {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes qrLoading {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .seal-qr-surface img,
  .seal-qr-loading { animation: none; }
}

/* Seal Exchange progression board */
.compact-exchange-hero {
  margin-bottom: clamp(30px, 3vw, 46px);
  align-items: center;
}

.compact-exchange-hero h1 {
  max-width: 880px;
  font-size: clamp(58px, 6.3vw, 94px);
}

.exchange-mode-switch {
  min-width: 390px;
  padding: 7px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.exchange-mode-switch button {
  min-height: 72px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: #7f8b87;
  text-align: left;
  cursor: pointer;
}

.exchange-mode-switch button.active { background: #f1efe8; color: #07100f; box-shadow: 0 18px 42px rgba(0, 0, 0, .18); }
.exchange-mode-switch button > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-size: 17px; font-style: normal; }
.exchange-mode-switch button.active > i { background: #07100f; }
.exchange-mode-switch small, .exchange-mode-switch b { display: block; }
.exchange-mode-switch small { color: #75817d; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.exchange-mode-switch b { margin-top: 3px; font-size: 13px; }

.market-discovery { margin-top: 8px; }
.market-category-bar { display: flex; gap: 8px; overflow-x: auto; padding: 0 0 18px; scrollbar-width: none; }
.market-category-bar::-webkit-scrollbar { display: none; }
.market-category-bar button { min-height: 43px; padding: 0 19px; flex: 0 0 auto; border: 0; border-radius: 14px; background: rgba(255, 255, 255, .04); color: #8e9995; cursor: pointer; font-size: 13px; }
.market-category-bar button.active { background: #f1efe8; color: #07100f; font-weight: 680; }

.market-toolbar {
  margin-bottom: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px) auto;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.market-sort-chips { min-width: 0; display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.market-sort-chips::-webkit-scrollbar { display: none; }
.market-sort-chips span { min-height: 38px; padding: 0 14px; flex: 0 0 auto; display: inline-flex; align-items: center; border-radius: 12px; background: rgba(255, 255, 255, .035); color: #74817d; font-size: 11px; }
.market-sort-chips span.active { background: rgba(89, 220, 232, .1); color: var(--cyan); }
.market-search { min-height: 44px; padding: 0 14px; display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 8px; border-radius: 13px; background: #f1efe8; color: #07100f; }
.market-search > span { color: var(--cobalt); font-size: 18px; }
.market-search input { min-width: 0; border: 0; outline: 0; background: transparent; color: #07100f; font-size: 13px; }

.market-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.market-stage-jumps { display: none; }

.market-trench {
  min-width: 0;
  padding: 12px;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(20, 29, 34, .98), rgba(8, 13, 18, .99));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}

.market-trench > header {
  min-height: 120px;
  padding: 18px 18px 20px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.market-trench > header > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: rgba(89, 220, 232, .075); color: var(--cyan); font-size: 10px; }
.market-trench > header h2 { margin: 0; color: #f3f1e9; font-size: 25px; font-weight: 540; letter-spacing: -.04em; }
.market-trench > header p { max-width: 310px; margin: 7px 0 0; color: #74807c; font-size: 12px; line-height: 1.45; }
.market-trench > header > em { min-width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(255, 255, 255, .045); color: #87928e; font-size: 11px; font-style: normal; }
.stage-created > header > span { color: #65d8cc; }
.stage-rising > header > span { color: #f3b94d; background: rgba(243, 185, 77, .08); }
.stage-heroes > header > span { color: #c7ff31; background: rgba(199, 255, 49, .07); }

.market-trench-list { display: grid; gap: 9px; }
.market-row {
  width: 100%;
  min-height: 150px;
  padding: 17px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  color: #e9eeec;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.market-row:focus-visible, .market-row.is-hot, .market-row.selected { transform: translateY(-2px); background: rgba(89, 220, 232, .075); box-shadow: 0 20px 48px rgba(0, 0, 0, .22); }
.market-row-image { position: relative; width: 76px; height: 76px; overflow: hidden; border-radius: 50%; background: #07100f; box-shadow: 0 0 0 1px rgba(243, 241, 233, .09), 0 18px 36px rgba(0, 0, 0, .34); }
.market-row-image img { object-fit: cover; }
.market-row-main, .market-row-main > span { min-width: 0; }
.market-row-main > span:first-child { display: flex; align-items: baseline; gap: 7px; }
.market-row-main b { min-width: 0; overflow: hidden; font-size: 16px; font-weight: 620; text-overflow: ellipsis; white-space: nowrap; }
.market-row-main em { color: var(--cyan); font-size: 9px; font-style: normal; letter-spacing: .08em; }
.market-row-main > small { display: block; margin-top: 6px; color: #7b8783; font-size: 11px; }
.market-row-meta { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 5px; }
.market-row-meta i { padding: 5px 7px; border-radius: 8px; background: rgba(255, 255, 255, .04); color: #7f8b87; font-size: 8px; font-style: normal; }
.market-row-meta i:first-child { color: var(--cyan); }
.market-row-value { min-width: 0; text-align: right; }
.market-row-value b, .market-row-value small { display: block; }
.market-row-value b { color: #f4f1e9; font-size: 20px; font-weight: 560; }
.market-row-value small { margin-top: 5px; color: #71807b; font-size: 9px; }
.market-row-value > span { width: 100%; height: 5px; margin-top: 15px; display: block; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .08); }
.market-row-value > span i { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--cobalt), var(--cyan)); }
.stage-rising .market-row-value > span i { background: linear-gradient(90deg, #f3b94d, var(--cyan)); }
.stage-heroes .market-row-value > span i { background: linear-gradient(90deg, var(--cyan), #c7ff31); }
.market-empty { min-height: 150px; margin: 0; padding: 32px 20px; display: grid; place-items: center; border-radius: 20px; background: rgba(255, 255, 255, .025); color: #697570; font-size: 12px; text-align: center; }

.market-board-note { margin: 15px 0 0; padding: 16px 18px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; border-radius: 18px; background: rgba(255, 255, 255, .035); }
.market-board-note > span { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.market-board-note > span i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-style: normal; }
.market-board-note > span b { font-size: 12px; }
.market-board-note p { margin: 0; color: #7e8985; font-size: 11px; line-height: 1.5; }
.market-board-note button { min-height: 42px; padding: 0 14px; border: 0; border-radius: 12px; background: rgba(89, 220, 232, .08); color: var(--cyan); cursor: pointer; font-size: 11px; white-space: nowrap; }

.market-detail {
  margin-top: 18px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(330px, 1.05fr) minmax(300px, .7fr);
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, #152027, #091016 70%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .28);
}

.market-detail-image { position: relative; min-height: 520px; overflow: hidden; }
.market-detail-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 16, 15, .82), transparent 58%); }
.market-detail-image img { object-fit: cover; }
.market-detail-image > span { position: absolute; left: 24px; bottom: 24px; z-index: 1; padding: 10px 13px; border-radius: 11px; background: #f1efe8; color: #07100f; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.market-detail-copy { padding: clamp(30px, 4vw, 58px); }
.market-detail-copy h2 { margin: 16px 0 20px; font-size: clamp(44px, 4.2vw, 68px); font-weight: 520; line-height: .94; letter-spacing: -.065em; }
.market-detail-copy > p { margin: 0; color: #9aa5a1; font-size: 17px; line-height: 1.55; }
.market-detail-copy dl { margin: 34px 0 0; display: grid; gap: 10px; }
.market-detail-copy dl > div { padding: 16px; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.market-detail-copy dt { color: var(--cyan); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.market-detail-copy dd { margin: 6px 0 0; color: #aab3b0; font-size: 12px; line-height: 1.5; }
.market-detail-seal { margin-top: 24px; display: flex; align-items: center; gap: 11px; }
.market-detail-seal > i { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: var(--lime); color: #07100f; font-style: normal; }
.market-detail-seal small, .market-detail-seal b { display: block; }
.market-detail-seal small { color: #71807b; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.market-detail-seal b { margin-top: 3px; font-family: var(--font-geist-mono); font-size: 11px; }
.market-backing-ticket { margin: 18px; padding: 28px; display: flex; flex-direction: column; border-radius: 24px; background: #f1efe8; color: #07100f; }
.market-backing-ticket > strong { margin-top: 30px; font-family: var(--serif); font-size: 78px; font-weight: 400; line-height: 1; }
.market-ticket-progress { width: 100%; height: 9px; margin-top: 18px; overflow: hidden; border-radius: 999px; background: rgba(7, 16, 15, .1); }
.market-ticket-progress i { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--cobalt), var(--cyan)); }
.market-backing-ticket > p { margin: 14px 0 0; color: #66736f; font-size: 12px; line-height: 1.5; }
.market-backing-ticket > p b { color: #07100f; }
.accepted-assets { margin-top: 26px; display: flex; gap: 7px; }
.accepted-assets span { padding: 8px 10px; border-radius: 9px; background: rgba(7, 16, 15, .07); font-size: 10px; font-weight: 680; }
.market-backing-ticket > button { min-height: 60px; margin-top: auto; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 0; border-radius: 16px; background: #07100f; color: white; cursor: pointer; font-size: 13px; font-weight: 680; }
.market-backing-ticket > button i { color: var(--cyan); font-size: 18px; font-style: normal; }
.market-backing-ticket > small { margin-top: 14px; color: #697570; font-size: 9px; line-height: 1.45; }

.selected-market-strip { margin: 0 0 18px; padding: 12px 14px; display: grid; grid-template-columns: 54px minmax(0, 1fr) auto auto; align-items: center; gap: 13px; border-radius: 18px; background: rgba(255, 255, 255, .045); }
.market-mini-image { position: relative; width: 54px; height: 54px; overflow: hidden; border-radius: 50%; background: #07100f; box-shadow: 0 0 0 1px rgba(243, 241, 233, .1); }
.market-mini-image img { object-fit: cover; }
.selected-market-strip small, .selected-market-strip b { display: block; }
.selected-market-strip small { color: var(--cyan); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.selected-market-strip b { margin-top: 4px; font-size: 14px; }
.selected-market-strip code { color: #c7ff31; font-size: 11px; }
.selected-market-strip button { min-height: 42px; padding: 0 14px; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .055); color: #aab4b0; cursor: pointer; }
.market-target-asset { min-width: 196px; min-height: 70px; padding: 10px 14px 10px 11px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 11px; border-radius: 18px; background: rgba(7, 16, 15, .075); }
.market-target-asset > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #07100f; color: var(--lime); font-family: var(--serif); font-size: 25px; }
.market-target-asset b, .market-target-asset small { display: block; }
.market-target-asset b { font-size: 18px; }
.market-target-asset small { margin-top: 2px; color: #67736f; font-size: 11px; }
.market-review-context { margin: 32px 0 -30px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-radius: 15px; background: rgba(89, 220, 232, .055); }
.market-review-context small, .market-review-context b { display: block; }
.market-review-context small { color: var(--cyan); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.market-review-context b { margin-top: 4px; font-size: 13px; }
.market-review-context code { color: #8f9b97; font-size: 10px; }

/* Low-density mobile handoff QR */
.exchange-qr { position: relative; width: min(100%, 380px); padding: 11px; border-radius: 20px; background: #f7f5ef; box-shadow: 0 30px 74px rgba(0, 0, 0, .32); }
.exchange-qr img { width: 100%; height: 100%; }
.exchange-qr::after, .seal-qr-surface::after { content: ''; position: absolute; top: 50%; left: 50%; z-index: 2; width: 54px; height: 54px; transform: translate(-50%, -50%); border-radius: 15px; background: #07100f url('../public/se-symbol-transparent.png') center / 24px 40px no-repeat; box-shadow: 0 0 0 8px #f7f5ef, 0 12px 28px rgba(0, 0, 0, .22); pointer-events: none; }
.seal-aperture.qr-aperture { padding: 8px; background: #f7f5ef; box-shadow: 0 28px 74px rgba(0, 0, 0, .27); }
.seal-aperture.qr-aperture > .seal-qr-surface { position: relative; background: #f7f5ef; }
.seal-qr-surface img { width: 100%; height: 100%; box-shadow: none; }

@media (max-width: 1180px) {
  .exchange-mode-switch { min-width: 360px; }
  .market-stage-jumps {
    margin-bottom: 12px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
  }
  .market-stage-jumps button {
    min-width: 0;
    min-height: 46px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #aab4b0;
    font: inherit;
    font-size: 11px;
    font-weight: 650;
    cursor: pointer;
  }
  .market-stage-jumps button:first-child { background: rgba(89, 220, 232, .075); color: #f3f1e9; }
  .market-stage-jumps span { color: var(--cyan); font-size: 9px; letter-spacing: .08em; }
  .market-board { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .market-board::-webkit-scrollbar { display: none; }
  .market-trench { min-width: min(560px, 72vw); scroll-snap-align: start; }
  .market-detail { grid-template-columns: .9fr 1.1fr; }
  .market-backing-ticket { grid-column: 1 / -1; min-height: 360px; }
  .market-backing-ticket > button { margin-top: 36px; }
}

@media (max-width: 900px) {
  .compact-exchange-hero { grid-template-columns: 1fr; }
  .exchange-mode-switch { width: 100%; min-width: 0; }
  .market-toolbar { grid-template-columns: 1fr 1fr; }
  .market-sort-chips { grid-column: 1 / -1; }
  .market-board-note { grid-template-columns: 1fr; }
  .market-board-note button { justify-self: start; }
  .market-detail { grid-template-columns: 1fr; }
  .market-detail-image { min-height: 420px; }
  .market-backing-ticket { grid-column: auto; min-height: 410px; }
}

@media (max-width: 700px) {
  .compact-exchange-hero h1 { font-size: clamp(54px, 16vw, 76px); }
  .exchange-mode-switch button { min-height: 66px; padding: 9px; grid-template-columns: 34px 1fr; }
  .exchange-mode-switch button > i { width: 34px; height: 34px; }
  .exchange-mode-switch small { display: none; }
  .exchange-mode-switch b { font-size: 11px; }
  .market-category-bar { margin-inline: -14px; padding-inline: 14px; }
  .market-toolbar { grid-template-columns: 1fr; padding: 10px; }
  .market-sort-chips, .market-search { grid-column: auto; }
  .market-trench { min-width: calc(100vw - 42px); padding: 9px; border-radius: 22px; }
  .market-trench > header { min-height: 112px; padding: 15px 13px 18px; }
  .market-trench > header h2 { font-size: 23px; }
  .market-row { min-height: 142px; padding: 14px; grid-template-columns: 64px minmax(0, 1fr) 64px; gap: 10px; border-radius: 17px; }
  .market-row-image { width: 64px; height: 64px; }
  .market-row-main b { font-size: 14px; }
  .market-row-meta i:nth-child(3) { display: none; }
  .market-row-value b { font-size: 18px; }
  .market-detail { min-height: 0; border-radius: 24px; }
  .market-detail-image { min-height: 340px; }
  .market-detail-copy { padding: 28px 22px; }
  .market-detail-copy h2 { font-size: 48px; }
  .market-backing-ticket { min-height: 390px; margin: 10px; padding: 24px; }
  .selected-market-strip { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .selected-market-strip code { display: none; }
  .selected-market-strip button { grid-column: 1 / -1; }
  .market-target-asset { min-width: 0; min-height: 58px; padding: 8px; grid-template-columns: 40px 1fr; }
  .market-target-asset > span { width: 40px; height: 40px; border-radius: 12px; font-size: 21px; }
  .market-target-asset b { font-size: 15px; }
  .market-target-asset small { display: none; }
  .market-review-context { align-items: flex-start; flex-direction: column; }
  .exchange-qr { max-width: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  .market-row { transition: none; }
  .market-row:hover, .market-row.selected { transform: none; }
}

/* Final application authority: one symbol, one progress surface, one completion signal. */
.brand-mark,
.app-header .brand-mark,
.home-header .brand-mark {
  position: relative;
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0 6px;
  background: linear-gradient(155deg, #f8f6ee 8%, #59dce8 58%, #728cff);
  -webkit-mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
}

.home-header .brand-mark::before {
  background: linear-gradient(155deg, #07100f, #3154e8 64%, #08a696);
}

.app-loading .loading-mark .brand-mark {
  width: 118px;
  height: 118px;
  flex-basis: 118px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-loading .loading-mark .brand-mark::before { inset: 0 14px; }

.view-seal .journey-screen { padding-top: clamp(58px, 6vw, 88px); }

.app-shell:not(.view-home) .seal-action-dock .dock-primary.ready-to-progress {
  background: linear-gradient(115deg, #c7ff31, #a8ed35);
  color: #07100f;
  box-shadow: 0 18px 54px rgba(199, 255, 49, .24), 0 0 0 1px rgba(199, 255, 49, .14);
  animation: readyCtaBreathe 2.4s ease-in-out infinite;
}

.app-shell:not(.view-home) .seal-action-dock .dock-primary.ready-to-progress:hover {
  background: linear-gradient(115deg, #d3ff5a, #b6f447);
  box-shadow: 0 22px 64px rgba(199, 255, 49, .34);
}

.app-shell:not(.view-home) .seal-action-dock .dock-primary.needs-input {
  background: linear-gradient(115deg, #213b86, #3156bd);
  color: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 32px rgba(33, 59, 134, .18);
}

@keyframes readyCtaBreathe {
  0%, 100% { transform: translateY(0); filter: saturate(1); }
  50% { transform: translateY(-2px); filter: saturate(1.08); }
}

.token-source-capture {
  margin-bottom: 24px;
  background: radial-gradient(circle at 90% 12%, rgba(89, 220, 232, .1), transparent 34%), rgba(255, 255, 255, .035);
}

.journey-screen :is(.panel, .asset-capture, .rail-card, .choice-stack button, .destination-footer, .identity-option),
.account-screen :is(.panel, input, select, button),
.genesis-screen :is(input, select, .genesis-stage, .genesis-memory, .genesis-toggle, .rail-options button, .choice-pair button) {
  border: 0;
}

.journey-screen :is(label, .field, .panel-top, .section-label),
.account-screen :is(label, dt, .panel-top),
.genesis-screen label { font-size: clamp(14px, .95vw, 16px); }

.journey-screen small,
.account-screen small,
.genesis-screen small { font-size: clamp(12px, .82vw, 14px); line-height: 1.4; }

@media (max-width: 820px) {
  .view-seal .journey-screen { padding-top: 48px; }
}

@media (max-width: 700px) {
  .brand-mark,
  .app-header .brand-mark,
  .home-header .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
  .token-source-capture { margin-inline: -2px; }
  .app-shell:not(.view-home) .seal-action-dock .dock-primary.ready-to-progress { animation-duration: 2.8s; }
}

@media (prefers-reduced-motion: reduce) {
  .app-shell:not(.view-home) .seal-action-dock .dock-primary.ready-to-progress { animation: none; }
}

.draft-save-state { display: inline-flex; align-items: center; gap: 7px; transition: color .2s ease; }
.draft-save-state::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(199, 255, 49, .45); }
.draft-save-state.saving { color: var(--cyan); }
.draft-save-state.saving::before { background: var(--cyan); animation: savePulse .8s ease-in-out infinite; }

.choice-stack button,
.rail-card,
.identity-option,
.market-stage-jumps button { transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease; }
.choice-stack button.selected,
.rail-card.selected,
.identity-option.selected { animation: selectionSet .28s cubic-bezier(.2, .8, .2, 1) both; }
.seal-action-dock .dock-primary > i { transition: transform .2s ease; }
.seal-action-dock .dock-primary:hover > i { transform: translateX(4px); }
.dock-progress button.active i { animation: activeStepPulse 2.2s ease-in-out infinite; }
.market-stage-jumps button:first-child { background: transparent; color: #aab4b0; }
.market-stage-jumps button.active { background: rgba(89, 220, 232, .075); color: #f3f1e9; }

@keyframes savePulse { 0%, 100% { transform: scale(.72); opacity: .58; } 50% { transform: scale(1); opacity: 1; } }
@keyframes selectionSet { from { transform: scale(.985); } to { transform: scale(1); } }
@keyframes activeStepPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

@media (max-width: 820px) {
  .seal-action-dock .dock-progress { width: 100%; grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .draft-save-state.saving::before,
  .choice-stack button.selected,
  .rail-card.selected,
  .identity-option.selected,
  .dock-progress button.active i { animation: none; }
  .seal-action-dock .dock-primary > i { transition: none; }
}

/* Loader authority: one unboxed mark, then the prepared interface. */
.components-preparing {
  visibility: hidden;
  opacity: 0;
}

.components-ready {
  animation: componentsArrive .34s cubic-bezier(.22, 1, .36, 1) both;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050c0d;
}

.loader-symbol,
.exchange-transition-symbol {
  position: relative;
  width: clamp(108px, 10vw, 154px);
  aspect-ratio: .72;
  display: block;
  background: linear-gradient(155deg, #f8f6ee 8%, #59dce8 58%, #728cff);
  -webkit-mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  mask: url('../public/se-symbol-transparent.png') center / contain no-repeat;
  filter: drop-shadow(0 24px 48px rgba(89, 220, 232, .18));
}

.app-loader.is-entering .loader-symbol {
  animation: loaderEnter .68s cubic-bezier(.2, .9, .2, 1.15) both;
}

.app-loader.is-exiting {
  animation: loaderBackdropOut .34s ease both;
}

.app-loader.is-exiting .loader-symbol {
  animation: loaderExit .34s cubic-bezier(.55, 0, 1, .45) both;
}

@keyframes loaderEnter {
  0% { opacity: 0; transform: scale(.58); filter: blur(10px) drop-shadow(0 8px 18px rgba(89, 220, 232, 0)); }
  66% { opacity: 1; transform: scale(1.07); filter: blur(0) drop-shadow(0 28px 54px rgba(89, 220, 232, .24)); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 22px 44px rgba(89, 220, 232, .18)); }
}

@keyframes loaderExit {
  0% { opacity: 1; transform: scale(1); }
  38% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(.72); filter: blur(8px); }
}

@keyframes loaderBackdropOut { to { opacity: 0; visibility: hidden; } }
@keyframes componentsArrive { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

/* Seal Exchange: top context is a title; the only process control is the bottom dock. */
.exchange-context-header {
  grid-template-columns: 168px minmax(0, 1fr) minmax(270px, 340px);
}

.exchange-context-title {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px;
}

.exchange-context-title small {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.exchange-context-title strong {
  margin-top: 5px;
  overflow: hidden;
  color: #f3f1e9;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 620;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exchange-page-transition {
  inset: 86px 0 0;
  z-index: 116;
  padding: 0;
  place-items: center;
  background: rgba(4, 10, 13, .96);
  backdrop-filter: none;
  animation: exchangeLoaderIn .18s ease both;
}

.exchange-transition-symbol {
  width: clamp(82px, 8vw, 126px);
  animation: exchangeLoaderBump .54s cubic-bezier(.2, .9, .2, 1.12) both;
}

@keyframes exchangeLoaderIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes exchangeLoaderBump {
  0% { opacity: 0; transform: scale(.66); filter: blur(7px); }
  72% { opacity: 1; transform: scale(1.08); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 780px) {
  .exchange-context-header { grid-template-columns: 54px minmax(0, 1fr); }
  .exchange-context-title { padding-inline: 8px; }
  .exchange-context-title small { font-size: 9px; }
  .exchange-context-title strong { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .app-loader,
  .loader-symbol,
  .components-ready,
  .exchange-page-transition,
  .exchange-transition-symbol { animation: none !important; }
}

/* Seal Exchange authority: public discovery, native detail, gated settlement. */
.exchange-public-promise {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c4cdca;
  font-size: 15px;
  line-height: 1.4;
}
.exchange-public-promise i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(89, 220, 232, .09);
  color: var(--cyan);
  font-style: normal;
}
.market-sort-chips button {
  min-height: 42px;
  padding: 0 15px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: #8c9995;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.market-sort-chips button.active { background: rgba(89, 220, 232, .1); color: var(--cyan); }
.market-category-bar button,
.market-search input { font-size: 14px; }
.market-search { min-height: 48px; }
.market-trench > header p { font-size: 14px; }
.market-row-main > small { font-size: 13px; }
.market-row-main em { font-size: 12px; }
.market-row-meta i { padding: 6px 8px; font-size: 12px; }
.market-row-value small { font-size: 12px; line-height: 1.35; }
.market-board-note p,
.market-board-note button,
.market-board-note > span b { font-size: 13px; }

.market-detail-page { padding: 18px 0 110px; }
.market-detail-back {
  min-height: 58px;
  padding: 8px 18px 8px 10px;
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  color: #dce4e1;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.market-detail-back > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-size: 20px; font-style: normal; }
.market-detail-back small,
.market-detail-back b { display: block; }
.market-detail-back small { color: #7f8c88; font-size: 12px; }
.market-detail-back b { margin-top: 3px; font-size: 14px; }
.market-detail-header { padding: clamp(48px, 6vw, 88px) 0 clamp(34px, 4vw, 58px); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: end; gap: clamp(34px, 6vw, 90px); }
.market-detail-header h1 { max-width: 1000px; margin: 18px 0 0; font-size: clamp(60px, 7.2vw, 112px); font-weight: 500; line-height: .88; letter-spacing: -.075em; }
.market-detail-header > p { margin: 0; color: #99a5a1; font-size: clamp(17px, 1.25vw, 21px); line-height: 1.6; }
.market-detail-native { min-height: 610px; display: grid; grid-template-columns: minmax(340px, 1.1fr) minmax(360px, 1fr) minmax(320px, .68fr); overflow: hidden; border-radius: 30px; background: linear-gradient(145deg, #152027, #091016 70%); box-shadow: 0 40px 100px rgba(0, 0, 0, .28); }
.market-detail-native .market-detail-image { min-height: 610px; }
.market-detail-native .market-detail-copy { display: flex; flex-direction: column; justify-content: center; }
.market-detail-native .market-detail-copy dt { font-size: 12px; }
.market-detail-native .market-detail-copy dd { font-size: 14px; }
.origin-boundary { margin: 20px 0 0 !important; color: #7d8985 !important; font-size: 13px !important; line-height: 1.55 !important; }
.market-detail-native .market-backing-ticket { min-height: 574px; }
.market-detail-native .market-backing-ticket > p { font-size: 14px; }
.market-detail-native .market-backing-ticket > small { font-size: 12px; line-height: 1.55; }
.market-detail-native .accepted-assets span { font-size: 12px; }
.market-detail-native .market-backing-ticket > button { font-size: 15px; }
.market-detail-tabs { margin: 18px 0 0; padding: 9px; display: flex; gap: 8px; overflow-x: auto; border-radius: 18px; background: rgba(255, 255, 255, .035); scrollbar-width: none; }
.market-detail-tabs::-webkit-scrollbar { display: none; }
.market-detail-tabs a { min-width: 120px; min-height: 46px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border-radius: 12px; color: #aab5b1; font-size: 14px; font-weight: 650; text-decoration: none; }
.market-detail-tabs a:first-child { background: #f3f1e9; color: #07100f; }
.market-detail-ledger { margin-top: 22px; padding: clamp(30px, 4vw, 56px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr); align-items: end; gap: 46px; border-radius: 28px; background: linear-gradient(140deg, #d7e2f0, #f3f0e8 68%); color: #07100f; }
.market-detail-ledger h2 { max-width: 760px; margin: 14px 0 18px; font-size: clamp(42px, 4.7vw, 72px); font-weight: 520; line-height: .95; letter-spacing: -.06em; }
.market-detail-ledger p { max-width: 720px; margin: 0; color: #5f6c68; font-size: 16px; line-height: 1.6; }
.market-detail-ledger dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.market-detail-ledger dl > div { min-height: 104px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 16px; background: rgba(255, 255, 255, .54); }
.market-detail-ledger dt { color: #6b7773; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.market-detail-ledger dd { margin: 12px 0 0; font-size: 16px; font-weight: 650; }
.market-detail-mobile-action { display: none; }
.swap-value output.quote-required { font-size: clamp(24px, 2.4vw, 36px); font-weight: 620; letter-spacing: -.035em; white-space: normal; }

@media (max-width: 1180px) {
  .market-detail-native { grid-template-columns: .9fr 1.1fr; }
  .market-detail-native .market-backing-ticket { grid-column: 1 / -1; min-height: 360px; }
  .market-detail-ledger { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .market-detail-header { grid-template-columns: 1fr; gap: 24px; }
  .market-detail-header > p { max-width: 720px; }
  .market-detail-native { grid-template-columns: 1fr; }
  .market-detail-native .market-detail-image { min-height: 480px; }
  .market-detail-native .market-backing-ticket { grid-column: auto; }
  .market-detail-ledger dl { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .exchange-public-promise { align-items: flex-start; font-size: 14px; }
  .market-sort-chips button { min-height: 44px; font-size: 13px; }
  .market-board { display: block; overflow: visible; }
  .market-trench { min-width: 0; width: 100%; }
  .market-trench:not(.active) { display: none; }
  .market-row { min-height: 156px; grid-template-columns: 64px minmax(0, 1fr); align-items: start; }
  .market-row-value { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; text-align: left; }
  .market-row-value small { margin: 0; }
  .market-row-value > span { grid-column: 1 / -1; margin-top: 0; }
  .market-detail-page { padding-top: 8px; padding-bottom: 132px; }
  .market-detail-back { position: sticky; top: 84px; z-index: 30; box-shadow: 0 18px 50px rgba(0, 0, 0, .24); }
  .market-detail-header { padding-top: 48px; }
  .market-detail-header h1 { font-size: clamp(52px, 16vw, 74px); }
  .market-detail-header > p { font-size: 17px; }
  .market-detail-native { border-radius: 24px; }
  .market-detail-native .market-detail-image { min-height: 390px; }
  .market-detail-native .market-backing-ticket { min-height: 410px; }
  .market-detail-tabs { margin-inline: -4px; }
  .market-detail-ledger { padding: 30px 22px; border-radius: 24px; }
  .market-detail-ledger dl { grid-template-columns: 1fr; }
  .market-detail-mobile-action { position: fixed; z-index: 125; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); left: 12px; min-height: 78px; padding: 10px 10px 10px 16px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; border-radius: 20px; background: rgba(9, 18, 22, .94); box-shadow: 0 24px 68px rgba(0, 0, 0, .42); backdrop-filter: blur(18px); }
  .market-detail-mobile-action small,
  .market-detail-mobile-action b { display: block; }
  .market-detail-mobile-action small { color: var(--cyan); font-size: 12px; }
  .market-detail-mobile-action b { margin-top: 3px; overflow: hidden; color: white; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
  .market-detail-mobile-action button { min-height: 58px; padding: 0 18px; border: 0; border-radius: 15px; background: var(--cobalt); color: white; font: inherit; font-size: 14px; font-weight: 680; }
}

/* Seal Exchange page frame: one fixed context across Discover, Market and Seal. */
.journey-screen { animation: none; transform: none; }

.exchange-context-header {
  position: sticky;
  top: 98px;
  z-index: 90;
  width: 100%;
  min-height: 88px;
  margin: 0 0 clamp(34px, 4vw, 58px);
  padding: 10px;
  display: grid;
  grid-template-columns: 168px minmax(420px, 1fr) minmax(270px, 340px);
  align-items: center;
  gap: 18px;
  border-radius: 22px;
  background: rgba(8, 16, 20, .91);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(24px) saturate(118%);
}

.exchange-context-back {
  min-height: 66px;
  padding: 8px 13px 8px 8px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  color: #f2f0e8;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.exchange-context-back.is-placeholder { visibility: hidden; pointer-events: none; }
.exchange-context-back > i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-size: 21px; font-style: normal; }
.exchange-context-back small,
.exchange-context-back b { display: block; }
.exchange-context-back small { color: #7f8c88; font-size: 12px; }
.exchange-context-back b { margin-top: 3px; font-size: 14px; }

.exchange-context-breadcrumbs {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 18px minmax(100px, 1fr) 18px minmax(100px, 1fr);
  align-items: center;
  gap: 6px;
}

.exchange-context-breadcrumbs button {
  min-width: 0;
  min-height: 56px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #6f7c78;
  font: inherit;
  font-size: 14px;
  font-weight: 630;
  cursor: pointer;
}

.exchange-context-breadcrumbs button:disabled { cursor: default; }
.exchange-context-breadcrumbs button.complete { color: #aab5b1; }
.exchange-context-breadcrumbs button.complete > i { color: var(--lime); }
.exchange-context-breadcrumbs button.active { background: #f3f1e9; color: #07100f; box-shadow: 0 14px 34px rgba(0, 0, 0, .22); }
.exchange-context-breadcrumbs button > i { color: var(--cyan); font-size: 14px; font-style: normal; }
.exchange-context-divider { color: rgba(243, 241, 233, .18); font-size: 15px; text-align: center; }

.exchange-context-summary {
  min-width: 0;
  min-height: 66px;
  padding: 8px 13px 8px 8px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  border-radius: 15px;
  background: rgba(89, 220, 232, .055);
}

.exchange-context-emblem { position: relative; width: 48px; height: 48px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: #07100f; color: var(--cyan); font-size: 20px; }
.exchange-context-emblem img { object-fit: cover; }
.exchange-context-summary small,
.exchange-context-summary b { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.exchange-context-summary small { color: var(--cyan); font-size: 12px; }
.exchange-context-summary b { margin-top: 4px; color: #e5ebe8; font-size: 14px; font-weight: 630; }

.market-detail-page { padding-top: 0; }

.exchange-page-transition {
  position: fixed;
  inset: 190px 0 0;
  z-index: 88;
  padding: clamp(22px, 4vw, 64px);
  display: grid;
  place-items: center;
  background: rgba(5, 11, 14, .88);
  backdrop-filter: blur(20px) saturate(115%);
  animation: exchangeTransitionIn .18s ease-out both;
}

.exchange-transition-card {
  width: min(720px, 100%);
  min-height: 430px;
  padding: clamp(34px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 20%, rgba(49, 84, 232, .18), transparent 42%), linear-gradient(145deg, #112027, #07100f 72%);
  box-shadow: 0 42px 120px rgba(0, 0, 0, .48);
  color: #f3f1e9;
  text-align: center;
  animation: exchangeTransitionCard .42s cubic-bezier(.22, 1, .36, 1) both;
}

.exchange-transition-mark { position: relative; width: 112px; height: 112px; margin-bottom: 26px; display: grid; place-items: center; border-radius: 28px; background: rgba(255, 255, 255, .045); }
.exchange-transition-mark img { width: 58px; height: auto; }
.exchange-transition-mark > i { position: absolute; inset: -7px; border-radius: 34px; background: conic-gradient(from 90deg, transparent 0 52%, var(--cyan) 70%, var(--lime) 82%, transparent 92%); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; padding: 2px; animation: exchangeSignal 1.15s linear infinite; }
.exchange-transition-card .eyebrow { color: var(--cyan); }
.exchange-transition-card h2 { max-width: 620px; margin: 19px 0 0; font-size: clamp(44px, 5vw, 72px); font-weight: 510; line-height: .94; letter-spacing: -.06em; }
.exchange-transition-card > p { max-width: 540px; margin: 20px 0 0; color: #9aa6a2; font-size: 17px; line-height: 1.6; }
.exchange-transition-market { margin-top: 24px; padding: 8px 14px 8px 8px; display: inline-flex; align-items: center; gap: 10px; border-radius: 13px; background: rgba(255, 255, 255, .05); color: #dfe6e3; font-size: 13px; }
.exchange-transition-market img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.exchange-transition-path { width: min(240px, 72%); margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.exchange-transition-path i { height: 4px; border-radius: 99px; background: rgba(255, 255, 255, .1); }
.exchange-transition-path i.done { background: var(--cyan); }
.exchange-transition-path i.active { background: var(--lime); box-shadow: 0 0 20px rgba(199, 255, 49, .36); }

@keyframes exchangeTransitionIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes exchangeTransitionCard { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes exchangeSignal { to { transform: rotate(1turn); } }

@media (max-width: 1180px) {
  .exchange-context-header { grid-template-columns: 72px minmax(360px, 1fr) minmax(230px, 300px); }
  .exchange-context-back { grid-template-columns: 48px; padding-inline: 8px; }
  .exchange-context-back > span { display: none; }
}

@media (max-width: 780px) {
  .exchange-context-header { top: 76px; min-height: 76px; margin-bottom: 30px; grid-template-columns: 54px minmax(0, 1fr); gap: 8px; padding: 7px; border-radius: 18px; }
  .exchange-context-back { min-height: 58px; grid-template-columns: 44px; padding: 7px; border-radius: 13px; }
  .exchange-context-back > i { width: 44px; height: 44px; border-radius: 10px; }
  .exchange-context-breadcrumbs { grid-template-columns: 1fr 10px 1fr 10px 1fr; gap: 2px; }
  .exchange-context-breadcrumbs button { min-height: 58px; padding: 0 7px; gap: 5px; border-radius: 12px; font-size: 12px; }
  .exchange-context-breadcrumbs button > i { display: none; }
  .exchange-context-summary { display: none; }
  .exchange-page-transition { inset: 152px 0 calc(var(--mobile-nav-height, 72px) + env(safe-area-inset-bottom)); padding: 14px; }
  .exchange-transition-card { min-height: min(480px, 74svh); padding: 34px 22px; border-radius: 26px; }
  .exchange-transition-mark { width: 92px; height: 92px; border-radius: 24px; }
  .exchange-transition-mark > i { border-radius: 29px; }
  .exchange-transition-card h2 { font-size: clamp(40px, 12vw, 58px); }
  .exchange-transition-card > p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .exchange-page-transition,
  .exchange-transition-card,
  .exchange-transition-mark > i { animation: none; }
}

/* Genesis 2.1: ten ordered onboarding steps followed by a read-only Account Origin. */
.genesis-ten-step-shell {
  grid-template-columns: 228px minmax(0, 1fr) 318px;
  align-items: start;
}

.genesis-ten-steps { position: sticky; top: 112px; gap: 7px; }
.genesis-ten-steps button {
  min-height: 62px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 8px 11px;
  border-radius: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.genesis-ten-steps button:not(:disabled):hover { transform: translateX(3px); background: rgba(255, 255, 255, .065); }
.genesis-ten-steps button:disabled { cursor: not-allowed; opacity: .55; }
.genesis-ten-steps button i { width: 34px; height: 34px; border-radius: 10px; }
.genesis-ten-steps button span { min-width: 0; display: grid; gap: 2px; }
.genesis-ten-steps button b { font-size: 14px; line-height: 1.2; }
.genesis-ten-steps button small { overflow: hidden; color: rgba(245, 243, 235, .46); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.genesis-ten-steps button.active { background: linear-gradient(120deg, rgba(49, 84, 232, .28), rgba(84, 216, 229, .08)); }
.genesis-ten-steps button.active i { background: #3154e8; box-shadow: 0 12px 26px rgba(49, 84, 232, .28); }
.genesis-ten-steps button.complete i { background: rgba(199, 255, 49, .08); }

.genesis-ten-step-shell .genesis-stage {
  min-height: 850px;
  padding: clamp(30px, 3vw, 50px);
  border-radius: 28px;
  background: radial-gradient(circle at 92% 4%, rgba(49, 84, 232, .13), transparent 30%), linear-gradient(145deg, rgba(255, 255, 255, .072), rgba(255, 255, 255, .024));
}
.genesis-ten-step-shell .genesis-fields { gap: 22px; }
.genesis-ten-step-shell .genesis-fields h2 { max-width: 800px; font-size: clamp(44px, 4.3vw, 70px); }
.genesis-ten-step-shell .genesis-fields > p { max-width: 760px; font-size: 18px; }
.genesis-ten-step-shell .genesis-fields textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 18px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  color: white;
  font: inherit;
  font-size: 17px;
  line-height: 1.5;
}
.genesis-ten-step-shell .genesis-fields input[type="range"] { width: 100%; accent-color: var(--cyan); }

.genesis-document-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.genesis-document-types button {
  min-height: 156px;
  padding: 20px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  color: white;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.genesis-document-types button i { color: var(--cyan); font-size: 28px; font-style: normal; }
.genesis-document-types button b { font-size: 18px; }
.genesis-document-types button small { color: rgba(245, 243, 235, .5); }
.genesis-document-types button.selected { background: linear-gradient(145deg, rgba(49, 84, 232, .76), rgba(49, 84, 232, .24)); box-shadow: 0 22px 54px rgba(19, 39, 118, .28); }

.genesis-authority-card {
  padding: 19px 20px;
  display: grid;
  gap: 8px;
  border-radius: 17px;
  background: rgba(255, 181, 54, .075);
}
.genesis-authority-card > span { display: flex; align-items: center; gap: 10px; }
.genesis-authority-card > span i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: rgba(255, 181, 54, .14); color: #ffbe55; font-style: normal; }
.genesis-authority-card p { margin: 0; color: rgba(245, 243, 235, .58); line-height: 1.55; }

.genesis-email-anchor,
.genesis-fee-card,
.genesis-wallet-action {
  min-height: 118px;
  padding: 22px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  color: white;
}
.genesis-email-anchor { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.genesis-email-anchor span { display: grid; gap: 7px; }
.genesis-email-anchor small,
.genesis-fee-card small { color: var(--cyan); letter-spacing: .14em; }
.genesis-email-anchor b { font-size: 20px; }
.genesis-email-anchor em { padding: 9px 12px; border-radius: 10px; background: rgba(199, 255, 49, .08); color: var(--lime); font-style: normal; }
.genesis-inline-action { min-height: 60px; padding: 0 19px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 14px; background: var(--cobalt); color: white; font: inherit; font-weight: 700; cursor: pointer; }
.genesis-inline-action:disabled { opacity: .4; cursor: not-allowed; }
.genesis-field-note { margin: -8px 0 0 !important; color: rgba(245, 243, 235, .45) !important; font-size: 14px !important; }
.genesis-wallet-action { width: 100%; display: flex; align-items: center; gap: 16px; font: inherit; text-align: left; cursor: pointer; }
.genesis-wallet-action > i { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: rgba(84, 216, 229, .09); color: var(--cyan); font-size: 28px; font-style: normal; }
.genesis-wallet-action span { display: grid; gap: 5px; }
.genesis-wallet-action b { font-size: 19px; }
.genesis-wallet-action small { color: rgba(245, 243, 235, .5); }
.genesis-wallet-action.connected { background: rgba(199, 255, 49, .07); }

.genesis-policy-section { padding: 22px; display: grid; gap: 16px; border-radius: 20px; background: rgba(255, 255, 255, .038); }
.genesis-policy-section > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.genesis-policy-section > header span { display: grid; gap: 7px; }
.genesis-policy-section > header small { color: var(--cyan); letter-spacing: .14em; }
.genesis-policy-section h3 { margin: 0; font-size: 23px; line-height: 1.15; }
.genesis-policy-section code { max-width: 52%; overflow-wrap: anywhere; color: var(--lime); font-size: 13px; text-align: right; }
.genesis-policy-section.compact { margin-top: 6px; }

.genesis-fee-card { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 28px; background: radial-gradient(circle at 20% 30%, rgba(49, 84, 232, .2), transparent 44%), rgba(255, 255, 255, .045); }
.genesis-fee-card > span { display: grid; grid-template-columns: auto auto; align-items: end; gap: 4px 8px; }
.genesis-fee-card > span small { grid-column: 1 / -1; }
.genesis-fee-card strong { font: 54px Georgia, serif; }
.genesis-fee-card em { padding-bottom: 8px; color: rgba(245, 243, 235, .5); font-style: normal; }
.genesis-fee-card p { margin: 7px 0 0; color: rgba(245, 243, 235, .54); line-height: 1.5; }

.genesis-cycle-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.genesis-cycle-tabs button { min-height: 76px; padding: 10px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; border: 0; border-radius: 15px; background: rgba(255, 255, 255, .04); color: rgba(245, 243, 235, .58); font: inherit; text-align: left; cursor: pointer; }
.genesis-cycle-tabs button i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(255, 255, 255, .06); font-style: normal; }
.genesis-cycle-tabs button span { display: grid; gap: 3px; }
.genesis-cycle-tabs button small { font-size: 11px; }
.genesis-cycle-tabs button b { font-size: 14px; }
.genesis-cycle-tabs button.active { background: rgba(49, 84, 232, .28); color: white; }
.genesis-cycle-tabs button.complete i { color: var(--lime); }
.genesis-cycle-form { padding: 24px; display: grid; gap: 19px; border-radius: 22px; background: rgba(255, 255, 255, .045); }
.genesis-cycle-form > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.genesis-cycle-form > header small { color: var(--cyan); letter-spacing: .12em; }
.genesis-cycle-form h3 { max-width: 610px; margin: 7px 0 0; font-size: 24px; line-height: 1.22; }
.genesis-cycle-form > header > em { min-width: 104px; padding: 13px; border-radius: 13px; background: rgba(255, 255, 255, .055); color: var(--cyan); font: normal 22px Georgia, serif; text-align: center; }
.genesis-cycle-form > header > em.bloom { color: var(--lime); }
.genesis-eva-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.genesis-eva { padding: 15px; border-radius: 14px; background: rgba(0, 0, 0, .16); }
.genesis-eva > span { display: flex; align-items: center; justify-content: space-between; }
.genesis-eva strong { color: white; font: 20px Georgia, serif; }
.genesis-evidence-input { position: relative; min-height: 68px; padding: 14px 16px; align-content: center; border-radius: 14px; background: rgba(84, 216, 229, .045); overflow: hidden; }
.genesis-evidence-input input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.genesis-evidence-input span { color: rgba(245, 243, 235, .54); font-size: 13px; }

.genesis-fingerprint { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.genesis-fingerprint > span { min-height: 116px; padding: 17px; display: grid; align-content: center; gap: 9px; border-radius: 16px; background: rgba(255, 255, 255, .045); }
.genesis-fingerprint small { color: var(--cyan); letter-spacing: .1em; }
.genesis-fingerprint strong { font-size: 21px; overflow-wrap: anywhere; }
.telemetry-list { display: grid; gap: 9px; }
.genesis-d0-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.genesis-d0-summary span { min-height: 106px; padding: 17px; display: grid; align-content: center; gap: 8px; border-radius: 16px; background: rgba(255, 255, 255, .04); }
.genesis-d0-summary small { color: var(--cyan); letter-spacing: .1em; }

.genesis-controls {
  position: sticky;
  z-index: 6;
  bottom: 16px;
  min-height: 84px;
  margin: auto -18px -18px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(120px, 170px) 1fr minmax(210px, 260px);
  align-items: center;
  border-radius: 20px;
  background: rgba(7, 16, 15, .93);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .36);
  backdrop-filter: blur(20px);
}
.genesis-controls > span { display: grid; justify-items: center; gap: 3px; color: white; }
.genesis-controls > span small { color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; }
.genesis-controls > span b { font-size: 15px; }
.genesis-controls .primary { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(115deg, #213b86, #3156bd); }
.genesis-controls .primary.ready-to-progress { background: linear-gradient(115deg, #c7ff31, #a8ed35); color: #07100f; box-shadow: 0 18px 52px rgba(199, 255, 49, .2); animation: readyCtaBreathe 2.5s ease-in-out infinite; }

.genesis-onboarding-memory { position: sticky; top: 112px; min-height: 700px; }
.genesis-onboarding-memory > strong { font-size: 64px; }
.genesis-onboarding-memory > strong em { margin-left: 5px; color: rgba(245, 243, 235, .35); font: normal 20px system-ui, sans-serif; }
.genesis-step-map { width: 100%; margin: 22px 0; display: grid; grid-template-columns: repeat(10, 1fr); gap: 5px; }
.genesis-step-map i { height: 4px; border-radius: 99px; background: rgba(255, 255, 255, .09); }
.genesis-step-map i.complete { background: var(--cyan); }
.genesis-step-map i.active { background: var(--lime); box-shadow: 0 0 15px rgba(199, 255, 49, .35); }

.genesis-account-origin { grid-column: 1 / -1; padding: clamp(28px, 3vw, 48px); }
.genesis-origin-intro { padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 20px; background: radial-gradient(circle at 82% 20%, rgba(49, 84, 232, .16), transparent 34%), #061311; color: white; }
.genesis-origin-intro > div,
.genesis-origin-intro > span { display: grid; gap: 7px; }
.genesis-origin-intro > span { justify-items: end; text-align: right; }
.genesis-origin-intro small { color: var(--cyan); letter-spacing: .14em; }
.genesis-origin-intro strong { font-size: clamp(26px, 3vw, 42px); }
.genesis-origin-intro code,
.genesis-origin-intro em { color: rgba(245, 243, 235, .55); font-style: normal; }
.genesis-origin-explainer { max-width: 820px; margin: 22px 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.genesis-origin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.genesis-origin-section { min-width: 0; padding: 21px; border-radius: 18px; background: rgba(5, 19, 17, .045); }
.genesis-origin-section > small { color: #038c8c; letter-spacing: .13em; }
.genesis-origin-section h3 { min-height: 52px; margin: 9px 0 15px; font-size: 22px; line-height: 1.18; overflow-wrap: anywhere; }
.genesis-origin-section dl { display: grid; grid-template-columns: 1fr; gap: 0; }
.genesis-origin-section dl div { padding: 11px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; border-radius: 0; background: transparent; border-bottom: 0; }
.genesis-origin-section dt { font-size: 13px; }
.genesis-origin-section dd { min-width: 0; max-width: 58%; margin: 0; font-size: 13px; text-align: right; overflow-wrap: anywhere; }
.origin-truncate { overflow: hidden !important; text-overflow: ellipsis; white-space: nowrap; }
.genesis-commitments { margin-top: 20px; }
.genesis-commitments[open] { display: grid; gap: 8px; }
.genesis-commitments code { display: block; padding: 12px; overflow-wrap: anywhere; border-radius: 10px; background: rgba(5, 19, 17, .045); color: #41645f; font-size: 11px; }
.genesis-origin-empty { min-height: 220px; display: grid; place-content: center; gap: 10px; text-align: center; }
.genesis-origin-empty strong { font-size: 28px; }
.genesis-origin-empty p { margin: 0; color: var(--muted); }

@media (max-width: 1250px) {
  .genesis-ten-step-shell { grid-template-columns: 190px minmax(0, 1fr); }
  .genesis-onboarding-memory { position: relative; top: auto; grid-column: 1 / -1; min-height: 390px; }
  .genesis-origin-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .genesis-intro h1 { font-size: clamp(48px, 14vw, 68px); }
  .review-boundary { line-height: 1.5; }
  .genesis-ten-step-shell { display: block; }
  .genesis-ten-steps { position: sticky; z-index: 9; top: 76px; margin: 0 -18px 14px; padding: 8px 18px; flex-direction: row; overflow-x: auto; background: rgba(6, 17, 15, .94); backdrop-filter: blur(18px); scroll-snap-type: x mandatory; }
  .genesis-ten-steps button { min-width: 152px; min-height: 62px; scroll-snap-align: start; }
  .genesis-ten-step-shell .genesis-stage { min-height: 720px; padding: 26px 18px 18px; border-radius: 22px; }
  .genesis-ten-step-shell .genesis-fields h2 { font-size: clamp(40px, 12vw, 56px); }
  .genesis-ten-step-shell .genesis-fields > p { font-size: 16px; }
  .genesis-document-types,
  .genesis-cycle-tabs,
  .genesis-eva-grid,
  .genesis-fingerprint,
  .genesis-d0-summary,
  .genesis-fee-card { grid-template-columns: 1fr; }
  .genesis-document-types button { min-height: 112px; }
  .genesis-fee-card { gap: 16px; }
  .genesis-cycle-form { padding: 18px; }
  .genesis-cycle-form > header { display: grid; }
  .genesis-cycle-form > header > em { justify-self: start; }
  .genesis-policy-section > header { display: grid; }
  .genesis-policy-section code { max-width: 100%; text-align: left; }
  .genesis-controls { bottom: calc(10px + env(safe-area-inset-bottom)); min-height: 78px; margin: auto -8px -8px; grid-template-columns: 58px minmax(0, 1fr) minmax(142px, 1.4fr); gap: 7px; }
  .genesis-controls button { min-height: 58px; padding: 0 13px; }
  .genesis-controls .quiet { font-size: 0; }
  .genesis-controls .quiet::before { content: "←"; font-size: 20px; }
  .genesis-controls > span small { font-size: 10px; }
  .genesis-controls > span b { font-size: 13px; }
  .genesis-controls .primary { font-size: 13px; }
  .genesis-controls .primary i { display: none; }
  .genesis-onboarding-memory { min-height: 420px; margin-top: 18px; }
  .genesis-origin-intro { display: grid; }
  .genesis-origin-intro > span { justify-items: start; text-align: left; }
  .genesis-origin-grid { grid-template-columns: 1fr; }
  .genesis-origin-section h3 { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .genesis-controls .primary.ready-to-progress { animation: none; }
}

/* Public Seal Exchange: product story only until login and Genesis are complete. */
.exchange-marketing {
  width: min(1540px, calc(100% - (var(--viewport-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 108px) 0 120px;
  color: #f3f1e9;
}

.exchange-marketing-hero {
  min-height: min(760px, calc(100svh - 150px));
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}
.exchange-marketing-copy h1 {
  max-width: 820px;
  margin: 20px 0 28px;
  font-size: clamp(70px, 7.7vw, 126px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.08em;
}
.exchange-marketing-copy h1 em { color: var(--cyan); font-style: normal; }
.exchange-marketing-copy > p { max-width: 720px; margin: 0; color: #94a09c; font-size: clamp(19px, 1.45vw, 24px); line-height: 1.55; }
.exchange-marketing-actions { margin-top: 36px; display: flex; align-items: center; gap: 24px; }
.exchange-marketing-actions button,
.exchange-access-panel > button { min-height: 66px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; border: 0; border-radius: 17px; background: var(--lime); color: #07100f; font: inherit; font-size: 16px; font-weight: 740; cursor: pointer; box-shadow: 0 20px 54px rgba(199, 255, 49, .16); }
.exchange-marketing-actions button i,
.exchange-access-panel > button i { font-size: 19px; font-style: normal; }
.exchange-marketing-actions a { color: #d8dfdc; font-size: 15px; text-decoration: none; }

.exchange-marketing-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 42px;
  background: #0e1a1e;
  box-shadow: 0 48px 120px rgba(0, 0, 0, .4);
}
.exchange-marketing-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 11, 14, .04), rgba(5, 11, 14, .18) 40%, rgba(5, 11, 14, .92)); }
.exchange-marketing-visual > img { object-fit: cover; }
.exchange-marketing-ticket { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; min-height: 190px; padding: 28px; display: grid; align-content: end; border-radius: 25px; background: rgba(244, 242, 235, .94); color: #07100f; backdrop-filter: blur(18px); }
.exchange-marketing-ticket small { color: #038c8c; letter-spacing: .15em; }
.exchange-marketing-ticket strong,
.exchange-marketing-ticket span,
.exchange-marketing-ticket em { display: inline; font-size: clamp(30px, 3vw, 48px); font-style: normal; font-weight: 540; line-height: 1; letter-spacing: -.05em; }
.exchange-marketing-ticket span { color: #3154e8; }
.exchange-marketing-ticket em { color: #038c8c; }
.exchange-marketing-lock { position: absolute; z-index: 3; top: 25px; right: 25px; padding: 10px 13px; border-radius: 11px; background: rgba(5, 11, 14, .82); color: var(--lime); font-size: 11px; letter-spacing: .13em; backdrop-filter: blur(14px); }

.exchange-story-banners { padding: clamp(70px, 9vw, 150px) 0; display: grid; gap: clamp(30px, 5vw, 70px); }
.exchange-story-banner { min-height: 610px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); align-items: stretch; overflow: hidden; border-radius: 38px; background: #0c171a; box-shadow: 0 38px 100px rgba(0, 0, 0, .24); }
.exchange-story-banner.reverse { grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr); }
.exchange-story-banner.reverse .exchange-story-image { order: 2; }
.exchange-story-image { position: relative; min-height: 610px; }
.exchange-story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(12, 23, 26, .74)); }
.exchange-story-banner.reverse .exchange-story-image::after { background: linear-gradient(270deg, transparent 55%, rgba(12, 23, 26, .74)); }
.exchange-story-image img { object-fit: cover; }
.exchange-story-banner > div:last-child { padding: clamp(42px, 6vw, 88px); display: flex; flex-direction: column; justify-content: center; }
.exchange-story-banner > div:last-child > span { color: var(--cyan); font-size: 13px; letter-spacing: .18em; }
.exchange-story-banner h2 { max-width: 570px; margin: 20px 0 25px; font-size: clamp(48px, 5.4vw, 84px); font-weight: 510; line-height: .92; letter-spacing: -.065em; }
.exchange-story-banner p { max-width: 620px; margin: 0; color: #8e9a96; font-size: 18px; line-height: 1.65; }

.exchange-access-panel {
  min-height: 480px;
  padding: clamp(44px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
  align-items: center;
  gap: 54px 80px;
  border-radius: 40px;
  background: radial-gradient(circle at 80% 10%, rgba(49, 84, 232, .22), transparent 34%), linear-gradient(145deg, #102228, #07100f 72%);
  box-shadow: 0 45px 120px rgba(0, 0, 0, .3);
}
.exchange-access-panel h2 { max-width: 760px; margin: 17px 0 20px; font-size: clamp(52px, 6vw, 92px); font-weight: 510; line-height: .9; letter-spacing: -.07em; }
.exchange-access-panel > div > p { max-width: 650px; margin: 0; color: #8f9b97; font-size: 18px; line-height: 1.6; }
.exchange-access-panel ol { margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.exchange-access-panel li { min-height: 86px; padding: 13px 16px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 14px; border-radius: 16px; background: rgba(255, 255, 255, .045); color: #7c8985; }
.exchange-access-panel li > i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(255, 255, 255, .05); font-style: normal; }
.exchange-access-panel li span { display: grid; gap: 4px; }
.exchange-access-panel li b { color: #b9c2bf; font-size: 16px; }
.exchange-access-panel li small { color: #75827e; font-size: 12px; }
.exchange-access-panel li.active { background: rgba(89, 220, 232, .08); color: var(--cyan); }
.exchange-access-panel li.active b { color: white; }
.exchange-access-panel li.complete > i { background: rgba(199, 255, 49, .09); color: var(--lime); }
.exchange-access-panel > button { grid-column: 2; justify-self: start; min-width: 230px; }

@media (max-width: 1080px) {
  .exchange-marketing-hero { min-height: auto; grid-template-columns: 1fr; }
  .exchange-marketing-visual { min-height: 600px; }
  .exchange-story-banner,
  .exchange-story-banner.reverse { grid-template-columns: 1fr; }
  .exchange-story-banner.reverse .exchange-story-image { order: 0; }
  .exchange-story-image { min-height: 480px; }
  .exchange-story-image::after,
  .exchange-story-banner.reverse .exchange-story-image::after { background: linear-gradient(180deg, transparent 55%, rgba(12, 23, 26, .75)); }
  .exchange-access-panel { grid-template-columns: 1fr; }
  .exchange-access-panel > button { grid-column: auto; }
}

@media (max-width: 700px) {
  .exchange-marketing { width: min(100% - 28px, 1540px); padding: 44px 0 100px; }
  .exchange-marketing-copy h1 { font-size: clamp(58px, 17vw, 82px); }
  .exchange-marketing-copy > p { font-size: 17px; }
  .exchange-marketing-actions { align-items: stretch; flex-direction: column; }
  .exchange-marketing-actions button { width: 100%; }
  .exchange-marketing-actions a { padding: 12px 0; text-align: center; }
  .exchange-marketing-visual { min-height: 520px; border-radius: 28px; }
  .exchange-marketing-ticket { right: 14px; bottom: 14px; left: 14px; min-height: 164px; padding: 21px; border-radius: 20px; }
  .exchange-marketing-lock { top: 14px; right: 14px; }
  .exchange-story-banners { padding: 70px 0; }
  .exchange-story-banner { min-height: 0; border-radius: 26px; }
  .exchange-story-image { min-height: 360px; }
  .exchange-story-banner > div:last-child { padding: 30px 24px 38px; }
  .exchange-story-banner h2 { font-size: clamp(42px, 13vw, 60px); }
  .exchange-story-banner p { font-size: 16px; }
  .exchange-access-panel { min-height: 0; padding: 34px 22px; border-radius: 28px; gap: 34px; }
  .exchange-access-panel h2 { font-size: clamp(46px, 14vw, 66px); }
  .exchange-access-panel > button { width: 100%; }
}

/* Full-viewport seal selector: four clear product choices, one stable surface. */
.header-seal-menu {
  height: calc(100dvh - 86px);
  overflow-y: auto;
  background: #060c11;
}

.header-menu-scrim {
  position: fixed;
  top: 86px;
  background: radial-gradient(circle at 50% 0%, rgba(41, 73, 217, .1), transparent 36%), #060c11;
  backdrop-filter: none;
}

.header-seal-menu-inner {
  width: min(1760px, calc(100% - clamp(40px, 5vw, 96px)));
  min-height: calc(100dvh - 86px);
  margin: 0 auto;
  padding: clamp(34px, 4vh, 58px) 0 clamp(38px, 5vh, 68px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(24px, 3vh, 40px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-seal-menu .seal-kind-menu-intro {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(520px, 1.1fr) 60px;
  align-items: end;
  gap: 30px clamp(38px, 5vw, 84px);
}

.header-seal-menu .seal-kind-menu-intro > div {
  display: grid;
  gap: 12px;
}

.header-seal-menu .seal-kind-menu-intro > div > small {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.header-seal-menu .seal-kind-menu-intro strong {
  max-width: none;
  color: #f6f4ec;
  font-size: clamp(44px, 4vw, 70px);
  font-weight: 540;
  line-height: .96;
  letter-spacing: -.055em;
}

.header-seal-menu .seal-kind-menu-intro > span {
  max-width: 760px;
  justify-self: start;
  color: #9ba6a4;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.58;
}

.header-seal-menu .seal-kind-menu-intro > span b {
  display: block;
  margin-bottom: 5px;
  color: #f0eee7;
  font-weight: 620;
}

.seal-menu-close {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  align-self: start;
  padding: 0 0 4px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  color: #f6f4ec;
  font: inherit;
  font-size: 34px;
  font-weight: 260;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.seal-menu-close:hover,
.seal-menu-close:focus-visible {
  background: rgba(255, 255, 255, .13);
  transform: scale(1.04);
}

.header-seal-menu .seal-kind-menu-options {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.3vw, 24px);
}

.header-seal-menu .seal-kind-menu-options button {
  min-height: clamp(430px, 58vh, 680px);
  height: 100%;
  padding: clamp(24px, 2.2vw, 38px);
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #111a21;
  box-shadow: 0 30px 84px rgba(0, 0, 0, .3);
  isolation: isolate;
}

.header-seal-menu .seal-kind-menu-options button::before {
  display: block;
  opacity: .58;
  background-position: center;
  filter: saturate(.82) contrast(1.03);
  transform: scale(1.01);
}

.header-seal-menu .seal-kind-menu-options button::after {
  background: linear-gradient(180deg, rgba(4, 8, 13, .03) 0%, rgba(4, 8, 13, .12) 30%, rgba(4, 8, 13, .92) 70%, rgba(4, 8, 13, .99) 100%);
}

.header-seal-menu .seal-kind-menu-options button:hover::before,
.header-seal-menu .seal-kind-menu-options button:focus-visible::before,
.header-seal-menu .seal-kind-menu-options button.selected::before {
  opacity: .78;
  filter: saturate(.96) contrast(1.05);
  transform: scale(1.055);
}

.header-seal-menu .seal-kind-menu-options button:hover,
.header-seal-menu .seal-kind-menu-options button:focus-visible,
.header-seal-menu .seal-kind-menu-options button.selected {
  background: #111a21;
  transform: translateY(-5px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .42), 0 0 48px rgba(89, 220, 232, .08);
}

.header-seal-menu .seal-kind-menu-options button > i {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: rgba(5, 12, 16, .7);
  color: var(--cyan);
  font-size: 20px;
  backdrop-filter: blur(14px);
}

.header-seal-menu .seal-kind-menu-options button.selected > i {
  background: var(--cobalt);
  color: white;
}

.header-seal-menu .seal-kind-menu-options button > span {
  display: grid;
  align-self: end;
  gap: 12px;
}

.header-seal-menu .seal-kind-menu-options button b {
  color: #f7f5ee;
  font-size: clamp(25px, 1.75vw, 32px);
  font-weight: 610;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.header-seal-menu .seal-kind-menu-options button small {
  max-width: 34ch;
  display: block;
  overflow: visible;
  color: #b0bab7;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
  -webkit-line-clamp: unset;
}

.header-seal-menu .seal-kind-menu-options .seal-card-action {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-seal-menu .seal-kind-menu-options button > em {
  padding-top: 12px;
  color: var(--cyan);
  font-size: 26px;
}

@media (max-width: 1180px) and (min-width: 701px) {
  .header-seal-menu-inner {
    width: min(100% - 48px, 980px);
    padding-block: 34px 50px;
  }

  .header-seal-menu .seal-kind-menu-intro {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr) 56px;
    gap: 28px;
  }

  .header-seal-menu .seal-kind-menu-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-seal-menu .seal-kind-menu-options button {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .header-seal-menu {
    height: calc(100dvh - 68px - env(safe-area-inset-top));
  }

  .header-menu-scrim {
    top: calc(68px + env(safe-area-inset-top));
    background: #060c11;
  }

  .header-seal-menu-inner {
    width: 100%;
    min-height: 100%;
    padding: 24px 14px calc(32px + env(safe-area-inset-bottom));
    gap: 24px;
  }

  .header-seal-menu .seal-kind-menu-intro {
    margin: 0;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: start;
    gap: 12px 16px;
  }

  .header-seal-menu .seal-kind-menu-intro > div {
    gap: 8px;
  }

  .header-seal-menu .seal-kind-menu-intro strong {
    font-size: clamp(38px, 11vw, 52px);
  }

  .header-seal-menu .seal-kind-menu-intro > span {
    grid-column: 1 / -1;
    font-size: 15px;
    line-height: 1.5;
  }

  .seal-menu-close {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 28px;
  }

  .header-seal-menu .seal-kind-menu-options {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-seal-menu .seal-kind-menu-options button {
    min-height: 300px;
    height: auto;
    padding: 22px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    gap: 16px;
    border-radius: 22px;
  }

  .header-seal-menu .seal-kind-menu-options button::before {
    display: block;
    opacity: .55;
    background-position: center;
  }

  .header-seal-menu .seal-kind-menu-options button > i {
    grid-column: 1;
    grid-row: 1;
    width: 50px;
    height: 50px;
  }

  .header-seal-menu .seal-kind-menu-options button > span {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: end;
  }

  .header-seal-menu .seal-kind-menu-options button > em {
    grid-column: 2;
    grid-row: 1;
    padding-top: 8px;
  }

  .header-seal-menu .seal-kind-menu-options button b {
    font-size: 25px;
  }

  .header-seal-menu .seal-kind-menu-options button small {
    font-size: 15px;
  }
}
/* Exchange and Genesis viewport architecture */
.exchange-terminal {
  box-sizing: border-box;
  padding-top: 24px;
}

.exchange-context-header {
  top: 98px;
  box-sizing: border-box;
  min-height: 84px;
  margin-bottom: 28px;
  grid-template-columns: minmax(154px, 184px) minmax(0, 1fr) minmax(230px, 320px);
  gap: 12px;
  overflow: hidden;
}

.exchange-context-home,
.exchange-context-back {
  min-width: 0;
  min-height: 64px;
  padding: 8px 12px 8px 8px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
  color: #f2f0e8;
  font: inherit;
  text-align: left;
}

.exchange-context-back { cursor: pointer; }
.exchange-context-home > i,
.exchange-context-back > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(89, 220, 232, .08);
  color: var(--cyan);
  font-size: 19px;
  font-style: normal;
}
.exchange-context-home small,
.exchange-context-home b,
.exchange-context-back small,
.exchange-context-back b {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.exchange-context-home small,
.exchange-context-back small { color: #7f8c88; font-size: 11px; }
.exchange-context-home b,
.exchange-context-back b { margin-top: 3px; font-size: 13px; }

.exchange-context-breadcrumbs {
  grid-template-columns: minmax(88px, 1fr) 10px minmax(88px, 1fr) 10px minmax(88px, 1fr);
}
.exchange-context-breadcrumbs button { min-height: 54px; padding-inline: 10px; }
.exchange-context-summary { min-height: 64px; }
.exchange-context-divider { font-size: 0; }
.exchange-context-divider::before { content: "›"; font-size: 18px; }

.market-detail-header {
  padding: clamp(18px, 2vw, 30px) 0 clamp(28px, 3vw, 42px);
}
.market-detail-header h1 { margin-top: 14px; }
.exchange-surface-detail > .exchange-context-header,
.exchange-surface-swap > .exchange-context-header { margin-bottom: clamp(16px, 2vw, 26px); }

.exchange-surface-swap {
  min-height: calc(100dvh - 86px);
}
.exchange-surface-swap .exchange-flow-card,
.exchange-surface-swap .exchange-authorize {
  margin-top: clamp(14px, 2vw, 28px);
}
.exchange-executing,
.exchange-complete {
  min-height: calc(100dvh - 86px - 112px - 210px);
  padding: clamp(18px, 3vw, 38px) 0 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.exchange-complete-secondary {
  margin-top: 0;
  display: flex;
  justify-content: center;
}
.exchange-complete-secondary button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #dce3e0;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.exchange-page-transition {
  z-index: 116;
  inset: 86px 0 0;
  padding: clamp(24px, 4vw, 56px);
  background: rgba(4, 10, 13, .96);
}
.exchange-transition-card {
  min-height: min(620px, calc(100dvh - 150px));
}

.view-genesis {
  min-height: 100dvh;
  padding: 0 !important;
}
.view-genesis > .app-header,
.view-genesis > .app-footer { display: none; }

.genesis-screen.genesis-slider-screen {
  width: 100%;
  min-height: 100dvh;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #07100f;
  color: var(--paper);
}

.genesis-slider-workspace {
  height: 100dvh;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(41, 73, 217, .14), transparent 30%),
    linear-gradient(145deg, #0b1519, #07100f 72%);
}

.genesis-slider-header {
  min-height: 92px;
  padding: 18px clamp(24px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.genesis-slider-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}
.genesis-slider-identity .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}
.genesis-slider-identity span { display: grid; gap: 4px; }
.genesis-slider-identity b { font-size: 14px; letter-spacing: .16em; }
.genesis-slider-identity small { color: var(--cyan); font-size: 10px; letter-spacing: .18em; }
.genesis-slider-header > button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  color: white;
  font: 300 28px/1 var(--sans);
  cursor: pointer;
}

.genesis-slider-progress {
  flex: 0 0 auto;
  height: 30px;
  margin: 16px clamp(34px, 4.5vw, 72px) clamp(28px, 3.5vw, 54px);
  padding: 7px 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  gap: 6px;
}
.genesis-slider-progress button {
  height: 16px;
  padding: 0;
  display: grid;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.genesis-slider-progress button:disabled { cursor: default; }
.genesis-slider-progress button i {
  width: 100%;
  height: 3px;
  display: block;
  border-radius: 99px;
  background: rgba(255, 255, 255, .09);
  transition: height .2s ease, background .2s ease, box-shadow .2s ease;
}
.genesis-slider-progress button.complete i { background: var(--cyan); }
.genesis-slider-progress button.active i {
  height: 5px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199, 255, 49, .32);
}

.genesis-slider-scroll {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
}
.genesis-stage.genesis-slider-stage {
  box-sizing: border-box;
  width: min(820px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(34px, 4.2vw, 66px) clamp(28px, 4.5vw, 72px) 80px;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: genesisSlideIn .42s cubic-bezier(.2, .8, .2, 1) both;
}
.genesis-slider-stage .genesis-fields { gap: 21px; }
.genesis-slider-stage .genesis-fields h2 {
  max-width: 720px;
  font-size: clamp(48px, 4.5vw, 76px);
}
.genesis-slider-stage .genesis-fields > p {
  max-width: 700px;
  font-size: clamp(16px, 1.15vw, 19px);
}
.genesis-slider-stage .genesis-fields textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 18px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  color: white;
  font: inherit;
  font-size: 17px;
  line-height: 1.5;
}
.genesis-slider-stage .genesis-fields input[type="range"] {
  width: 100%;
  accent-color: var(--cyan);
}

.genesis-controls.genesis-slider-controls {
  position: relative;
  z-index: 8;
  bottom: auto;
  min-height: 92px;
  margin: 0;
  padding: 10px clamp(18px, 2.2vw, 34px);
  grid-template-columns: minmax(90px, 132px) minmax(120px, 1fr) minmax(220px, 280px);
  gap: 10px;
  border-radius: 0;
  background: rgba(5, 13, 15, .96);
  box-shadow: 0 -24px 64px rgba(0, 0, 0, .26);
  backdrop-filter: blur(24px);
}
.genesis-slider-controls .quiet,
.genesis-slider-controls .primary {
  min-height: 66px;
  border-radius: 16px;
}
.genesis-slider-controls .primary span { min-width: 0; }
.genesis-slider-controls .primary span,
.genesis-slider-controls .primary i { display: block; }
.genesis-slider-controls .primary i { font-style: normal; }

.genesis-slider-story {
  position: relative;
  height: 100dvh;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 14%, rgba(89, 220, 232, .24), transparent 27%),
    radial-gradient(circle at 12% 74%, rgba(41, 73, 217, .42), transparent 36%),
    linear-gradient(145deg, #102b2d, #07101a 52%, #080d18);
}
.genesis-slider-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(41, 73, 217, .23), transparent 34%),
    linear-gradient(0deg, rgba(4, 11, 15, .95), transparent 66%);
}
.genesis-story-core {
  width: min(650px, 100%);
  margin: auto clamp(34px, 4.5vw, 72px);
  display: grid;
  justify-items: start;
  animation: genesisStoryIn .46s cubic-bezier(.2, .8, .2, 1) both;
}
.genesis-story-core .eyebrow { color: var(--lime); }
.genesis-story-core > strong {
  display: flex;
  align-items: baseline;
  color: white;
  font: 400 clamp(32px, 3vw, 48px)/1 var(--serif);
}
.genesis-story-core > strong em {
  margin-left: 6px;
  color: rgba(255, 255, 255, .45);
  font: normal 16px/1 var(--sans);
}
.genesis-story-core h2 {
  margin: 16px 0 0;
  color: white;
  font-size: clamp(64px, 7vw, 118px);
  font-weight: 560;
  line-height: .84;
  letter-spacing: -.075em;
}
.genesis-story-core > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #c5d2cf;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.5;
}
.genesis-story-status {
  margin: 0 clamp(34px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  gap: 8px;
}
.genesis-story-status > div {
  min-width: 0;
  padding: 14px 15px;
  border-radius: 14px;
  background: rgba(7, 16, 15, .52);
  backdrop-filter: blur(16px);
}
.genesis-story-status dt {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.genesis-story-status dd {
  margin: 7px 0 0;
  overflow: hidden;
  color: white;
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.genesis-story-boundary {
  margin: 14px clamp(34px, 4.5vw, 72px) clamp(34px, 4.5vw, 72px);
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  line-height: 1.5;
}

@keyframes genesisSlideIn {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes genesisStoryIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .exchange-context-header {
    grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  }
  .exchange-context-summary { display: none; }
  .genesis-slider-stage .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .exchange-terminal { padding-top: 14px; }
  .exchange-context-header {
    top: calc(76px + env(safe-area-inset-top));
    min-height: 72px;
    margin-bottom: 18px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
    border-radius: 17px;
  }
  .exchange-context-home,
  .exchange-context-back {
    min-height: 56px;
    padding: 5px;
    grid-template-columns: 42px;
  }
  .exchange-context-home > i,
  .exchange-context-back > i {
    width: 42px;
    height: 42px;
  }
  .exchange-context-home > span,
  .exchange-context-back > span { display: none; }
  .exchange-context-breadcrumbs {
    grid-template-columns: 1fr 7px 1fr 7px 1fr;
    gap: 0;
  }
  .exchange-context-breadcrumbs button {
    min-height: 54px;
    padding: 0 6px;
    border-radius: 11px;
    font-size: 12px;
  }
  .exchange-context-breadcrumbs button > i { display: none; }
  .market-detail-header {
    padding: 16px 0 28px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .market-detail-header h1 { font-size: clamp(54px, 14vw, 76px); }
  .exchange-executing,
  .exchange-complete {
    min-height: calc(100svh - 240px);
    padding: 22px 0 calc(180px + env(safe-area-inset-bottom));
  }
  .exchange-page-transition {
    inset: calc(68px + env(safe-area-inset-top)) 0 0;
    padding: 14px;
  }

  .genesis-screen.genesis-slider-screen {
    display: grid;
    grid-template-columns: 1fr;
  }
  .genesis-slider-story {
    grid-row: 1;
    height: auto;
    min-height: 380px;
    padding: 0;
  }
  .genesis-story-core {
    margin: 44px 24px 34px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
  .genesis-story-core .eyebrow {
    grid-column: 1;
    margin-bottom: 22px;
  }
  .genesis-story-core > strong { grid-column: 1; }
  .genesis-story-core h2 {
    grid-column: 1;
    margin-top: 8px;
    font-size: clamp(50px, 13vw, 72px);
  }
  .genesis-story-core > p {
    grid-column: 1;
    margin-top: 15px;
    font-size: 16px;
  }
  .genesis-story-status { display: none; }
  .genesis-story-boundary { margin: auto 24px 0; }
  .genesis-slider-progress { height: 30px; margin: 14px 24px 24px; padding: 7px 0; }
  .genesis-slider-workspace {
    grid-row: 2;
    height: auto;
    min-height: 100dvh;
  }
  .genesis-slider-scroll { overflow: visible; }
  .genesis-stage.genesis-slider-stage {
    padding: 38px 24px 64px;
  }
  .genesis-slider-stage .genesis-fields h2 {
    font-size: clamp(44px, 11.5vw, 62px);
  }
  .genesis-controls.genesis-slider-controls {
    position: sticky;
    bottom: 0;
    grid-template-columns: 64px minmax(90px, 1fr) minmax(145px, 1.3fr);
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .genesis-slider-controls .quiet { font-size: 0; }
  .genesis-slider-controls .quiet::before { content: "←"; font-size: 20px; }
  .genesis-slider-controls .primary { padding-inline: 14px; font-size: 13px; }
  .genesis-slider-controls .primary i { display: none; }
}

@media (max-width: 540px) {
  .exchange-context-breadcrumbs button span { font-size: 11px; }
  .exchange-context-divider { display: none; }
  .exchange-context-breadcrumbs { grid-template-columns: repeat(3, 1fr); }
  .exchange-complete h2,
  .exchange-executing h2 { font-size: 54px; }
  .genesis-slider-header { min-height: 78px; padding: 12px 18px; }
  .genesis-slider-identity .brand-mark { width: 48px; height: 48px; flex-basis: 48px; }
  .genesis-slider-header > button { width: 46px; height: 46px; }
  .genesis-slider-progress { margin: 12px 18px 18px; padding-inline: 0; }
  .genesis-slider-story { min-height: 340px; }
  .genesis-story-core { grid-template-columns: minmax(0, 1fr); gap: 14px; margin: 34px 18px 24px; }
  .genesis-story-core > p { display: none; }
  .genesis-stage.genesis-slider-stage { padding: 32px 18px 54px; }
  .genesis-slider-stage .choice-pair,
  .genesis-slider-stage .genesis-document-types,
  .genesis-slider-stage .genesis-cycle-tabs,
  .genesis-slider-stage .genesis-eva-grid,
  .genesis-slider-stage .genesis-fingerprint,
  .genesis-slider-stage .genesis-d0-summary,
  .genesis-slider-stage .genesis-fee-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .genesis-slider-stage,
  .genesis-story-core { animation: none; }
}


html { background: var(--obsidian); }

/* Home header: transparent over the opening scene, then the shared dark control plane. */
.view-home.app-shell:not(.app-loading) {
  padding-top: 0;
}

.app-header,
.home-header {
  transition:
    transform .3s cubic-bezier(.2, .8, .2, 1),
    background-color .34s cubic-bezier(.2, .8, .2, 1),
    border-color .34s ease,
    box-shadow .34s ease,
    backdrop-filter .34s ease;
}

.app-header.is-visible { transform: translate3d(0, 0, 0); }
.app-header.is-hidden { transform: translate3d(0, calc(-100% - 2px), 0); box-shadow: none; }

.home-header.is-top {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

.home-header.is-scrolled {
  border-bottom-color: rgba(225, 239, 233, .08);
  background: rgba(7, 16, 15, .94);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
  backdrop-filter: blur(24px) saturate(125%);
}

/* The symbol follows its surface: black on the open Home canvas, white on dark controls. */
.app-header .brand-mark::before,
.home-header .brand-mark::before,
.home-header.is-top .brand-mark::before,
.home-header.is-scrolled .brand-mark::before {
  background: #fff;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
  transition: background .34s cubic-bezier(.2, .8, .2, 1), filter .34s ease;
}

.home-header.is-top .brand-mark::before {
  background: var(--ink);
  filter: drop-shadow(0 8px 16px rgba(7, 16, 15, .18));
}

.home-header.is-top .brand-lockup b { color: var(--ink) !important; }
.home-header.is-top .brand-lockup small { color: var(--cobalt); }
.home-header.is-scrolled .brand-lockup b { color: #fff !important; }
.home-header.is-scrolled .brand-lockup small { color: var(--cyan); }

.home-header.is-top nav .seal-menu-trigger,
.home-header.is-top nav .exchange-nav,
.home-header.is-top nav .verify-nav,
.home-header.is-top nav .my-seals-nav { color: rgba(7, 16, 15, .68); }

.home-header.is-scrolled nav .seal-menu-trigger,
.home-header.is-scrolled nav .exchange-nav,
.home-header.is-scrolled nav .verify-nav,
.home-header.is-scrolled nav .my-seals-nav { color: rgba(255, 255, 255, .74); }

.home-header.is-top nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav):hover { color: var(--ink); }
.home-header.is-scrolled nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav):hover { color: #fff; }

.home-header.is-top nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav).active {
  color: var(--cobalt);
  background: rgba(3, 140, 140, .07);
}

.home-header.is-scrolled nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav).active {
  color: var(--cyan);
  background: rgba(89, 220, 232, .08);
}

.home-header.is-top .seal-trigger-mark { color: var(--cobalt); }
.home-header.is-scrolled .seal-trigger-mark { color: var(--cyan); }

.home-header.is-top .surface-state span { color: rgba(7, 16, 15, .52); }
.home-header.is-scrolled .surface-state span { color: rgba(255, 255, 255, .52); }
.home-header.is-top .surface-state b { color: var(--ink); }
.home-header.is-scrolled .surface-state b { color: #fff; }
.home-header.is-top .surface-state > i { color: var(--cobalt); background: rgba(3, 140, 140, .07); }
.home-header.is-scrolled .surface-state > i { color: var(--cyan); background: rgba(89, 220, 232, .08); }

.home-header.is-top .wallet-connect {
  color: var(--ink);
  background: rgba(7, 16, 15, .055);
}

.home-header.is-scrolled .wallet-connect {
  color: #fff;
  background: rgba(255, 255, 255, .075);
}

.home-header.is-top .wallet-connect.connected,
.home-header.is-scrolled .wallet-connect.connected {
  color: var(--lime);
  background: rgba(199, 255, 49, .08);
}

.view-home .landing-hero {
  padding-top: clamp(142px, 10vw, 184px);
}

@media (max-width: 700px) {
  .view-home.app-shell:not(.app-loading) { padding-top: 0; }
  .view-home .landing-hero { padding-top: calc(112px + env(safe-area-inset-top)); }
  .home-header.is-top,
  .home-header.is-scrolled { background-clip: padding-box; }
  .home-header.is-top nav.core-navigation,
  .home-header.is-scrolled nav.core-navigation {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-header,
  .home-header,
  .brand-mark::before { transition: none; }
}

/* The Home control plane now begins in the same dark state as every product surface. */
.home-header.is-top,
.home-header.is-scrolled {
  border-bottom-color: rgba(225, 239, 233, .08);
  background: rgba(7, 16, 15, .96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
  backdrop-filter: blur(24px) saturate(125%);
}

.home-header.is-top .brand-mark::before,
.home-header.is-scrolled .brand-mark::before { background: #fff; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28)); }
.home-header.is-top .brand-lockup b,
.home-header.is-scrolled .brand-lockup b { color: #fff !important; }
.home-header.is-top .brand-lockup small,
.home-header.is-scrolled .brand-lockup small { color: var(--cyan); }
.home-header.is-top nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav),
.home-header.is-scrolled nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav) { color: rgba(255, 255, 255, .74); }
.home-header.is-top nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav):hover,
.home-header.is-scrolled nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav):hover { color: #fff; }
.home-header.is-top nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav).active,
.home-header.is-scrolled nav :is(.seal-menu-trigger, .exchange-nav, .verify-nav, .my-seals-nav).active { color: var(--cyan); background: rgba(89, 220, 232, .08); }
.home-header.is-top .seal-trigger-mark,
.home-header.is-scrolled .seal-trigger-mark { color: var(--cyan); }
.home-header.is-top .surface-state span,
.home-header.is-scrolled .surface-state span { color: rgba(255, 255, 255, .52); }
.home-header.is-top .surface-state b,
.home-header.is-scrolled .surface-state b { color: #fff; }
.home-header.is-top .surface-state > i,
.home-header.is-scrolled .surface-state > i { color: var(--cyan); background: rgba(89, 220, 232, .08); }
.home-header.is-top .wallet-connect,
.home-header.is-scrolled .wallet-connect { color: #fff; background: rgba(255, 255, 255, .075); }

/* Contextual seal navigation and matching page identity. */
.seal-trigger-mark.kind-token,
.seal-kind-page-icon.kind-token { color: #59dce8; }
.seal-trigger-mark.kind-work,
.seal-kind-page-icon.kind-work { color: #a9c7ff; }
.seal-trigger-mark.kind-cause,
.seal-kind-page-icon.kind-cause { color: #ff8f88; }
.seal-trigger-mark.kind-community,
.seal-kind-page-icon.kind-community { color: #c7ff31; }

/* Header navigation icons stay neutral. Category colour begins on the destination page. */
.app-header .seal-trigger-mark,
.home-header.is-top .seal-trigger-mark,
.home-header.is-scrolled .seal-trigger-mark { color: rgba(235, 241, 238, .76); }
.header-seal-menu .seal-kind-menu-options button > i,
.header-seal-menu .seal-kind-menu-options button.selected > i { color: rgba(242, 245, 243, .88); background: rgba(7, 20, 22, .58); }

.seal-page-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 2vw, 30px);
}

.seal-kind-page-icon {
  width: clamp(62px, 5.5vw, 86px);
  height: clamp(62px, 5.5vw, 86px);
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 22px 60px rgba(0, 0, 0, .18);
  font-size: clamp(28px, 2.7vw, 42px);
  font-style: normal;
}
.seal-kind-page-icon svg { width: 52%; height: 52%; }

.seal-page-title > span:last-child { min-width: 0; }
.seal-page-title h1 { margin-top: 14px; }
@media (min-width: 701px) {
  .seal-page-title h1 { white-space: nowrap; }
}

/* The only journey control remains pinned to the viewport while content reads beneath it. */
.seal-action-dock {
  position: fixed !important;
  top: auto !important;
  bottom: max(24px, env(safe-area-inset-bottom)) !important;
}

/* SPL market intelligence: one exchange surface, one protocol verdict. */
.market-intelligence {
  margin-top: clamp(20px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, .58fr);
  gap: clamp(16px, 1.8vw, 28px);
  color: #f6f3eb;
}

.market-chart-panel,
.market-coherence-card {
  min-height: 610px;
  border-radius: 30px;
  background: linear-gradient(145deg, #101c24, #07100f 76%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .24);
}

.market-chart-panel { padding: clamp(28px, 3.2vw, 52px); overflow: hidden; }
.market-chart-panel > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.market-chart-panel h2 { margin: 14px 0 0; font-size: clamp(38px, 4.4vw, 70px); font-weight: 520; line-height: .94; letter-spacing: -.055em; }
.market-chart-quote { display: grid; justify-items: end; text-align: right; }
.market-chart-quote small { color: #7e8d89; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.market-chart-quote b { margin-top: 8px; font-size: clamp(24px, 2.1vw, 34px); }
.market-chart-quote em { margin-top: 4px; font-style: normal; font-weight: 650; }
.market-chart-quote em.up { color: #59dce8; }
.market-chart-quote em.down { color: #ff8a42; }
.market-chart-meta { margin-top: 42px; display: grid; grid-template-columns: repeat(4, minmax(90px, 1fr)); gap: 8px; }
.market-chart-meta span { padding: 14px 16px; border-radius: 14px; background: rgba(255, 255, 255, .045); }
.market-chart-meta small { display: block; color: #71807c; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.market-chart-meta b { display: block; margin-top: 7px; font-size: 16px; }
.market-candle-chart { height: 300px; margin-top: 18px; }
.market-candle-chart svg { width: 100%; height: 100%; overflow: visible; }
.market-candle-chart .chart-grid { stroke: rgba(255, 255, 255, .075); stroke-width: 1; }
.market-candle-chart g line { stroke: currentColor; stroke-width: 2; }
.market-candle-chart g rect { fill: currentColor; }
.market-candle-chart .candle-rise { color: #59dce8; }
.market-candle-chart .candle-fall { color: #ff8750; }
.market-candle-chart .volume { opacity: .16; }
.market-chart-panel > footer { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 28px; color: #788681; font-size: 12px; }
.market-chart-panel > footer span { color: #aeb8b4; }
.market-chart-panel > footer small { justify-self: end; max-width: 420px; text-align: right; line-height: 1.45; }

.market-coherence-card { position: relative; padding: clamp(28px, 3vw, 48px); display: flex; flex-direction: column; overflow: hidden; }
.market-coherence-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--tier-color); }
.market-coherence-card.tier-seed { --tier-color: #72da82; --tier-glow: rgba(114, 218, 130, .18); }
.market-coherence-card.tier-bloom { --tier-color: #5a8cff; --tier-glow: rgba(90, 140, 255, .19); }
.market-coherence-card.tier-root { --tier-color: #a970ff; --tier-glow: rgba(169, 112, 255, .2); }
.market-coherence-card > header { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.market-coherence-card > header i { padding: 9px 12px; border-radius: 999px; color: var(--tier-color); background: var(--tier-glow); font-size: 12px; font-style: normal; font-weight: 750; letter-spacing: .12em; }
.coherence-score { margin-top: 72px; display: flex; align-items: flex-end; gap: 8px; }
.coherence-score strong { font-family: var(--serif); font-size: clamp(72px, 7.2vw, 118px); font-weight: 400; line-height: .74; letter-spacing: -.06em; }
.coherence-score span { color: var(--tier-color); font-size: 22px; }
.coherence-scale { height: 7px; margin-top: 44px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .08); }
.coherence-scale i { display: block; height: 100%; border-radius: inherit; background: var(--tier-color); box-shadow: 0 0 28px var(--tier-glow); }
.market-coherence-card > p { margin: 28px 0; color: #d5dbd7; font-size: 18px; line-height: 1.5; }
.market-coherence-card dl { margin: auto 0 24px; display: grid; gap: 2px; }
.market-coherence-card dl div { padding: 11px 0; display: flex; justify-content: space-between; border-bottom: 0; }
.market-coherence-card dt { color: #e9ece9; font-size: 12px; font-weight: 750; letter-spacing: .1em; }
.market-coherence-card dd { margin: 0; color: #81908b; font-size: 12px; }
.market-coherence-card > small { color: #778581; font-size: 12px; line-height: 1.55; }

/* CTP/IP Seal Scan */
.seal-scan-status {
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}
.seal-scan-status > span { min-height: 104px; padding: 22px; display: grid; align-content: center; border-right: 1px solid rgba(255, 255, 255, .06); }
.seal-scan-status > span:last-child { border-right: 0; }
.seal-scan-status small { color: #75837e; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.seal-scan-status b { margin-top: 9px; color: #e8ece9; font-size: 15px; }
.seal-scan-status .scan-live { width: 8px; height: 8px; margin-bottom: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px rgba(199, 255, 49, .6); }
.verify-console-head { margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.verify-console-head span { display: grid; gap: 5px; }
.verify-console-head small { color: var(--cyan); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.verify-console-head b { font-size: 22px; }
.verify-console-head em { padding: 8px 10px; border-radius: 999px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .12em; }
.verify-field > div { grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; }
.verify-input-icon { color: var(--cyan); justify-self: center; }
.verify-result .scan-hash { max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-geist-mono); }
.verify-principles > strong { display: block; margin-top: 26px; color: #eef2ef; font-size: 17px; }
.scan-rail-map { margin-top: 24px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 8px; }
.scan-rail-map span { display: grid; justify-items: center; gap: 7px; }
.scan-rail-map span i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(89, 220, 232, .28); color: var(--cyan); font-size: 11px; font-style: normal; }
.scan-rail-map span b { color: #aeb9b4; font-size: 10px; font-weight: 600; }
.scan-rail-map > em { height: 1px; background: linear-gradient(90deg, rgba(89, 220, 232, .55), rgba(89, 220, 232, .08)); }

@media (max-width: 1040px) {
  .market-intelligence { grid-template-columns: 1fr; }
  .market-coherence-card { min-height: 500px; }
  .seal-scan-status { grid-template-columns: 1fr 1fr; }
  .seal-scan-status > span:nth-child(2) { border-right: 0; }
  .seal-scan-status > span:nth-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 700px) {
  .market-chart-panel,
  .market-coherence-card { min-height: auto; border-radius: 24px; }
  .market-chart-panel > header { display: grid; }
  .market-chart-quote { justify-items: start; text-align: left; }
  .market-chart-meta { grid-template-columns: 1fr 1fr; }
  .market-candle-chart { height: 250px; overflow-x: auto; }
  .market-candle-chart svg { min-width: 720px; }
  .market-chart-panel > footer { grid-template-columns: auto auto; }
  .market-chart-panel > footer small { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .coherence-score { margin-top: 54px; }
  .seal-page-title { grid-template-columns: 1fr; gap: 14px; }
  .seal-kind-page-icon { width: 58px; height: 58px; border-radius: 17px; font-size: 28px; }
  .seal-action-dock { bottom: max(8px, env(safe-area-inset-bottom)) !important; }
  .seal-scan-status { grid-template-columns: 1fr; border-radius: 18px; }
  .seal-scan-status > span { min-height: 82px; padding: 17px; border-right: 0; border-bottom: 0; }
  .seal-scan-status > span:last-child { border-bottom: 0; }
  .verify-field > div { grid-template-columns: 24px 1fr; }
  .verify-field button { grid-column: 1 / -1; }
}

/* Sovereign profile: one calm identity surface instead of a settings dashboard. */
.account-screen {
  padding-top: clamp(54px, 5vw, 86px);
  padding-bottom: clamp(90px, 8vw, 140px);
}

.account-profile-hero {
  position: relative;
  min-height: 430px;
  padding: clamp(34px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, .42fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 30px clamp(24px, 3vw, 52px);
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 84, 232, .34), transparent 34%),
    radial-gradient(circle at 8% 86%, rgba(89, 220, 232, .16), transparent 36%),
    linear-gradient(145deg, #102529, #07100f 55%, #090f1b);
  box-shadow: 0 44px 120px rgba(0, 0, 0, .28);
}

.account-profile-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -44%;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 220, 232, .08), transparent 67%);
  pointer-events: none;
}

.account-profile-avatar {
  position: relative;
  width: clamp(112px, 10vw, 158px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(89, 220, 232, .13), rgba(49, 84, 232, .2));
  color: white;
  font: 500 clamp(36px, 4vw, 58px)/1 var(--sans);
  letter-spacing: -.06em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 26px 70px rgba(0, 0, 0, .28);
}

.account-profile-avatar > i {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 28px;
  height: 28px;
  border: 7px solid #0a1517;
  border-radius: 50%;
  background: var(--amber);
}
.account-profile-avatar > i.live { background: var(--lime); }

.account-profile-copy { min-width: 0; }
.account-profile-copy .eyebrow { color: var(--cyan); }
.account-profile-copy h1 {
  margin: 15px 0 12px;
  color: white;
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 520;
  line-height: .86;
  letter-spacing: -.075em;
}
.account-profile-copy p {
  margin: 0;
  color: #a7b5b0;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.5;
}

.account-profile-authority {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 23px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
}
.account-profile-authority > small { color: #84928e; letter-spacing: .14em; }
.account-profile-authority > strong { margin: 12px 0 20px; color: white; font-size: 20px; line-height: 1.25; }

.account-profile-metrics {
  grid-column: 1 / -1;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.account-profile-metrics > div {
  min-width: 0;
  padding: 17px 19px;
  border-radius: 16px;
  background: rgba(5, 13, 15, .58);
  backdrop-filter: blur(18px);
}
.account-profile-metrics dt { color: #768580; font-size: 12px; }
.account-profile-metrics dd { margin: 8px 0 0; overflow: hidden; color: white; font-size: 21px; font-weight: 620; text-overflow: ellipsis; text-transform: capitalize; white-space: nowrap; }

.account-profile-layout {
  margin-top: clamp(22px, 2.4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(360px, .62fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}
.account-profile-main,
.account-profile-sidebar { display: grid; gap: clamp(18px, 2vw, 28px); }
.account-profile-sidebar { position: sticky; top: 102px; }

.account-profile-section,
.account-side-card {
  min-width: 0;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(18, 31, 29, .98), rgba(8, 15, 14, .99));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}
.account-profile-section { padding: clamp(30px, 3.5vw, 54px); }
.account-side-card { padding: clamp(24px, 2.4vw, 34px); }

.account-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.account-section-heading small,
.account-card-label > span { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.account-section-heading h2 { margin: 12px 0 0; color: white; font-size: clamp(38px, 4vw, 62px); font-weight: 510; line-height: .93; letter-spacing: -.06em; }
.account-section-heading > em,
.account-card-label > em { color: #84918d; font-size: 12px; font-style: normal; }

.account-origin-passport {
  margin-top: 34px;
  padding: clamp(22px, 2.5vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 85% 18%, rgba(49, 84, 232, .2), transparent 38%),
    #071211;
}
.account-origin-passport > div,
.account-origin-passport > span { min-width: 0; display: grid; gap: 8px; }
.account-origin-passport > span { justify-items: end; text-align: right; }
.account-origin-passport small { color: var(--cyan); font-size: 11px; letter-spacing: .14em; }
.account-origin-passport strong { color: white; font-size: clamp(28px, 3.2vw, 48px); letter-spacing: -.04em; }
.account-origin-passport code,
.account-origin-passport em { overflow: hidden; color: #788984; font-size: 13px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.account-origin-passport b { color: white; font-size: 17px; }

.account-fact-columns {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.account-fact-columns > section {
  padding: 23px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}
.account-fact-columns > section > small { color: var(--cyan); font-size: 11px; letter-spacing: .14em; }
.account-fact-columns dl { margin: 16px 0 0; }
.account-fact-columns dl > div { min-height: 48px; padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.account-fact-columns dt { color: #7f8d88; font-size: 13px; }
.account-fact-columns dd { max-width: 62%; margin: 0; overflow-wrap: anywhere; color: #e3e9e6; font-size: 14px; text-align: right; }

.account-genesis-details { margin-top: 18px; }
.account-genesis-details > summary {
  min-height: 82px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  color: white;
  cursor: pointer;
  list-style: none;
}
.account-genesis-details > summary::-webkit-details-marker { display: none; }
.account-genesis-details > summary span { display: grid; gap: 5px; }
.account-genesis-details > summary b { font-size: 16px; }
.account-genesis-details > summary small { color: #7f8d88; font-size: 13px; }
.account-genesis-details > summary i { color: var(--cyan); font-size: 21px; font-style: normal; }
.account-genesis-details[open] > summary { margin-bottom: 14px; }
.account-genesis-details .genesis-origin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.account-genesis-details .genesis-origin-section { background: rgba(255, 255, 255, .035); }
.account-genesis-details .genesis-origin-section :is(h3, dd) { color: #e5ebe8; }
.account-genesis-details .genesis-origin-section :is(dt, p) { color: #7f8d88; }

.account-surfaces-card > p { max-width: 780px; margin: 25px 0 0; color: #899691; font-size: 15px; line-height: 1.6; }
.account-surfaces-card .surface-grid { margin-top: 28px; }

.account-card-label { min-height: 28px; margin-bottom: 23px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.account-wallet-state { min-height: 94px; padding: 17px; display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: center; gap: 14px; border-radius: 17px; background: rgba(255, 255, 255, .04); }
.account-wallet-state > i { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: rgba(89, 220, 232, .08); color: var(--cyan); font-size: 22px; font-style: normal; }
.account-wallet-state b,
.account-wallet-state small { display: block; }
.account-wallet-state b { color: white; font-size: 16px; }
.account-wallet-state small { margin-top: 5px; color: #7e8c87; font-size: 13px; line-height: 1.45; }
.account-wallet-card > button {
  width: 100%;
  min-height: 62px;
  margin-top: 12px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(115deg, #3154e8, #5875ef);
  color: white;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.account-wallet-card > button.connected { background: rgba(255, 255, 255, .07); color: #c7d1cd; }
.account-wallet-card > button i { font-size: 19px; font-style: normal; }

.account-profile-sidebar .settings-card > button { min-height: 78px; margin-bottom: 9px; padding: 14px; border-radius: 16px; }
.account-profile-sidebar .settings-card > button > i { width: 46px; height: 46px; }
.account-profile-sidebar .settings-card > button b { color: white; font-size: 15px; }
.account-profile-sidebar .settings-card > button small { font-size: 12px; }
.account-profile-sidebar .settings-card > label { color: #94a19c; font-size: 13px; letter-spacing: 0; text-transform: none; }
.account-profile-sidebar .settings-card select { min-height: 58px; border-radius: 14px; font-size: 15px; }
.account-profile-sidebar .custody-path { padding: 17px; border-radius: 15px; }
.account-profile-sidebar .custody-path small { font-size: 11px; }
.account-profile-sidebar .custody-path code { font-size: 12px; }

.account-profile-sidebar .authority-list { gap: 8px; }
.account-profile-sidebar .authority-list > span { min-height: 67px; padding: 14px; border-radius: 14px; }
.account-profile-sidebar .authority-list b { color: white; font-size: 14px; }
.account-profile-sidebar .authority-list small { font-size: 11px; }
.account-profile-sidebar .core-boundary { font-size: 12px; }
.account-profile-sidebar .core-card > button { min-height: 52px; padding: 0 15px; border-radius: 13px; color: #bfc9c5; font-size: 13px; }

.account-economics > strong { display: block; color: var(--amber); font: 400 72px/1 var(--serif); }
.account-economics > strong small { font-size: 26px; }
.account-economics > p,
.account-economics details p { color: #85928d; font-size: 13px; line-height: 1.6; }
.account-economics details { margin-top: 18px; padding: 15px; border-radius: 14px; background: rgba(255, 255, 255, .035); }
.account-economics summary { color: #dbe3df; font-size: 13px; cursor: pointer; }
.account-economics summary span { float: right; color: var(--cyan); }

/* Readable status feedback and wallet entry points across desktop and mobile. */
.toast {
  min-height: 64px;
  max-width: min(620px, calc(100% - 32px));
  padding: 17px 22px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  background: rgba(20, 32, 30, .98);
  color: #eef3f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .45);
  backdrop-filter: blur(20px);
}
.toast i { width: 31px; height: 31px; margin-right: 12px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 10px; background: rgba(199, 255, 49, .1); }
.wallet-connect { min-height: 48px; padding-inline: 13px 17px; font-size: 14px; }
.wallet-connect i { width: 31px; height: 31px; }

@media (max-width: 1160px) {
  .account-profile-hero { grid-template-columns: auto minmax(0, 1fr); }
  .account-profile-authority { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
  .account-profile-authority > strong { margin: 0; }
  .account-profile-layout { grid-template-columns: minmax(0, 1fr); }
  .account-profile-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .account-screen { padding-top: 28px; }
  .account-profile-hero { min-height: 0; padding: 26px 22px; grid-template-columns: 74px minmax(0, 1fr); gap: 22px 16px; border-radius: 25px; }
  .account-profile-avatar { width: 74px; border-radius: 20px; font-size: 28px; }
  .account-profile-avatar > i { width: 22px; height: 22px; border-width: 5px; }
  .account-profile-copy h1 { margin-top: 10px; font-size: clamp(42px, 13vw, 62px); }
  .account-profile-copy p { font-size: 14px; }
  .account-profile-authority { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .account-profile-authority > strong { font-size: 17px; }
  .account-profile-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-profile-metrics > div { padding: 14px; }
  .account-profile-metrics dd { font-size: 18px; }
  .account-profile-section,
  .account-side-card { border-radius: 22px; }
  .account-profile-section { padding: 24px 19px; }
  .account-side-card { padding: 22px 18px; }
  .account-section-heading { align-items: flex-start; }
  .account-section-heading h2 { font-size: 39px; }
  .account-origin-passport { display: grid; }
  .account-origin-passport > span { justify-items: start; text-align: left; }
  .account-fact-columns,
  .account-genesis-details .genesis-origin-grid,
  .account-profile-sidebar { grid-template-columns: minmax(0, 1fr); }
  .account-fact-columns dd { max-width: 58%; }
  .account-surfaces-card .surface-grid { grid-template-columns: 1fr; }
  .toast {
    bottom: calc(var(--mobile-dock-height) + env(safe-area-inset-bottom) + 18px);
    width: calc(100% - 28px);
    min-height: 68px;
    padding: 17px;
    justify-content: flex-start;
    text-align: left;
    font-size: 15px;
  }
  .wallet-connect { width: 46px; min-height: 46px; padding: 0; }
  .wallet-connect i { width: 30px; height: 30px; }
}

/* Authoritative final composition for Exchange and causal-cycle ordering. */
@media (min-width: 901px) {
  .exchange-terminal.exchange-surface-markets .market-row { grid-template-columns: 72px minmax(0, 1fr) 92px; gap: 14px; }
  .exchange-terminal.exchange-surface-markets .market-row-image { width: 72px; height: 72px; }
  .exchange-terminal.exchange-surface-markets .market-row-main > span:first-child { gap: 10px; }
  .exchange-terminal.exchange-surface-markets .market-row-main b { font-size: 16px; line-height: 1.15; }
  .exchange-terminal.exchange-surface-markets .market-row-main em { font-size: 11px; letter-spacing: .1em; }
  .exchange-terminal.exchange-surface-markets .market-row-main > small { margin-top: 6px; font-size: 12px; }
  .exchange-terminal.exchange-surface-markets .market-row-meta { margin-top: 10px; gap: 6px; overflow: visible; }
  .exchange-terminal.exchange-surface-markets .market-row-meta i { padding: 5px 7px; font-size: 10px; }
  .exchange-terminal.exchange-surface-markets .market-row-value b { font-size: 21px; }
  .exchange-terminal.exchange-surface-markets .market-row-value small { margin-top: 6px; font-size: 10px; line-height: 1.3; }
  .exchange-terminal.exchange-surface-markets .market-row-value > span { height: 6px; margin-top: 13px; }
}

.landing-cycles .cycle-principles:first-child { margin-top: 0; }
.landing-cycles .cycle-principles + .cycle-opening { margin-top: clamp(90px, 9vw, 140px); }

.view-exchange .exchange-marketing { width: 100%; margin: 0; padding: 0 0 140px; }
.view-exchange .exchange-marketing-hero { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); min-height: 0; margin: 0 auto; padding: clamp(86px, 7vw, 124px) 0 var(--space-section); display: block; background: var(--paper); color: var(--ink); box-shadow: 0 0 0 100vmax var(--paper); clip-path: inset(0 -100vmax); }
.view-exchange .exchange-marketing-copy h1 { max-width: 1380px; margin: 12px 0 clamp(46px, 5vw, 76px); font-size: clamp(82px, 10.4vw, 168px); line-height: .84; }
.view-exchange .exchange-marketing-copy h1 em { color: var(--ink); }
.view-exchange .exchange-marketing-copy > p,
.view-exchange .exchange-marketing-actions { width: min(690px, 100%); margin-left: auto; }
.view-exchange .exchange-marketing-copy > p { color: #4e5b56; font-size: var(--type-body-large); }
.view-exchange .exchange-marketing-actions { margin-top: 30px; }
.view-exchange .exchange-marketing-actions a { color: #4e5b56; }
.view-exchange .exchange-marketing-visual { min-height: clamp(520px, 42vw, 680px); margin-top: clamp(72px, 7vw, 112px); border-radius: 10px; box-shadow: 0 36px 100px rgba(7, 16, 15, .18); }
.view-exchange .exchange-marketing-ticket { border-radius: 10px; }
.view-exchange .exchange-story-banners { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); margin: 0 auto; padding: var(--space-section) 0 0; gap: 0; }
.view-exchange .exchange-story-banner,
.view-exchange .exchange-story-banner.reverse { min-height: 720px; grid-template-columns: minmax(420px, .72fr) minmax(0, 1.28fr); gap: clamp(54px, 7vw, 120px); overflow: visible; border-top: 0; border-radius: 0; background: transparent; box-shadow: none; }
.view-exchange .exchange-story-banner.reverse { grid-template-columns: minmax(0, 1.28fr) minmax(420px, .72fr); }
.view-exchange .exchange-story-banner.reverse .exchange-story-image { order: 2; }
.view-exchange .exchange-story-image { min-height: 360px; height: 360px; align-self: center; overflow: hidden; border-radius: 999px; }
.view-exchange .exchange-story-image::after,
.view-exchange .exchange-story-banner.reverse .exchange-story-image::after { background: linear-gradient(90deg, transparent 58%, rgba(7, 16, 15, .3)); }
.view-exchange .exchange-story-banner > div:last-child { padding: clamp(40px, 5vw, 76px) 0; }
.view-exchange .exchange-story-banner h2 { max-width: 760px; font-size: clamp(64px, 6.8vw, 108px); line-height: .88; }
.view-exchange .exchange-story-banner p { max-width: 690px; font-size: var(--type-body); }
.view-exchange .exchange-access-panel { width: min(1440px, calc(100% - (var(--viewport-gutter) * 2))); margin: var(--space-section) auto 0; border-radius: 10px; }

@media (max-width: 1080px) {
  .view-exchange .exchange-marketing-hero { width: calc(100% - 36px); }
  .view-exchange .exchange-story-banners,
  .view-exchange .exchange-access-panel { width: calc(100% - 36px); }
  .view-exchange .exchange-story-banner,
  .view-exchange .exchange-story-banner.reverse { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding: 76px 0; }
  .view-exchange .exchange-story-banner.reverse .exchange-story-image { order: 0; }
}

@media (max-width: 700px) {
  .view-exchange .exchange-marketing { width: 100%; padding: 0 0 100px; }
  .view-exchange .exchange-marketing-hero { width: calc(100% - 28px); padding: 52px 0 88px; }
  .view-exchange .exchange-marketing-copy h1 { font-size: clamp(58px, 17vw, 82px); }
  .view-exchange .exchange-marketing-visual { min-height: 460px; border-radius: 10px; }
  .view-exchange .exchange-marketing-ticket { border-radius: 10px; }
  .view-exchange .exchange-story-banners,
  .view-exchange .exchange-access-panel { width: calc(100% - 28px); }
  .view-exchange .exchange-story-banner { border-radius: 0; }
  .view-exchange .exchange-story-image { min-height: 260px; height: 260px; }
  .view-exchange .exchange-story-banner h2 { font-size: clamp(48px, 14vw, 66px); }
  .view-exchange .exchange-access-panel { border-radius: 10px; }
  .landing-cycles .cycle-principles + .cycle-opening { margin-top: 76px; }
}

/* FINAL CONTROL SYSTEM. This intentionally sits last in the cascade. */
.landing-hero h1,
.landing-hero h1 .hero-keyword { font-weight: 400 !important; }

.library-actions .button {
  min-width: 190px;
  min-height: 54px;
  padding-inline: 20px;
  justify-content: space-between;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 590;
  line-height: 1;
  white-space: nowrap;
}

.seal-action-dock,
.exchange-action-dock {
  position: fixed !important;
  z-index: 500 !important;
  inset: auto auto max(16px, env(safe-area-inset-bottom)) 50% !important;
  width: min(1180px, calc(100vw - 48px)) !important;
  margin: 0 !important;
  transform: translate3d(-50%, 0, 0) !important;
}

.seal-action-dock .dock-primary.ready-to-progress,
.exchange-action-dock .dock-primary.ready-to-progress {
  background: linear-gradient(112deg, #c7ff31, #a9ef32) !important;
  color: #07100f !important;
  box-shadow: 0 18px 54px rgba(199, 255, 49, .26), inset 0 0 0 1px rgba(255, 255, 255, .18) !important;
}

.seal-action-dock .dock-primary.needs-input,
.exchange-action-dock .dock-primary.needs-input {
  background: #172321 !important;
  color: rgba(238, 243, 240, .62) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05) !important;
}

.exchange-dock-context {
  width: 154px;
  flex: 0 0 154px;
  min-width: 0;
  padding: 0 10px 0 4px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}
.exchange-dock-context small { color: var(--cyan); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.exchange-dock-context b { overflow: hidden; color: #eef2ef; font-size: 12px; font-weight: 620; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 900px) {
  .library-actions .button { min-width: 0; }
  .exchange-dock-context { display: none; }
  .seal-action-dock,
  .exchange-action-dock {
    inset: auto max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)) !important;
    width: auto !important;
    transform: none !important;
  }
}

:is(
  .button,
  .landing-cta,
  .wallet-primary,
  .wallet-demo,
  .exchange-entry-card > button,
  .exchange-marketing-actions button,
  .exchange-access-panel > button,
  .exchange-intro-cta button,
  .verify-field button,
  .cycle-form button,
  .community-channels button,
  .exchange-complete-secondary button
) {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 590;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

:is(
  .button,
  .landing-cta,
  .wallet-primary,
  .wallet-demo,
  .exchange-entry-card > button,
  .exchange-marketing-actions button,
  .exchange-access-panel > button,
  .exchange-intro-cta button,
  .verify-field button,
  .cycle-form button,
  .community-channels button,
  .exchange-complete-secondary button
):focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
