:root {
  --bg: #f3f0e7;
  --fg: #171817;
  --muted: rgba(23, 24, 23, .58);
  --surface: #ebe7dc;
  --surface-strong: #dfdbcf;
  --border: rgba(23, 24, 23, .13);
  --accent: #b9d86d;
  --accent-2: #d7ef8b;
  --accent-ink: #1d250c;
  --dark: #171817;
  --cream: #f6f2e7;
  --radius-pill: 999px;
  --radius-panel: 28px;
  --radius-row: 14px;
  --shadow-plinth: 0 34px 90px rgba(20, 22, 18, .20);
  --shadow-panel: 0 18px 48px rgba(20, 22, 18, .13);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-chrome: 180ms;
  --dur-panel: 320ms;
  --dur-theme: 700ms;
  --header-h: 72px;
  --page-x: clamp(20px, 5vw, 72px);
  --max-w: 1440px;
  --phone-w: 390px;
  --phone-h: 844px;
  --focus-ring: 2px solid var(--fg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); color: var(--fg); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--fg);
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; padding: 0; background: none; cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { background: var(--fg); color: var(--bg); }
:focus-visible { outline: var(--focus-ring); outline-offset: 3px; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }

.sr-only {
  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;
}
.tabular { font-variant-numeric: tabular-nums; }
.meta-label {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .16em;
  font-weight: 700;
  text-transform: uppercase;
}
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.scroll-spine {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1000;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(var(--scroll-progress, 0));
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur-chrome), border-color var(--dur-chrome), backdrop-filter var(--dur-chrome);
}
.site-header.is-scrolled {
  background: rgba(243, 240, 231, .82);
  border-color: var(--border);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.035em;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand span { font-size: 18px; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(23, 24, 23, .055);
}
.desktop-nav a {
  position: relative;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
  color: rgba(23, 24, 23, .68);
  transition: color var(--dur-chrome), background-color var(--dur-chrome);
}
.desktop-nav a:hover { color: var(--fg); background: rgba(255,255,255,.46); }
.desktop-nav a:active { transform: scale(.97); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.header-link,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: transform var(--dur-chrome) var(--ease-out), background-color var(--dur-chrome), color var(--dur-chrome);
}
.header-link:hover { background: rgba(23,24,23,.06); }
.header-cta { background: var(--dark); color: var(--cream); }
.header-cta:hover { background: #2b2c29; }
.header-link:active, .header-cta:active { transform: scale(.97); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: var(--dark);
}
.menu-toggle span { width: 18px; height: 1.5px; background: #fff; transition: transform var(--dur-panel) var(--ease-out); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(23,24,23,.96);
  color: #fff;
  box-shadow: var(--shadow-panel);
  transform-origin: top right;
  animation: mobileMenuIn var(--dur-panel) var(--ease-out) both;
}
.mobile-nav a,
.mobile-nav button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: inherit;
}
.mobile-nav a:hover, .mobile-nav button:hover { background: rgba(255,255,255,.08); }
.mobile-nav button { margin-top: 6px; background: var(--accent); color: var(--accent-ink); }
@keyframes mobileMenuIn { from { opacity: 0; transform: translateY(-8px) scale(.97); } to { opacity: 1; transform: none; } }

/* Buttons */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -.01em;
  transition: transform var(--dur-chrome) var(--ease-out), background-color var(--dur-chrome), color var(--dur-chrome), box-shadow var(--dur-chrome);
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur-chrome) var(--ease-out); }
.button:hover svg { transform: translateX(3px); }
.button:active { transform: scale(.97); }
.button-dark { background: var(--dark); color: var(--cream); box-shadow: 0 14px 32px rgba(23,24,23,.16); }
.button-dark:hover { background: #2b2c29; box-shadow: 0 18px 38px rgba(23,24,23,.21); }
.button-light { background: var(--cream); color: var(--dark); }
.button-light:hover { background: #fff; }
.button-accent { background: var(--accent); color: var(--accent-ink); }
.button-accent:hover { background: var(--accent-2); }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.draw-link { background: linear-gradient(currentColor, currentColor) 0 77% / 0 1.5px no-repeat; transition: background-size .35s var(--ease-out); }
.draw-link:hover, .draw-link:focus-visible { background-size: 100% 1.5px; }
.light-link { color: #fff; }

/* Hero */
.hero {
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 74% 36%, rgba(185,216,109,.31), transparent 30%),
    linear-gradient(135deg, #f5f2e9 0%, #eee9dd 100%);
  padding: calc(var(--header-h) + 28px) var(--page-x) 32px;
}
.hero-inner {
  width: min(100%, var(--max-w));
  min-height: calc(100svh - var(--header-h) - 60px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 540px);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
}
.hero-copy { position: relative; z-index: 3; max-width: 760px; transform: translateY(var(--hero-copy-y, 0)); opacity: var(--hero-copy-opacity, 1); }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 11.2vw, 178px);
  line-height: .76;
  letter-spacing: -.087em;
  font-weight: 500;
  margin-left: -.07em;
}
.hero-statement {
  margin-top: clamp(28px, 4vh, 46px);
  max-width: 11ch;
  font-size: clamp(35px, 4.8vw, 70px);
  line-height: .91;
  letter-spacing: -.06em;
  font-weight: 950;
}
.hero-support {
  max-width: 570px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.55;
  letter-spacing: -.015em;
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: min(78vh, 790px);
  display: grid;
  place-items: center;
  transform: translateY(var(--hero-stage-y, 0)) rotate(var(--hero-stage-r, 0deg));
  transform-origin: center;
}
.phone {
  position: relative;
  width: var(--phone-w);
  height: var(--phone-h);
  border-radius: 52px;
  background: #111;
  padding: 9px;
  box-shadow: var(--shadow-plinth), 0 0 0 1px rgba(255,255,255,.2) inset;
}
.phone-shell { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 44px; background: #f4f1e7; }
.status-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px 0;
  font-size: 12px;
  font-weight: 900;
}
.dynamic-island { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); width: 100px; height: 26px; border-radius: 99px; background: #080808; }
.phone-screen { width: 100%; height: 100%; padding: 50px 20px 92px; background: #f4f1e7; overflow: hidden; color: #171817; }
.phone-hero { transform: scale(.78) rotate(1.25deg); }
.app-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; }
.app-topbar > div:first-child { display: grid; }
.phone-eyebrow { font-size: 10px; letter-spacing: .1em; color: #77796f; font-weight: 900; }
.app-topbar strong { font-size: 16px; letter-spacing: -.02em; }
.app-top-actions { display: flex; align-items: center; gap: 8px; }
.app-top-actions button, .avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 16px; background: #e9e6da; }
.app-top-actions button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.avatar { background: #171817; color: #f4f1e7; font-size: 12px; font-weight: 950; }
.app-search { height: 50px; margin-top: 14px; display: flex; align-items: center; gap: 10px; border-radius: 18px; padding: 0 14px; background: #e9e6da; color: #77796f; font-size: 12px; }
.app-search svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.app-chips { display: flex; gap: 7px; margin-top: 12px; overflow: hidden; }
.app-chips button { height: 34px; padding: 0 12px; border-radius: 12px; background: #e9e6da; font-size: 10px; font-weight: 900; }
.app-chips .is-active { background: #171817; color: #f4f1e7; }
.phone-section-head { display: flex; align-items: end; justify-content: space-between; margin: 22px 2px 10px; }
.phone-section-head strong { font-size: 17px; }
.phone-section-head button { color: #77796f; font-size: 10px; font-weight: 850; }
.product-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-tile { position: relative; overflow: hidden; border-radius: 24px; background: #e9e6da; text-align: left; transition: transform var(--dur-chrome); }
.product-tile:active { transform: scale(.97); }
.product-tile img { width: 100%; aspect-ratio: 1 / 1.02; object-fit: cover; }
.product-badge { position: absolute; z-index: 2; top: 8px; left: 8px; padding: 5px 7px; border-radius: 8px; background: #ffd15b; font-size: 8px; font-weight: 950; letter-spacing: .08em; }
.product-info { display: grid; gap: 7px; padding: 10px 11px 12px; }
.product-info strong { min-height: 30px; font-size: 12px; line-height: 1.05; }
.product-info b { font-size: 18px; }
.app-dock { position: absolute; left: 17px; right: 17px; bottom: 14px; height: 66px; display: flex; gap: 4px; padding: 6px; border-radius: 23px; background: #171817; color: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.26); }
.app-dock button { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 17px; color: #a9aaa4; font-size: 8px; font-weight: 800; }
.app-dock button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.app-dock .is-active { background: var(--accent); color: var(--accent-ink); }
.floating-order, .floating-role {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.52);
  background: rgba(246,242,231,.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-panel);
}
.floating-order { right: -2%; top: 18%; padding: 12px 15px 12px 11px; border-radius: 20px; }
.floating-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; background: var(--accent); font-weight: 950; }
.floating-order b, .floating-order small { display: block; }
.floating-order b { font-size: 11px; }
.floating-order small { margin-top: 2px; font-size: 9px; color: var(--muted); }
.floating-role { left: -2%; bottom: 17%; padding: 13px 16px; border-radius: 20px; align-items: baseline; }
.floating-role span { font-family: Georgia, serif; font-size: 35px; line-height: .8; }
.floating-role small { max-width: 62px; font-size: 9px; line-height: 1.15; color: var(--muted); }
.hero-scroll { position: absolute; left: var(--page-x); bottom: 24px; display: flex; align-items: center; gap: 10px; font-family: monospace; font-size: 9px; letter-spacing: .18em; }
.hero-scroll i { width: 46px; height: 1px; background: rgba(23,24,23,.24); overflow: hidden; }
.hero-scroll i::after { content: ""; display: block; width: 50%; height: 100%; background: var(--fg); animation: scrollCue 1.8s var(--ease-in-out) infinite; }
@keyframes scrollCue { 0% { transform: translateX(-120%); } 70%,100% { transform: translateX(230%); } }

/* Manifesto */
.manifesto { position: relative; min-height: 470vh; background: var(--dark); color: var(--cream); }
.manifesto-sticky { position: sticky; top: 0; min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto; padding: calc(var(--header-h) + 34px) var(--page-x) 34px; overflow: hidden; }
.manifesto-head { width: min(100%, var(--max-w)); margin: 0 auto; display: flex; align-items: start; justify-content: space-between; gap: 28px; }
.manifesto-head .meta-label { color: var(--accent); }
.manifesto-head > p:last-child { max-width: 470px; color: rgba(246,242,231,.56); font-size: 14px; line-height: 1.5; }
.ritual-words { width: min(100%, var(--max-w)); margin: auto; display: grid; align-content: center; padding: 30px 0; }
.ritual-words span {
  width: max-content;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 11.5vw, 170px);
  line-height: .78;
  letter-spacing: -.075em;
  color: color-mix(in srgb, var(--cream) calc(18% + var(--ink, 0) * 82%), transparent);
  transform: translateX(calc((1 - var(--ink, 0)) * 28px));
  transition: color 60ms linear;
}
.ritual-words span:nth-child(even) { justify-self: end; }
.manifesto-cycle { width: min(100%, var(--max-w)); margin: 0 auto; display: flex; align-items: center; gap: 14px; color: rgba(246,242,231,.45); font-family: monospace; font-size: 9px; letter-spacing: .12em; white-space: nowrap; }
.manifesto-cycle i { flex: 1; height: 1px; background: rgba(246,242,231,.16); }

/* shared section */
.section-pad { padding: clamp(96px, 11vw, 172px) var(--page-x); }
.section-heading { width: min(100%, var(--max-w)); margin: 0 auto 66px; }
.section-heading .meta-label, .assistant-copy .meta-label, .admin-copy .meta-label, .operation-copy .meta-label { color: rgba(23,24,23,.52); }
.section-heading h2,
.operation-copy h2,
.assistant-copy h2,
.admin-copy h2,
.final-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: .91;
  letter-spacing: -.06em;
}
.section-heading > p:last-child,
.operation-copy > p,
.assistant-copy > p:last-child,
.admin-copy > p,
.final-copy > p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
}

/* Roles */
.roles-section { background: #f3f0e7; overflow: hidden; }
.roles-composer { width: min(100%, var(--max-w)); margin: 0 auto; display: grid; grid-template-columns: minmax(330px, .8fr) minmax(560px, 1.2fr); gap: clamp(36px, 6vw, 92px); align-items: stretch; }
.role-tabs { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.role-tab {
  position: relative;
  min-height: 102px;
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: rgba(23,24,23,.44);
  transition: color var(--dur-chrome), padding-left var(--dur-panel) var(--ease-out), background-color var(--dur-chrome);
}
.role-tab::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 72%; transform: translateY(-50%); border-radius: 0 12px 12px 0; background: var(--accent); z-index: -1; transition: width var(--dur-panel) var(--ease-out); }
.role-tab:hover { color: var(--fg); padding-left: 8px; }
.role-tab:active { padding-left: 3px; }
.role-tab.is-active { color: var(--fg); padding-left: 15px; }
.role-tab.is-active::before { width: calc(100% + 8px); }
.role-index { font-family: monospace; font-size: 10px; letter-spacing: .1em; }
.role-tab > span:nth-child(2) { display: grid; gap: 4px; }
.role-tab b { font-size: 18px; letter-spacing: -.025em; }
.role-tab small { max-width: 280px; font-size: 11px; line-height: 1.4; opacity: .68; }
.role-tab i { font-style: normal; font-size: 18px; opacity: 0; transform: translate(-8px, 8px); transition: opacity var(--dur-chrome), transform var(--dur-panel) var(--ease-out); }
.role-tab.is-active i { opacity: 1; transform: none; }
.role-stage { position: relative; min-height: 760px; overflow: hidden; display: grid; grid-template-columns: minmax(210px, .65fr) minmax(340px, 1fr); align-items: center; gap: 28px; padding: 44px; border-radius: 48px; background: var(--dark); color: #fff; isolation: isolate; }
.role-stage::before { content: ""; position: absolute; width: 600px; height: 600px; right: -180px; bottom: -250px; border-radius: 50%; background: var(--accent); opacity: .78; z-index: -1; }
.role-stage-meta { align-self: start; padding-top: 16px; }
.role-stage-meta > * { transition: opacity 180ms var(--ease-out), transform 420ms var(--ease-out); }
.role-stage-meta.is-switching > * { opacity: 0; transform: translateY(12px); }
.role-stage-meta .meta-label { color: var(--accent); }
.role-stage-meta h3 { margin-top: 18px; font-family: Georgia, serif; font-size: clamp(42px, 4.3vw, 68px); line-height: .92; letter-spacing: -.055em; font-weight: 500; }
.role-stage-meta > p:last-child { margin-top: 18px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.55; }
.phone-role { justify-self: end; transform: scale(.72); transform-origin: center; margin: -80px -36px -80px -20px; }
.role-number { position: absolute; left: 34px; bottom: 24px; font-family: Georgia, serif; font-size: 100px; line-height: .8; letter-spacing: -.08em; color: rgba(255,255,255,.10); transition: opacity 180ms var(--ease-out), transform 420ms var(--ease-out); }
.role-number.is-switching { opacity: 0; transform: translateY(12px); }
.role-phone-screen { padding: 48px 18px 18px; }
.role-phone-screen.is-swapping { animation: roleSwap 520ms var(--ease-out) both; }
@keyframes roleSwap { 0% { opacity: .2; transform: translateY(16px) scale(.985); } 55% { opacity: 1; transform: translateY(-2px) scale(1.005); } 100% { opacity: 1; transform: none; } }

/* mini screens */
.mini-app { height: 100%; color: #171817; font-size: 12px; }
.mini-top { min-height: 48px; display: flex; justify-content: space-between; align-items: center; }
.mini-top span { display: grid; gap: 2px; }
.mini-top small { color: #77796f; font-size: 9px; letter-spacing: .08em; }
.mini-top b { font-size: 16px; }
.mini-top i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: #171817; color: #fff; font-style: normal; font-weight: 900; }
.mini-search { height: 50px; display: flex; align-items: center; margin-top: 12px; padding: 0 14px; border-radius: 18px; background: #e9e6da; color: #77796f; }
.mini-chips { display: flex; gap: 7px; margin-top: 10px; }
.mini-chips span, .mini-chips b { padding: 9px 12px; border-radius: 12px; background: #e9e6da; font-size: 10px; }
.mini-chips b { background: #171817; color: #fff; }
.mini-title { display: flex; justify-content: space-between; align-items: end; margin: 22px 2px 10px; }
.mini-title b { font-size: 17px; }.mini-title small { color: #77796f; font-size: 9px; }
.mini-products { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-products article { overflow: hidden; display: grid; border-radius: 23px; background: #e9e6da; }
.mini-products img { width: 100%; height: 160px; object-fit: cover; }
.mini-products b { padding: 9px 10px 0; line-height: 1.05; }
.mini-products span { padding: 7px 10px 12px; font-size: 18px; font-weight: 950; }
.mini-dock { position: absolute; left: 17px; right: 17px; bottom: 15px; height: 66px; display: flex; gap: 4px; padding: 6px; border-radius: 22px; background: #171817; color: #a8aaa3; }
.mini-dock > * { flex: 1; display: grid; place-items: center; align-content: center; gap: 3px; border-radius: 16px; font-size: 17px; font-style: normal; }
.mini-dock small { display: block; font-size: 7px; }
.mini-dock b { background: var(--accent); color: var(--accent-ink); }
.cash-summary { margin-top: 20px; padding: 20px; border-radius: 26px; background: var(--accent); display: grid; }
.cash-summary small { font-size: 9px; letter-spacing: .1em; }.cash-summary b { margin-top: 3px; font-size: 15px; }.cash-summary strong { margin-top: 20px; font-size: 42px; letter-spacing: -.06em; }
.cash-order { margin-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px; border-radius: 21px; background: #e9e6da; }
.cash-order span { display: grid; gap: 3px; }.cash-order small, .cash-order em { color: #77796f; font-size: 9px; font-style: normal; }.cash-order strong { font-size: 20px; }
.cash-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.cash-actions button { min-height: 46px; border-radius: 15px; background: #171817; color: #fff; font-size: 10px; font-weight: 900; }
.kitchen-label { margin: 20px 2px 8px; font-family: monospace; font-size: 9px; letter-spacing: .12em; color: #77796f; }
.kitchen-ticket { padding: 19px; border-radius: 27px; background: #ffd15b; }
.kitchen-ticket header { display: flex; justify-content: space-between; align-items: center; }
.kitchen-ticket header b { font-size: 24px; }.kitchen-ticket header span { font-family: monospace; font-size: 10px; }
.kitchen-ticket h4 { margin-top: 27px; font-size: 26px; line-height: .93; letter-spacing: -.045em; }
.kitchen-ticket p { margin-top: 8px; color: rgba(23,24,23,.64); line-height: 1.45; }
.kitchen-ticket footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.kitchen-ticket footer span { font-family: monospace; font-size: 9px; font-weight: 900; }.kitchen-ticket footer button { height: 42px; padding: 0 17px; border-radius: 14px; background: #171817; color: #fff; font-weight: 900; }
.kitchen-quiet { margin-top: 10px; display: flex; justify-content: space-between; padding: 16px; border-radius: 19px; background: #e9e6da; }
.table-number { margin: 26px 0 14px; padding: 28px; border-radius: 32px; background: var(--accent); display: grid; justify-items: center; }
.table-number small { font-family: monospace; font-size: 10px; letter-spacing: .15em; }.table-number b { font-size: 92px; line-height: .86; letter-spacing: -.08em; }
.waiter-order { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 15px; border-radius: 22px; background: #e9e6da; }
.waiter-order span { display: grid; gap: 3px; }.waiter-order small,.waiter-order em { color: #77796f; font-size: 9px; font-style: normal; }.waiter-order > strong { padding: 8px 10px; border-radius: 10px; background: #ffd15b; font-size: 9px; }
.deliver-button { width: 100%; min-height: 52px; margin-top: 11px; border-radius: 17px; background: #171817; color: #fff; font-weight: 900; }
.waiter-note { margin: 15px 8px; color: #77796f; font-size: 10px; line-height: 1.45; }
.admin-mini-balance { margin-top: 18px; padding: 23px; border-radius: 30px; background: var(--accent); display: grid; }
.admin-mini-balance small { font-size: 10px; }.admin-mini-balance b { margin-top: 8px; font-size: 44px; letter-spacing: -.06em; }
.admin-mini-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.admin-mini-kpis span { display: grid; padding: 15px; border-radius: 19px; background: #e9e6da; }.admin-mini-kpis b { font-size: 23px; }.admin-mini-kpis small { color: #77796f; }
.admin-mini-chart { height: 140px; margin-top: 9px; padding: 18px; display: flex; align-items: end; gap: 8px; border-radius: 24px; background: #e9e6da; }
.admin-mini-chart i { flex: 1; height: var(--h); border-radius: 8px 8px 3px 3px; background: var(--accent); }
.admin-mini-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.admin-mini-menu span { padding: 12px; border-radius: 14px; background: #e9e6da; font-size: 10px; font-weight: 800; }

/* Operation */
.operation-section { background: var(--dark); color: var(--cream); }
.operation-grid { width: min(100%, var(--max-w)); margin: 0 auto; display: grid; grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr); gap: clamp(52px, 8vw, 130px); }
.operation-copy { position: sticky; top: 130px; align-self: start; }
.operation-copy .meta-label { color: var(--accent); }
.operation-copy h2 { margin-top: 22px; }
.operation-copy > p { color: rgba(246,242,231,.56); }
.operation-copy .button { margin-top: 32px; }
.order-timeline { position: relative; list-style: none; margin: 0; padding: 0 0 0 50px; }
.timeline-step { min-height: 220px; display: grid; grid-template-columns: 48px 1fr auto; align-items: start; gap: 20px; padding: 10px 0 54px; border-bottom: 1px solid rgba(255,255,255,.12); }
.timeline-index { font-family: monospace; font-size: 10px; color: var(--accent); letter-spacing: .1em; }
.timeline-step div { display: grid; gap: 10px; }
.timeline-step b { font-family: Georgia, serif; font-size: clamp(30px, 3vw, 48px); line-height: .95; font-weight: 500; letter-spacing: -.045em; }
.timeline-step p { max-width: 500px; color: rgba(246,242,231,.48); font-size: 13px; line-height: 1.55; }
.timeline-state { padding: 9px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; font-family: monospace; font-size: 8px; letter-spacing: .08em; color: rgba(246,242,231,.65); }
.timeline-track { position: absolute; top: 14px; bottom: 50px; left: 10px; width: 2px; background: rgba(255,255,255,.12); }
.timeline-track i { position: absolute; inset: 0; background: var(--accent); transform: scaleY(var(--timeline-progress, 0)); transform-origin: top; }
.timeline-track b { position: absolute; left: 50%; top: calc(var(--timeline-progress, 0) * 100%); width: 18px; height: 18px; border-radius: 7px; background: var(--accent); transform: translate(-50%, -50%); box-shadow: 0 0 0 7px rgba(185,216,109,.12); }

/* Assistant */
.assistant-section { background: #ebe7dc; display: grid; grid-template-columns: minmax(310px, .8fr) minmax(560px, 1.2fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.assistant-copy { max-width: 660px; justify-self: end; }
.assistant-copy h2 { margin-top: 22px; }
.assistant-artifact { position: relative; min-height: 680px; display: grid; align-content: end; padding: 32px; border-radius: 46px; background: #171817; color: #f6f2e7; box-shadow: var(--shadow-plinth); overflow: hidden; }
.assistant-artifact::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -160px; top: -220px; background: var(--accent); opacity: .92; }
.assistant-brand { position: absolute; top: 32px; left: 32px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 850; }
.assistant-brand img { width: 58px; height: 58px; }
.assistant-chat { position: relative; z-index: 2; display: grid; gap: 14px; }
.chat-user { justify-self: end; max-width: 76%; padding: 14px 16px; border-radius: 20px 20px 7px 20px; background: rgba(255,255,255,.10); font-size: 13px; line-height: 1.45; }
.chat-answer { max-width: 92%; padding: 20px; border-radius: 26px 26px 26px 8px; background: #f4f1e7; color: #171817; }
.chat-answer > p { font-size: 14px; line-height: 1.55; color: rgba(23,24,23,.68); }
.chat-product { margin-top: 17px; display: grid; grid-template-columns: 68px 1fr auto 34px; align-items: center; gap: 12px; padding: 9px; border-radius: 20px; background: #e9e6da; }
.chat-product img { width: 68px; height: 68px; object-fit: cover; border-radius: 16px; }
.chat-product span { display: grid; gap: 3px; }.chat-product b { font-size: 13px; }.chat-product small { color: #77796f; font-size: 9px; }
.chat-product > strong { font-size: 15px; }
.chat-product button { width: 34px; height: 34px; border-radius: 12px; background: #171817; color: #fff; font-size: 20px; }
.prompt-row { position: relative; z-index: 2; display: flex; gap: 8px; margin-top: 14px; overflow: hidden; }
.prompt-row button { min-height: 38px; padding: 0 13px; border-radius: 13px; background: rgba(255,255,255,.09); color: #fff; font-size: 10px; font-weight: 800; white-space: nowrap; transition: background-color var(--dur-chrome), transform var(--dur-chrome); }
.prompt-row button:hover { background: rgba(255,255,255,.16); }.prompt-row button:active { transform: scale(.97); }

/* Admin */
.admin-section { background: var(--bg); display: grid; grid-template-columns: minmax(560px, 1.15fr) minmax(320px, .85fr); gap: clamp(58px, 8vw, 120px); align-items: center; }
.admin-artifact { padding: 34px; border-radius: 46px; background: var(--dark); color: var(--cream); box-shadow: var(--shadow-plinth); }
.admin-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.admin-top .meta-label { color: rgba(246,242,231,.42); }.admin-top h3 { margin-top: 6px; font-size: 28px; letter-spacing: -.035em; }
.admin-status { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: 10px; }
.admin-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(185,216,109,.12); }
.admin-balance { position: relative; overflow: hidden; margin-top: 34px; padding: 28px; border-radius: 32px; background: var(--accent); color: var(--accent-ink); display: grid; }
.admin-balance::after { content: "V"; position: absolute; right: -18px; bottom: -70px; font-family: Georgia, serif; font-size: 200px; opacity: .08; }
.admin-balance span { font-size: 12px; font-weight: 800; }.admin-balance strong { margin-top: 8px; font-size: clamp(54px, 7vw, 94px); line-height: .85; letter-spacing: -.075em; }.admin-balance small { margin-top: 14px; font-size: 9px; opacity: .55; }
.admin-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.admin-kpis div { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.08); display: grid; gap: 5px; }.admin-kpis b { font-size: 24px; }.admin-kpis span { color: rgba(246,242,231,.48); font-size: 10px; }
.admin-chart { height: 220px; margin-top: 10px; display: flex; align-items: end; gap: 11px; padding: 24px 20px 30px; border-radius: 28px; background: rgba(255,255,255,.08); }
.admin-chart span { flex: 1; height: var(--h); border-radius: 10px 10px 4px 4px; background: var(--accent); transform-origin: bottom; }
.admin-chart span:nth-child(2n) { opacity: .72; }.admin-chart span:nth-child(3n) { opacity: .45; }
.admin-copy h2 { margin-top: 22px; }
.admin-list { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--border); }
.admin-list li { display: flex; align-items: center; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 750; }
.admin-list span { font-family: monospace; font-size: 9px; color: var(--muted); }

/* CTA + footer */
.final-cta { min-height: 90svh; display: grid; grid-template-columns: minmax(360px, .75fr) minmax(520px, 1.25fr); align-items: center; gap: clamp(52px, 8vw, 130px); padding: clamp(96px, 10vw, 160px) var(--page-x); background: var(--dark); color: var(--cream); overflow: hidden; }
.ticket-wrap { display: grid; place-items: center; perspective: 900px; }
.ticket { width: min(370px, 85vw); padding: 28px 26px 48px; background: #f5f1e7; color: #171817; box-shadow: 0 34px 90px rgba(0,0,0,.42); transform: rotate(-4deg); font-family: monospace; }
.ticket::after { content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 18px; background: linear-gradient(135deg, transparent 9px, #f5f1e7 0) 0 0/18px 18px repeat-x; }
.ticket-mark { width: 76px; height: 64px; margin: 0 auto 16px; }.ticket-mark img { width: 100%; height: 100%; object-fit: contain; }
.ticket > p { text-align: center; font-size: 9px; letter-spacing: .11em; }
.ticket-rule { height: 1px; margin: 18px 0; background: repeating-linear-gradient(90deg, #171817 0 5px, transparent 5px 9px); }
.ticket ol { list-style: none; margin: 0; padding: 0; }.ticket li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 12px; }.ticket li b { font-variant-numeric: tabular-nums; }
.ticket > strong { display: block; margin-top: 28px; text-align: center; font-family: Georgia, serif; font-size: 32px; letter-spacing: -.05em; }.ticket > small { display: block; margin-top: 8px; text-align: center; color: #77796f; font-size: 8px; line-height: 1.5; }
.final-copy { max-width: 850px; }
.final-copy .meta-label { color: var(--accent); }.final-copy h2 { margin-top: 22px; font-size: clamp(60px, 8vw, 122px); }.final-copy > p { color: rgba(246,242,231,.52); }
.site-footer { min-height: 100px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 24px var(--page-x); border-top: 1px solid var(--border); background: var(--bg); }
.footer-brand { justify-self: start; }.site-footer > p:nth-child(2) { color: var(--muted); font-size: 12px; }.site-footer > .meta-label { justify-self: end; color: var(--muted); }

/* Dialog */
.demo-modal {
  width: min(1240px, calc(100vw - 32px));
  height: min(900px, calc(100dvh - 32px));
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background: #2f322d;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,.46);
  overflow: hidden;
}
.demo-modal[open] { display: grid; grid-template-rows: auto 1fr; animation: modalIn var(--dur-panel) var(--ease-out) both; }
.demo-modal::backdrop { background: rgba(16,16,16,.64); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); animation: backdropIn var(--dur-panel) ease both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
.modal-bar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 16px 14px 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.modal-bar .meta-label { color: var(--accent); }.modal-bar h2 { margin-top: 3px; font-size: 18px; letter-spacing: -.025em; }
.modal-close { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.08); color: #fff; transition: background-color var(--dur-chrome), transform var(--dur-chrome); }
.modal-close:hover { background: rgba(255,255,255,.16); }.modal-close:active { transform: scale(.96); }.modal-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.modal-frame { position: relative; min-height: 0; background: #41443e; }
.modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal-loading { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; color: rgba(255,255,255,.62); font-size: 12px; }.modal-loading img { width: 90px; height: 90px; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(340px, 430px); }
  .phone-hero { transform: scale(.7) rotate(1.25deg); }
  .roles-composer { grid-template-columns: .8fr 1.2fr; gap: 28px; }
  .role-stage { grid-template-columns: 1fr; min-height: 760px; }
  .role-stage-meta { max-width: 420px; }
  .phone-role { position: absolute; right: -18px; bottom: -88px; transform: scale(.64); }
  .assistant-section, .admin-section { gap: 54px; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .header-link, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 100svh; align-items: start; padding-top: calc(var(--header-h) + 32px); padding-bottom: 0; }
  .hero-inner { min-height: calc(100svh - var(--header-h) - 32px); grid-template-columns: 1fr; align-content: start; gap: 14px; }
  .hero-copy { text-align: center; display: grid; justify-items: center; }
  .hero h1 { font-size: clamp(76px, 18vw, 132px); }
  .hero-statement { margin-top: 20px; font-size: clamp(34px, 8vw, 54px); }
  .hero-support { max-width: 560px; margin-top: 16px; }
  .hero-actions { justify-content: center; margin-top: 22px; }
  .hero-stage { height: 440px; margin-top: -12px; }
  .phone-hero { transform: scale(.49) rotate(1deg); }
  .floating-order { right: 8%; top: 5%; transform: scale(.9); }.floating-role { left: 8%; bottom: 6%; transform: scale(.9); }
  .hero-scroll { display: none; }
  .manifesto-head { align-items: start; flex-direction: column; }
  .manifesto-head > p:last-child { max-width: 520px; }
  .ritual-words span { font-size: clamp(56px, 15vw, 112px); }
  .roles-composer { grid-template-columns: 1fr; }
  .role-tabs { flex-direction: row; overflow-x: auto; border: 0; padding-bottom: 8px; scrollbar-width: none; }
  .role-tabs::-webkit-scrollbar { display: none; }
  .role-tab { min-width: 220px; min-height: 88px; grid-template-columns: 34px 1fr; padding: 12px 14px !important; border: 1px solid var(--border); border-radius: 22px; margin-right: 8px; background: var(--surface); }
  .role-tab::before { inset: 0; width: 0; height: 100%; transform: none; border-radius: inherit; }
  .role-tab.is-active::before { width: 100%; }
  .role-tab i { display: none; }
  .role-stage { min-height: 700px; grid-template-columns: 1fr; padding: 34px; }
  .phone-role { right: 50%; bottom: -92px; transform: translateX(50%) scale(.61); }
  .role-stage-meta { max-width: 480px; }
  .operation-grid { grid-template-columns: 1fr; gap: 70px; }
  .operation-copy { position: static; }
  .assistant-section, .admin-section { grid-template-columns: 1fr; }
  .assistant-copy { justify-self: start; }.assistant-artifact { min-height: 620px; }
  .admin-artifact { order: 2; }.admin-copy { order: 1; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .ticket-wrap { order: 2; }.final-copy { display: grid; justify-items: center; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-brand, .site-footer > .meta-label { justify-self: center; }
}

@media (max-width: 600px) {
  :root { --page-x: 20px; }
  .site-header { padding: 0 16px; }
  .brand img { width: 34px; height: 34px; }.brand span { font-size: 16px; }
  .hero { padding-top: calc(var(--header-h) + 22px); }
  .hero h1 { font-size: clamp(70px, 22vw, 102px); line-height: .78; }
  .hero-statement { font-size: clamp(32px, 11vw, 46px); }
  .hero-support { font-size: 14px; line-height: 1.45; }
  .hero-actions { gap: 10px; }.button { min-height: 50px; padding: 0 18px; }.text-link { min-height: 40px; }
  .hero-stage { height: 350px; margin-top: -38px; }
  .phone-hero { transform: scale(.4) rotate(1deg); }
  .floating-order { right: 1%; top: 0; transform: scale(.78); }.floating-role { left: 1%; bottom: 1%; transform: scale(.78); }
  .manifesto { min-height: 430vh; }
  .manifesto-sticky { padding-top: calc(var(--header-h) + 24px); }
  .manifesto-head > p:last-child { font-size: 12px; }
  .ritual-words span { font-size: clamp(48px, 17vw, 78px); line-height: .86; }
  .manifesto-cycle { gap: 7px; font-size: 7px; overflow: hidden; }.manifesto-cycle i { min-width: 16px; }
  .section-pad { padding-top: 92px; padding-bottom: 92px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .operation-copy h2, .assistant-copy h2, .admin-copy h2 { font-size: clamp(43px, 14vw, 64px); }
  .role-stage { min-height: 620px; padding: 25px; border-radius: 34px; }
  .role-stage-meta h3 { font-size: 44px; }.role-stage-meta > p:last-child { font-size: 12px; }
  .phone-role { bottom: -150px; transform: translateX(50%) scale(.49); }
  .role-number { left: 22px; bottom: 20px; font-size: 76px; }
  .order-timeline { padding-left: 34px; }
  .timeline-step { min-height: 240px; grid-template-columns: 34px 1fr; gap: 12px; }
  .timeline-state { grid-column: 2; justify-self: start; }
  .timeline-track { left: 5px; }
  .assistant-artifact { min-height: 570px; padding: 20px; border-radius: 34px; }
  .assistant-brand { top: 20px; left: 20px; }.assistant-brand img { width: 50px; height: 50px; }
  .chat-user { max-width: 90%; }.chat-answer { max-width: 100%; padding: 15px; }
  .chat-product { grid-template-columns: 54px 1fr auto 32px; gap: 8px; }.chat-product img { width: 54px; height: 54px; }.chat-product > strong { font-size: 13px; }
  .prompt-row { overflow-x: auto; scrollbar-width: none; }.prompt-row::-webkit-scrollbar { display: none; }
  .admin-artifact { padding: 20px; border-radius: 34px; }.admin-balance { padding: 20px; }.admin-balance strong { font-size: 58px; }
  .admin-kpis { grid-template-columns: 1fr; }.admin-chart { height: 160px; }
  .final-cta { min-height: auto; padding-top: 96px; padding-bottom: 110px; }.final-copy h2 { font-size: clamp(54px, 16vw, 74px); }
  .ticket { transform: rotate(-2deg); }
  .demo-modal { width: 100vw; height: 100dvh; max-width: none; max-height: none; border: 0; border-radius: 0; }
  .modal-bar { min-height: 68px; padding-left: 16px; }.modal-bar h2 { font-size: 15px; }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero h1 { font-size: clamp(72px, 9.4vw, 142px); }
  .hero-statement { margin-top: 24px; font-size: clamp(34px, 4vw, 56px); }
  .hero-support { margin-top: 16px; }.hero-actions { margin-top: 22px; }
  .hero-stage { height: 660px; }.phone-hero { transform: scale(.67) rotate(1.25deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-copy, .hero-stage { transform: none !important; opacity: 1 !important; }
  .ritual-words span { --ink: 1 !important; transform: none !important; }
  .timeline-track i { --timeline-progress: 1; transform: scaleY(1) !important; }
  .timeline-track b { top: 100% !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 600px) {
  .hero-support { width: 100%; max-width: 340px; font-size: 13.5px; }
  .hero-stage { position: relative; margin-top: -14px; }
  .phone-hero {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%) scale(.4) rotate(1deg);
    transform-origin: top center;
  }
  .floating-order { top: 38px; }
  .floating-role { bottom: 10px; }
}
