:root {
  --ink: #0b0a10;
  --ink-soft: #15131d;
  --paper: #f3f0ea;
  --paper-bright: #fbfaf7;
  --violet: #7655ff;
  --violet-bright: #9d83ff;
  --violet-deep: #4b2ad0;
  --cyan: #81eaff;
  --coral: #ff6d5f;
  --line-dark: rgba(14, 12, 20, .14);
  --line-light: rgba(255, 255, 255, .14);
  --text-muted: #6b6774;
  --header-height: 88px;
  --page-pad: clamp(22px, 4vw, 72px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.65, 0, .35, 1);
  --pointer-x: 50vw;
  --pointer-y: 34vh;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  scrollbar-color: var(--violet) var(--ink);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper-bright);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html:lang(hi) body {
  font-family: "Nirmala UI", "Noto Sans Devanagari", Inter, "Helvetica Neue", Arial, sans-serif;
}

html:lang(ar) body {
  font-family: "Segoe UI", Tahoma, "Noto Sans Arabic", Arial, sans-serif;
}

html:lang(zh) body {
  font-family: "Microsoft YaHei UI", "PingFang SC", "Noto Sans SC", Inter, sans-serif;
}

html:lang(hi) :is(.hero-title, .display-copy, .story-heading h2, .story-chapter h3, .tools-heading h2, .plans-heading h2, .studio-copy h2, .privacy-copy h2, .faq-heading h2, .finale h2, .plan-card h3, .tool-card h3),
html:lang(ar) :is(.hero-title, .display-copy, .story-heading h2, .story-chapter h3, .tools-heading h2, .plans-heading h2, .studio-copy h2, .privacy-copy h2, .faq-heading h2, .finale h2, .plan-card h3, .tool-card h3) {
  line-height: 1.04;
  letter-spacing: 0;
}

html:lang(zh) :is(.hero-title, .display-copy, .story-heading h2, .story-chapter h3, .tools-heading h2, .plans-heading h2, .studio-copy h2, .privacy-copy h2, .faq-heading h2, .finale h2, .plan-card h3, .tool-card h3) {
  line-height: .98;
  letter-spacing: -.025em;
}

html:lang(hi) :is(.hero-kicker, .section-label, .section-index p, .object-caption, .tool-number, .plan-top, .footer-nav span),
html:lang(ar) :is(.hero-kicker, .section-label, .section-index p, .object-caption, .tool-number, .plan-top, .footer-nav span),
html:lang(zh) :is(.hero-kicker, .section-label, .section-index p, .object-caption, .tool-number, .plan-top, .footer-nav span) {
  letter-spacing: 0;
}

bdi,
[data-i18n] {
  unicode-bidi: isolate;
}

.studio-window {
  direction: ltr;
}

html:lang(ar) .studio-window [data-i18n] {
  direction: rtl;
}

html[dir="rtl"] .chapter-rail {
  left: auto;
  right: 18px;
  transform: translate(45%, -50%) rotate(90deg);
}

html[dir="rtl"] .hero-object {
  right: auto;
  left: -3.5vw;
}

html[dir="rtl"] .story-chapters,
html[dir="rtl"] .story-progress {
  right: auto;
  left: var(--page-pad);
  text-align: right;
}

html[dir="rtl"] .hero-proof > div {
  padding-right: 0;
  padding-left: 22px;
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,.12);
}

html[dir="rtl"] .hero-proof > div:nth-child(n+2) {
  padding-right: 22px;
}

html[dir="rtl"] .hero-proof > div:last-child {
  border-left: 0;
}

html[dir="rtl"] .privacy-facts > div {
  padding-right: 0;
  padding-left: 12px;
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,.14);
}

html[dir="rtl"] .privacy-facts > div:nth-child(n+2) {
  padding-right: 18px;
}

html[dir="rtl"] .privacy-facts > div:last-child {
  border-left: 0;
}

html[dir="rtl"] .footer-nav a:hover {
  transform: translateX(-4px);
}

.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;
}

body::before {
  position: fixed;
  z-index: 50;
  width: 420px;
  height: 420px;
  left: var(--pointer-x);
  top: var(--pointer-y);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(130, 232, 255, .055), rgba(118, 85, 255, .025) 30%, transparent 70%);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

svg,
canvas {
  display: block;
}

::selection {
  color: white;
  background: var(--violet);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.section-light :focus-visible {
  outline-color: var(--violet-deep);
}

.brand-symbols {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  transform: translateY(-150%);
  transition: transform .25s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.noscript-message {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  max-width: 480px;
  margin: 0;
  padding: 16px 20px;
  color: var(--ink);
  background: white;
  border-radius: 12px;
}

.site-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: #08070d;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

html.static-marketing-route.js-motion .site-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity .7s var(--ease-soft), visibility .7s;
}

html.static-marketing-route.js-motion.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
}

html.static-marketing-route.motion-failsafe .site-loader {
  opacity: 0;
  visibility: hidden;
}

/* A Flutter route can spend a moment downloading and starting its runtime.
   Show an immediate branded transition instead of leaving the previous
   marketing composition looking as if the click had been ignored. */
html.flutter-route .site-loader {
  opacity: 1;
  visibility: visible;
}

/* Respond in the same frame as a landing CTA click. The following document
   keeps this loader visible while Flutter starts, so there is no dead period
   during the navigation itself. */
html.static-marketing-route.js-motion.route-handoff .site-loader,
html.static-marketing-route.motion-failsafe.route-handoff .site-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity .16s var(--ease-soft), visibility .16s;
}

body.flutter-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-soft), visibility .35s;
}

.loader-mark {
  position: relative;
  width: 86px;
  height: 82px;
  overflow: hidden;
}

.loader-mark svg {
  width: 100%;
  height: 100%;
}

.loader-scan {
  position: absolute;
  inset: -30% -20%;
  background: linear-gradient(100deg, transparent 36%, rgba(255,255,255,.85) 48%, transparent 60%);
  transform: translateX(-100%);
  animation: loader-scan 1.25s var(--ease-soft) infinite;
  mix-blend-mode: overlay;
}

.site-loader p {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 28px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 600;
  letter-spacing: -.07em;
}

.site-loader small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .45;
}

@keyframes loader-scan {
  to { transform: translateX(100%); }
}

#marketing-prerender {
  position: relative;
  z-index: 1;
  width: 100%;
  transition: opacity 220ms ease;
}

html.flutter-route #marketing-prerender {
  min-height: 100vh;
}

body.flutter-ready #marketing-prerender {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

body.flutter-settled #marketing-prerender {
  visibility: hidden;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 var(--page-pad);
  color: white;
  transition: height .45s var(--ease-out), background .45s, border-color .45s, backdrop-filter .45s;
}

.site-header::after {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 0;
  height: 1px;
  content: "";
  background: rgba(255,255,255,.12);
  transition: left .45s var(--ease-out), right .45s var(--ease-out), background .45s;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 7, 13, .78);
  backdrop-filter: blur(20px) saturate(135%);
}

.site-header.is-scrolled::after {
  left: 0;
  right: 0;
  background: rgba(255,255,255,.1);
}

.brand-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 35px;
  height: 33px;
  flex: 0 0 auto;
  transition: transform .6s var(--ease-out), filter .6s;
}

.brand-link:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
  filter: drop-shadow(0 0 14px rgba(129,234,255,.3));
}

.brand-word {
  font-size: 21px;
  font-weight: 720;
  letter-spacing: -.055em;
}

.brand-word span {
  color: var(--violet-bright);
  font-weight: 520;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 46px);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,.66);
  transition: color .25s;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  content: "";
  background: var(--cyan);
  transition: right .35s var(--ease-out);
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  right: 0;
}

.mobile-nav {
  display: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-actions {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.account-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 720;
  white-space: nowrap;
  transition: color .25s, background .25s, box-shadow .25s;
}

.account-link:hover,
.account-link:focus-visible {
  color: white;
  background: rgba(255,255,255,.08);
}

.account-link-signup {
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), #a99aff);
  box-shadow: 0 8px 24px rgba(93,226,255,.12);
}

.account-link-signup:hover,
.account-link-signup:focus-visible {
  color: var(--ink);
  background: white;
  box-shadow: 0 10px 28px rgba(93,226,255,.22);
}

.language-picker {
  position: relative;
  width: 54px;
  height: 42px;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.035);
  transition: color .25s, background .25s, border-color .25s;
}

.language-picker:hover,
.language-picker:focus-within {
  color: white;
  border-color: rgba(129,234,255,.62);
  background: rgba(129,234,255,.08);
}

.language-picker:focus-within {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.language-icon {
  font-size: 12px;
  line-height: 1;
}

.language-code {
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.language-picker select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  grid-area: 1 / 1;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(-45deg);
}

.header-cta {
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px 12px 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: color .35s, background .35s, border-color .35s;
}

.header-cta:hover {
  color: var(--ink);
  background: white;
  border-color: white;
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(72px, 9vh, 120px)) var(--page-pad) 36px;
  isolation: isolate;
  background:
    radial-gradient(circle at 71% 44%, rgba(105, 67, 239, .2), transparent 27%),
    linear-gradient(150deg, #08070d 0%, #0d0a18 55%, #07070d 100%);
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  opacity: .36;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: clamp(68px, 6.3vw, 116px) clamp(68px, 6.3vw, 116px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 6%, black 25%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 6%, black 25%, black 80%, transparent 100%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  width: 80vw;
  aspect-ratio: 1;
  right: -32vw;
  top: -43vw;
  border: 1px solid rgba(128, 98, 255, .18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 9vw rgba(117,85,255,.018), 0 0 0 18vw rgba(117,85,255,.012);
}

#light-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.chapter-rail {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .18em;
  color: rgba(255,255,255,.36);
  transform: translate(-45%, -50%) rotate(-90deg);
}

.chapter-rail span:first-child {
  color: var(--cyan);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1560px;
  margin: 0 auto;
}

.hero-kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 10px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: .18em;
}

.hero-kicker {
  color: rgba(255,255,255,.56);
}

.hero-kicker > span[aria-hidden="true"] {
  width: 28px;
  height: 1px;
  flex: 0 0 28px;
  display: inline-block;
  background: var(--cyan);
}

.hero-title {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: clamp(26px, 5vh, 62px) 0 0;
  font-size: clamp(58px, 8.8vw, 154px);
  font-weight: 620;
  line-height: .84;
  letter-spacing: -.075em;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-light {
  margin-inline-start: clamp(0px, 7.7vw, 124px);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,.7);
}

.hero-title em {
  color: var(--paper-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.09em;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 0 rgba(8, 7, 13, .75), 0 0 42px rgba(136, 100, 255, .34);
}

.hero-bottom {
  position: relative;
  z-index: 5;
  width: min(550px, 44vw);
  margin: clamp(46px, 7vh, 84px) 0 0;
  margin-inline-start: 8.2vw;
}

.hero-description {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.5;
  letter-spacing: -.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.button {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px 0 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
  isolation: isolate;
  transition: color .4s, background .4s, border-color .4s, transform .4s var(--ease-out);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--cyan);
  transform: translateY(102%);
  transition: transform .5s var(--ease-out);
}

.button:hover::before {
  transform: translateY(0);
}

.button i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-style: normal;
}

.button-primary {
  color: white;
  background: var(--violet);
  box-shadow: 0 16px 54px rgba(86,54,218,.3);
}

.button-primary i {
  color: var(--ink);
  background: white;
}

.button-primary:hover {
  color: var(--ink);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 650;
}

.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}

.text-link:hover::after {
  transform: scaleX(.2);
}

.hero-object {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: absolute;
  z-index: 2;
  width: clamp(270px, 30vw, 520px);
  aspect-ratio: .82;
  right: -3.5vw;
  top: 45%;
  transform: translateY(-32%) perspective(1200px) rotateX(var(--hero-tilt-y)) rotateY(var(--hero-tilt-x));
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
}

.hero-orbit {
  position: absolute;
  inset: -16%;
  border: 1px solid rgba(145, 116, 255, .26);
  border-radius: 50%;
  transform: rotate(24deg) rotateX(65deg);
  box-shadow: 0 0 44px rgba(114, 80, 255, .08);
}

.orbit-two {
  inset: -30%;
  opacity: .42;
  transform: rotate(-18deg) rotateY(63deg);
}

.paper {
  position: absolute;
  width: 67%;
  aspect-ratio: .72;
  left: 50%;
  top: 50%;
  border-radius: 7px 20px 7px 7px;
  transform-origin: center;
  box-shadow: -28px 34px 80px rgba(0,0,0,.5);
}

.paper-back {
  background: #3b266d;
  transform: translate(-64%, -46%) rotate(-13deg) translateZ(-70px);
  opacity: .8;
}

.paper-middle {
  background: #7552e9;
  transform: translate(-43%, -52%) rotate(7deg) translateZ(-35px);
}

.paper-front {
  overflow: hidden;
  padding: 16%;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(233,231,241,.96)),
    white;
  transform: translate(-50%, -50%) rotate(-3deg) translateZ(0);
  animation: paper-float 6s var(--ease-soft) infinite;
}

@keyframes paper-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-1deg) translateY(-13px); }
}

.paper-fold {
  position: absolute;
  width: 22%;
  aspect-ratio: 1;
  right: 0;
  top: 0;
  background: linear-gradient(225deg, #0d0a18 49.3%, var(--cyan) 50%);
  filter: drop-shadow(-10px 10px 18px rgba(77,55,160,.22));
}

.paper-chip {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  color: white;
  background: var(--violet);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.paper-line {
  display: block;
  width: 70%;
  height: 5px;
  margin-top: 11px;
  border-radius: 99px;
  background: #bbb6c7;
}

.paper-line.line-wide {
  width: 92%;
  height: 13px;
  margin-top: 30px;
  background: #15121b;
}

.paper-image {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 14%;
  height: 31%;
  border-radius: 5px;
  background:
    radial-gradient(circle at 66% 28%, var(--cyan) 0 3%, transparent 4%),
    linear-gradient(140deg, #171321, #6c47e9 55%, #9f84ff);
}

.paper-selection {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 11%;
  height: 37%;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 18px rgba(129,234,255,.3);
}

.object-caption {
  position: absolute;
  inset-inline-end: 4%;
  bottom: -4%;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  color: rgba(255,255,255,.42);
}

.hero-proof {
  position: absolute;
  z-index: 4;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.13);
}

.hero-proof > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0 0;
  border-right: 1px solid rgba(255,255,255,.12);
}

.hero-proof > div:nth-child(n+2) {
  padding-left: 22px;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .16em;
}

.hero-proof span {
  color: rgba(255,255,255,.68);
  font-size: 10px;
}

html.static-marketing-route.js-motion .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.static-marketing-route.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.static-marketing-route.motion-failsafe .reveal {
  opacity: 1;
  transform: none;
}

.hero-title .reveal:nth-child(2) {
  --reveal-delay: 110ms;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .15em;
}

.section-index span {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
  font-size: 9px;
}

.section-index p {
  margin: 0;
}

.manifesto {
  position: relative;
  min-height: 980px;
  padding: clamp(90px, 12vw, 190px) var(--page-pad) 0;
  overflow: hidden;
}

.manifesto-copy {
  max-width: 1580px;
  margin: clamp(90px, 12vw, 180px) auto 0;
}

.manifesto-lead {
  width: max-content;
  margin: 0 7% 34px auto;
  color: var(--violet-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.6vw, 25px);
  font-style: italic;
}

.display-copy {
  margin: 0;
  font-size: clamp(60px, 10vw, 175px);
  font-weight: 620;
  line-height: .84;
  letter-spacing: -.078em;
}

.display-copy span {
  display: block;
}

.display-copy .outline {
  margin-left: clamp(0px, 8vw, 140px);
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(11,10,16,.76);
}

.manifesto-note {
  max-width: 480px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  margin: clamp(60px, 9vw, 130px) 6% 150px auto;
}

.manifesto-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 19px);
}

.note-rule {
  height: 1px;
  margin-top: 12px;
  background: var(--violet);
}

.kinetic-band {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  overflow: hidden;
  padding: 21px 0;
  color: white;
  background: var(--violet);
  transform: rotate(-2.4deg);
}

.kinetic-band > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(18px, 2.1vw, 34px);
  font-weight: 720;
  letter-spacing: -.035em;
  animation: marquee 20s linear infinite;
}

.kinetic-band i {
  color: var(--cyan);
  font-size: .65em;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.document-story {
  position: relative;
  height: 400vh;
  min-height: 2500px;
  color: white;
  background: #08070d;
}

.story-sticky {
  position: sticky;
  top: 0;
  min-height: 740px;
  height: 100svh;
  overflow: hidden;
  padding: clamp(90px, 10vh, 120px) var(--page-pad) 40px;
  isolation: isolate;
}

.story-backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(104,70,232,.23), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(89,220,255,.07), transparent 24%),
    #08070d;
}

.story-backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 68%);
  mask-image: radial-gradient(circle, black, transparent 68%);
}

.story-heading {
  position: relative;
  z-index: 4;
}

.story-heading .section-label {
  color: var(--cyan);
}

.story-heading h2 {
  margin: 24px 0 0;
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 580;
  line-height: .95;
  letter-spacing: -.06em;
}

.story-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.55);
}

.story-document {
  --story-progress: 0;
  position: absolute;
  z-index: 2;
  width: clamp(270px, 28vw, 460px);
  aspect-ratio: .74;
  left: 52%;
  top: 52%;
  transform: translate(-50%, -50%) perspective(1300px) rotateX(calc(8deg - var(--story-progress) * 18deg)) rotateY(calc(-18deg + var(--story-progress) * 34deg)) rotateZ(calc(-4deg + var(--story-progress) * 7deg)) scale(calc(.88 + var(--story-progress) * .14));
  transform-style: preserve-3d;
  transition: filter .5s;
}

.doc-shadow {
  position: absolute;
  z-index: -1;
  width: 110%;
  height: 32%;
  left: -5%;
  bottom: -23%;
  border-radius: 50%;
  background: rgba(54,27,142,.45);
  filter: blur(38px);
  transform: rotateX(80deg);
}

.doc-core,
.doc-layer {
  position: absolute;
  inset: 0;
  border-radius: 7px 24px 7px 7px;
  transition: transform .85s var(--ease-out), opacity .65s, filter .65s;
  backface-visibility: hidden;
}

.doc-core {
  z-index: 8;
  overflow: hidden;
  padding: 15%;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #eae7f0);
  box-shadow: -45px 58px 100px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.8);
}

.core-fold {
  position: absolute;
  width: 20%;
  aspect-ratio: 1;
  right: 0;
  top: 0;
  background: linear-gradient(225deg, #08070d 49%, var(--violet-bright) 50%);
}

.doc-core small {
  display: block;
  margin-bottom: 20%;
  color: var(--violet-deep);
  font-size: clamp(7px, .6vw, 10px);
  font-weight: 800;
  letter-spacing: .13em;
}

.doc-core strong {
  display: block;
  font-size: clamp(25px, 2.7vw, 46px);
  line-height: .88;
  letter-spacing: -.07em;
}

.core-line {
  display: block;
  width: 76%;
  height: 8px;
  margin-top: 16%;
  border-radius: 99px;
  background: #b6b1bf;
}

.core-line.short {
  width: 48%;
  margin-top: 5%;
}

.core-cursor {
  position: absolute;
  right: 17%;
  bottom: 18%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--violet);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 30px rgba(117,85,255,.55);
  animation: cursor-pulse 2.4s ease-in-out infinite;
}

@keyframes cursor-pulse {
  50% { transform: scale(1.1); box-shadow: 0 0 45px rgba(129,234,255,.46); }
}

.doc-layer {
  display: block;
  padding: 8%;
  opacity: 0;
  border: 1px solid rgba(142,112,255,.65);
  background: rgba(102,66,217,.11);
  backdrop-filter: blur(3px);
}

.doc-layer > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--cyan);
}

.doc-text i {
  display: block;
  width: 72%;
  height: 6px;
  margin-top: 18px;
  background: rgba(129,234,255,.55);
  box-shadow: 0 0 14px rgba(129,234,255,.22);
}

.doc-text i:nth-child(3) { width: 58%; }
.doc-text i:nth-child(4) { width: 81%; }

.doc-image i {
  position: absolute;
  inset: 27% 13% 14%;
  border: 1px solid rgba(129,234,255,.7);
  background: linear-gradient(135deg, rgba(126,85,255,.22), rgba(129,234,255,.09));
}

.doc-form i {
  display: block;
  width: 84%;
  height: 15%;
  margin-top: 16%;
  border: 1px solid rgba(129,234,255,.6);
  border-radius: 4px;
}

.document-story[data-story-scene="1"] .doc-core {
  transform: translateZ(60px);
}

.document-story[data-story-scene="1"] .doc-source,
.document-story[data-story-scene="2"] .doc-source,
.document-story[data-story-scene="3"] .doc-source {
  opacity: .45;
  transform: translate3d(-40%, -3%, -80px) rotateY(-14deg);
}

.document-story[data-story-scene="1"] .doc-image,
.document-story[data-story-scene="2"] .doc-image,
.document-story[data-story-scene="3"] .doc-image {
  opacity: .8;
  transform: translate3d(-20%, -1%, -35px) rotateY(-7deg);
}

.document-story[data-story-scene="1"] .doc-text,
.document-story[data-story-scene="2"] .doc-text,
.document-story[data-story-scene="3"] .doc-text {
  opacity: .9;
  transform: translate3d(22%, 1%, 25px) rotateY(7deg);
}

.document-story[data-story-scene="1"] .doc-form,
.document-story[data-story-scene="2"] .doc-form,
.document-story[data-story-scene="3"] .doc-form {
  opacity: .7;
  transform: translate3d(42%, 3%, 55px) rotateY(12deg);
}

.document-story[data-story-scene="2"] .doc-core {
  transform: translate3d(-10%, 0, 95px) rotateY(-7deg);
  box-shadow: -45px 58px 120px rgba(72,39,173,.42);
}

.document-story[data-story-scene="2"] .doc-text {
  opacity: 1;
  border-color: var(--cyan);
  filter: drop-shadow(0 0 24px rgba(129,234,255,.22));
  transform: translate3d(26%, -3%, 110px) rotateY(5deg);
}

.document-story[data-story-scene="3"] .doc-layer {
  opacity: 0;
  transform: translate3d(0, 0, -30px) scale(.9);
}

.document-story[data-story-scene="3"] .doc-core {
  transform: translate3d(0, 0, 40px) rotateY(5deg);
  box-shadow: -45px 58px 130px rgba(88,53,213,.42), 0 0 0 1px rgba(129,234,255,.24);
}

.story-chapters {
  position: absolute;
  z-index: 4;
  width: min(32vw, 470px);
  right: var(--page-pad);
  top: 50%;
  transform: translateY(-20%);
}

.story-chapter {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity .55s var(--ease-soft), transform .65s var(--ease-out);
}

.story-chapter.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story-chapter > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.story-chapter h3 {
  margin: 20px 0 18px;
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.06em;
}

.story-chapter p {
  max-width: 410px;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: clamp(14px, 1.15vw, 18px);
}

.story-progress {
  position: absolute;
  z-index: 5;
  right: var(--page-pad);
  bottom: 38px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -.06em;
}

.story-progress small {
  color: rgba(255,255,255,.35);
  font-size: 10px;
  letter-spacing: .04em;
}

.story-progress-line {
  width: min(20vw, 260px);
  height: 1px;
  margin-right: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.15);
}

.story-progress-line i {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
}

.tools {
  padding: clamp(100px, 11vw, 170px) var(--page-pad);
}

.tools-heading,
.plans-heading {
  max-width: 1580px;
  display: grid;
  grid-template-columns: 1.8fr .65fr;
  gap: 8vw;
  align-items: end;
  margin: clamp(70px, 9vw, 140px) auto 80px;
}

.tools-heading h2,
.plans-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7.6vw, 126px);
  font-weight: 610;
  line-height: .86;
  letter-spacing: -.075em;
}

.tools-heading h2 em,
.plans-heading h2 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.tools-heading p,
.plans-heading p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.25vw, 19px);
}

.tool-grid {
  max-width: 1580px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(14px, 1.5vw, 26px);
  margin: 0 auto;
}

.tool-card {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto minmax(140px, 1fr) auto auto;
  padding: clamp(24px, 3vw, 48px);
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 34px);
  isolation: isolate;
}

.tool-card > .tool-number {
  grid-row: 1;
  position: relative;
  z-index: 2;
}

.tool-card > div:not(.tool-art) {
  grid-row: 3;
  position: relative;
  z-index: 2;
  align-self: end;
}

.tool-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255,255,255,.23), transparent 42%);
  opacity: 0;
  transition: opacity .45s;
}

.tool-card:hover::after {
  opacity: 1;
}

.tool-card-violet {
  grid-row: span 2;
  min-height: 800px;
  color: white;
  background: linear-gradient(145deg, #5531dc, #8768ff);
}

.tool-card-ink {
  color: white;
  background: #121018;
}

.tool-card-blue {
  color: var(--ink);
  background: linear-gradient(145deg, #b5f3ff, #75dff7);
}

.tool-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.tool-card h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 66px);
  font-weight: 620;
  line-height: .9;
  letter-spacing: -.065em;
}

.tool-card p {
  max-width: 430px;
  margin: 0;
  color: currentColor;
  font-size: clamp(14px, 1.15vw, 18px);
  opacity: .76;
}

.tool-card-violet p,
.tool-card-ink p {
  opacity: .9;
}

.tool-arrow {
  position: static;
  z-index: 2;
  grid-row: 4;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-top: 22px;
  transition: transform .55s var(--ease-out), background .35s, color .35s;
}

.tool-card:hover .tool-arrow {
  transform: rotate(45deg);
  color: var(--ink);
  background: white;
}

.tool-art {
  position: absolute;
  pointer-events: none;
}

.tool-art-edit {
  width: 63%;
  aspect-ratio: .78;
  right: -5%;
  top: 17%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  transform: rotate(8deg);
  box-shadow: -35px 42px 70px rgba(36,18,95,.22);
}

.tool-art-edit i {
  width: 65%;
  height: 8px;
  display: block;
  margin: 17% 14% -12%;
  background: rgba(255,255,255,.48);
}

.tool-art-edit b {
  position: absolute;
  left: -10px;
  bottom: 22%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--violet);
  background: white;
  border-radius: 50%;
  font-weight: 400;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.tool-art-pages {
  width: 240px;
  height: 210px;
  right: 5%;
  top: 14%;
}

.tool-art-pages i {
  position: absolute;
  width: 115px;
  height: 158px;
  right: 20px;
  top: 14px;
  border: 1px solid rgba(255,255,255,.4);
  background: #24202d;
  transform: rotate(10deg);
}

.tool-art-pages i:nth-child(2) {
  right: 66px;
  top: 28px;
  background: #5c3ed0;
  transform: rotate(-4deg);
}

.tool-art-pages i:nth-child(3) {
  right: 106px;
  top: 41px;
  background: #f4f1ea;
  transform: rotate(-14deg);
}

.tool-art-ocr {
  width: 48%;
  right: 7%;
  top: 19%;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.tool-art-ocr i {
  display: block;
  width: 90%;
  height: 7px;
  margin-top: 17px;
  background: rgba(11,10,16,.27);
}

.tool-art-ocr i:nth-of-type(2) { width: 72%; }
.tool-art-ocr i:nth-of-type(3) { width: 82%; }

.tool-art-ocr b {
  position: absolute;
  right: 0;
  top: -28px;
  font-size: 45px;
  letter-spacing: -.07em;
}

.studio {
  position: relative;
  min-height: 1120px;
  overflow: hidden;
  padding: clamp(105px, 11vw, 170px) var(--page-pad);
  background:
    radial-gradient(circle at 50% 100%, rgba(103,70,233,.35), transparent 37%),
    #09080e;
}

.studio-aura {
  position: absolute;
  width: 56vw;
  aspect-ratio: 1;
  left: 22%;
  bottom: -40vw;
  border: 1px solid rgba(129,234,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(117,85,255,.18), 0 0 0 8vw rgba(117,85,255,.02), 0 0 0 16vw rgba(117,85,255,.016);
}

.studio-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.studio-copy .section-label {
  justify-content: center;
  color: var(--cyan);
}

.studio-copy h2 {
  margin: 30px 0 26px;
  font-size: clamp(48px, 7.2vw, 116px);
  font-weight: 610;
  line-height: .87;
  letter-spacing: -.075em;
}

.studio-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.56);
}

.studio-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 0 auto;
  color: rgba(255,255,255,.5);
  font-size: clamp(15px, 1.2vw, 19px);
}

.button-outline {
  margin-top: 30px;
  border-color: rgba(255,255,255,.26);
}

.button-outline:hover {
  color: var(--ink);
  border-color: var(--cyan);
}

.button-outline i {
  color: var(--ink);
  background: white;
}

.studio-window {
  position: relative;
  z-index: 3;
  width: min(1220px, 92vw);
  aspect-ratio: 1.7;
  margin: 90px auto -8%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: clamp(14px, 2vw, 28px);
  background: #121017;
  box-shadow: 0 60px 180px rgba(0,0,0,.62), 0 0 0 10px rgba(255,255,255,.025);
}

.window-top {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-size: 10px;
  color: rgba(255,255,255,.55);
}

.mini-brand svg {
  width: 25px;
}

.window-file i {
  color: #74e7c4;
  font-style: normal;
}

.window-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.window-actions i {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
}

.window-actions b {
  padding: 7px 13px;
  color: white;
  background: var(--violet);
  border-radius: 7px;
  font-size: 8px;
}

.window-body {
  height: calc(100% - 58px);
  display: grid;
  grid-template-columns: 56px 150px 1fr 180px;
}

.window-toolbar,
.window-pages,
.window-inspector {
  border-right: 1px solid rgba(255,255,255,.07);
  background: #0d0c12;
}

.window-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}

.window-toolbar i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  font-size: 9px;
  font-style: normal;
}

.window-toolbar i:first-child {
  color: white;
  background: var(--violet);
}

.window-pages {
  padding: 18px;
}

.window-pages small,
.window-inspector small {
  color: rgba(255,255,255,.38);
  font-size: 6px;
  letter-spacing: .15em;
}

.window-pages i {
  display: block;
  width: 78px;
  height: 106px;
  margin: 14px auto;
  border: 1px solid transparent;
  background: #dedbe2;
}

.window-pages i:first-of-type {
  border-color: var(--violet-bright);
  box-shadow: 0 0 0 2px rgba(117,85,255,.25);
}

.window-canvas {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #1b1921;
  background-size: 32px 32px;
}

.canvas-page {
  position: relative;
  width: min(58%, 390px);
  aspect-ratio: .72;
  padding: 10%;
  color: var(--ink);
  background: #f9f7f2;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

.canvas-label {
  color: var(--violet);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .14em;
}

.canvas-page strong {
  display: block;
  margin-top: 15%;
  font-size: clamp(16px, 2.1vw, 32px);
  line-height: .9;
  letter-spacing: -.07em;
}

.canvas-paragraph {
  width: 70%;
  height: 5px;
  display: block;
  margin-top: 14%;
  background: #bbb7c0;
}

.canvas-paragraph.short {
  width: 45%;
  margin-top: 4%;
}

.canvas-image {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  height: 28%;
  overflow: hidden;
  background: linear-gradient(135deg, #17131e, #7250ea);
}

.canvas-image i {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  right: -16%;
  bottom: -50%;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.canvas-selection {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  height: 32%;
  border: 1px solid var(--cyan);
}

.canvas-selection b {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--violet);
  background: white;
}

.canvas-selection b:nth-child(1) { left: -3px; top: -3px; }
.canvas-selection b:nth-child(2) { right: -3px; top: -3px; }
.canvas-selection b:nth-child(3) { right: -3px; bottom: -3px; }
.canvas-selection b:nth-child(4) { left: -3px; bottom: -3px; }

.window-inspector {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,.07);
}

.window-inspector span {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.38);
  font-size: 7px;
}

.window-inspector span b {
  color: rgba(255,255,255,.7);
}

.window-inspector i {
  height: 70px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: linear-gradient(135deg, #7250ff 0 35%, #8cecff 35% 65%, #ff7467 65%);
}

.privacy {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
  padding: clamp(100px, 12vw, 190px) var(--page-pad);
  overflow: hidden;
  background: #06070b;
}

.privacy-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(129,234,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129,234,255,.09) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 27% 50%, black, transparent 42%);
  mask-image: radial-gradient(circle at 27% 50%, black, transparent 42%);
}

.privacy-lockup {
  position: relative;
  width: min(70%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
}

.privacy-lockup::before {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(113,75,241,.32), transparent 67%);
  filter: blur(12px);
}

.privacy-lockup svg {
  position: relative;
  width: 36%;
  filter: drop-shadow(0 0 35px rgba(129,234,255,.25));
}

.privacy-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(129,234,255,.26);
  border-radius: 50%;
  animation: privacy-spin 16s linear infinite;
}

.privacy-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(155,124,255,.28);
  border-radius: 50%;
  content: "";
}

.privacy-orbit span {
  position: absolute;
  left: 50%;
  top: -6px;
  padding: 2px 9px;
  color: var(--cyan);
  background: #06070b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

.privacy-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 12%;
  bottom: 16%;
  border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 22px var(--violet);
}

@keyframes privacy-spin {
  to { transform: rotate(360deg); }
}

.privacy-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.privacy-copy .section-label {
  color: var(--cyan);
}

.privacy-copy h2 {
  margin: 30px 0;
  font-size: clamp(50px, 6.4vw, 106px);
  font-weight: 610;
  line-height: .88;
  letter-spacing: -.075em;
}

.privacy-copy h2 em {
  color: var(--violet-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.privacy-copy > p:not(.section-label) {
  max-width: 550px;
  color: rgba(255,255,255,.48);
  font-size: clamp(15px, 1.25vw, 19px);
}

.privacy-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 54px 0 30px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.privacy-facts > div {
  padding: 24px 12px 24px 0;
  border-right: 1px solid rgba(255,255,255,.14);
}

.privacy-facts > div:nth-child(n+2) {
  padding-left: 18px;
}

.privacy-facts > div:last-child {
  border-right: 0;
}

.privacy-facts strong {
  display: block;
  color: var(--cyan);
  font-size: 24px;
  font-weight: 580;
}

.privacy-facts span {
  color: rgba(255,255,255,.68);
  font-size: 9px;
}

.light-link {
  color: rgba(255,255,255,.72);
}

.plans {
  padding: clamp(110px, 12vw, 185px) var(--page-pad);
}

.plan-grid {
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 60px);
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 34px);
}

.plan-free {
  border: 1px solid rgba(11,10,16,.18);
  background: var(--paper-bright);
}

.plan-pro {
  color: white;
  background: #111019;
}

.plan-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -210px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,234,255,.42), rgba(117,85,255,.22) 36%, transparent 70%);
  filter: blur(8px);
}

.plan-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.plan-top small {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 7px;
}

.plan-card h3 {
  position: relative;
  margin: 110px 0 16px;
  font-size: clamp(50px, 6vw, 96px);
  font-weight: 600;
  line-height: .85;
  letter-spacing: -.075em;
}

.plan-card h3.plan-price {
  font-size: clamp(48px, 5.2vw, 84px);
  letter-spacing: -.065em;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .plan-card h3.plan-price {
    font-size: clamp(40px, 12vw, 58px);
    white-space: normal;
  }
}

.plan-card > p {
  position: relative;
  max-width: 460px;
  color: currentColor;
  opacity: .55;
}

.plan-card ul {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 46px 0 34px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: currentColor;
  font-size: 13px;
  opacity: .72;
}

.plan-card li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(117,85,255,.12);
}

.plan-pro li::before {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(129,234,255,.1);
}

.plan-card .button {
  position: static;
  width: 100%;
  margin-top: auto;
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-dark i,
.button-light i {
  color: var(--ink);
  background: var(--cyan);
}

.button-dark:hover {
  color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: white;
}

.button-light:hover {
  color: var(--ink);
}

.faq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  padding: 50px var(--page-pad) clamp(110px, 13vw, 200px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq-heading .section-label {
  color: var(--violet-deep);
}

.faq-heading h2 {
  margin-top: 30px;
  font-size: clamp(44px, 5.6vw, 88px);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 4px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.65vw, 25px);
  font-weight: 590;
  letter-spacing: -.035em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span:first-child {
  min-width: 0;
  flex: 1 1 auto;
  text-align: start;
}

.faq-list summary > span:last-child {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-list summary > span:last-child::before,
.faq-list summary > span:last-child::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .35s;
}

.faq-list summary > span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > span:last-child::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 630px;
  margin: -6px 50px 32px 4px;
  color: var(--text-muted);
  font-size: 15px;
}

.finale {
  position: relative;
  min-height: max(760px, 90svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 110px var(--page-pad);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 100%, rgba(117,85,255,.26), transparent 44%),
    #08070d;
}

.finale::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 28%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 28%, transparent);
}

.finale-beam {
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 120%;
  top: -10%;
  left: calc(50% - 95px);
  background: linear-gradient(90deg, transparent, rgba(129,234,255,.1), transparent);
  filter: blur(18px);
  transform: rotate(14deg);
}

.finale .section-label {
  color: var(--cyan);
}

.finale h2 {
  margin: 34px 0 58px;
  font-size: clamp(62px, 10.8vw, 170px);
  font-weight: 620;
  line-height: .82;
  letter-spacing: -.082em;
}

.finale h2 span {
  display: block;
}

.outline-dark {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.62);
}

.finale-action {
  position: relative;
  z-index: 2;
  width: clamp(170px, 15vw, 230px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: clamp(170px, 15vw, 230px);
  margin-bottom: 0;
  padding: 26px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: 0 0 80px rgba(129,234,255,.2);
  transition: transform .55s var(--ease-out), background .35s;
}

.finale-action:hover {
  background: white;
  transform: rotate(-6deg) scale(1.04);
}

.finale-action i {
  font-size: 22px;
  font-style: normal;
}

.finale-mark {
  position: absolute;
  width: clamp(480px, 55vw, 900px);
  right: -22%;
  bottom: -49%;
  opacity: .035;
  transform: rotate(-14deg);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 180px var(--page-pad) 32px;
  color: white;
  background: #08070d;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-brand > p {
  margin: 40px 0 0;
  color: rgba(255,255,255,.42);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.04em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav span {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.footer-nav a {
  width: max-content;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  transition: color .25s, transform .25s;
}

.footer-nav a:hover {
  color: white;
  transform: translateX(4px);
}

/* Os links do rodape tem 20px de altura e ficam a 13px um do outro: um mouse
   acerta isso sem esforco, um polegar erra. Em ponteiro grosso a area sobe
   para os 44px recomendados sem mexer no tamanho do texto, e o espacamento
   encolhe na mesma medida para o bloco nao esticar. `pointer: coarse` e a
   mesma familia de consulta que o resto do arquivo ja usa para separar toque
   de mouse, entao o desktop, mesmo em janela estreita, fica intacto. */
@media (pointer: coarse) {
  .footer-nav > div {
    gap: 4px;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.62);
  font-size: 9px;
  letter-spacing: .08em;
}

@media (max-width: 1180px) {
  :root {
    --page-pad: clamp(22px, 3.4vw, 44px);
  }

  .main-nav {
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(58px, 9vw, 108px);
  }

  .hero-object {
    right: -4vw;
    opacity: .84;
  }

  .story-document {
    left: 48%;
    width: min(31vw, 390px);
  }

  .story-chapters {
    width: 33vw;
  }

  .window-body {
    grid-template-columns: 54px 120px 1fr 145px;
  }
}

@media (max-width: 1040px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 89;
    top: calc(var(--header-height) + 10px);
    inset-inline: var(--page-pad);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: calc(100svh - var(--header-height) - 28px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    color: white;
    background: rgba(8, 7, 13, .96);
    box-shadow: 0 24px 90px rgba(0,0,0,.46);
    backdrop-filter: blur(24px) saturate(145%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transform-origin: top;
    transition: opacity .25s, visibility .25s, transform .32s var(--ease-out);
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 680;
  }

  .mobile-nav a:focus-visible,
  .mobile-nav a:hover {
    color: white;
    border-color: rgba(129,234,255,.52);
    background: rgba(129,234,255,.07);
  }

  .mobile-nav .mobile-nav-cta {
    grid-column: 1 / -1;
    color: var(--ink);
    border-color: var(--cyan);
    background: var(--cyan);
  }

}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  body::before,
  .chapter-rail {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .hero-title {
    max-width: 780px;
    font-size: clamp(58px, 11.4vw, 95px);
  }

  .hero-title .title-light {
    margin-left: 0;
  }

  .hero-bottom {
    width: min(620px, 100%);
    margin-left: 0;
    margin-inline-start: 0;
  }

  .hero-object {
    position: relative;
    width: min(62vw, 390px);
    right: auto;
    top: auto;
    margin: 58px 0 24px auto;
    opacity: .82;
    transform: perspective(1100px) rotateX(2deg) rotateY(6deg);
  }

  html[dir="rtl"] .hero-object {
    left: auto;
    margin: 58px auto 24px 0;
    transform: perspective(1100px) rotateX(2deg) rotateY(-6deg);
  }

  .hero-proof {
    position: static;
    margin-top: 34px;
  }

  .hero-proof > div {
    display: block;
  }

  .hero-proof span {
    display: block;
    margin-top: 4px;
  }

  .manifesto {
    min-height: 800px;
  }

  .manifesto-note {
    margin-right: 0;
  }

  .document-story {
    height: 350vh;
  }

  .story-heading h2 {
    font-size: 48px;
  }

  .story-document {
    left: 36%;
    top: 54%;
    width: min(42vw, 350px);
  }

  .story-chapters {
    width: 42vw;
    right: var(--page-pad);
    top: 52%;
  }

  .story-chapter h3 {
    font-size: 34px;
  }

  .tools-heading,
  .plans-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tools-heading p,
  .plans-heading p {
    max-width: 530px;
  }

  .tool-card {
    min-height: 480px;
  }

  .tool-card-violet {
    min-height: 730px;
  }

  .studio {
    min-height: 980px;
  }

  .studio-window {
    width: 105vw;
    margin-left: -8vw;
  }

  .window-body {
    grid-template-columns: 48px 100px 1fr;
  }

  .window-inspector {
    display: none;
  }

  .privacy {
    gap: 4vw;
  }

  .privacy-lockup {
    width: 86%;
  }

  .privacy-facts {
    grid-template-columns: 1fr;
  }

  .privacy-facts > div,
  .privacy-facts > div:nth-child(n+2) {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .privacy-facts > div:last-child {
    border-bottom: 0;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 14px;
  }

  .site-header {
    gap: 12px;
  }

  .header-actions {
    gap: 5px;
  }

  .account-actions {
    padding: 2px;
  }

  .account-link {
    min-height: 34px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .language-picker {
    width: 42px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 31px;
  }

  .brand-word {
    font-size: 18px;
  }

  .hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 50px;
  }

  .hero-kicker {
    max-width: 250px;
    flex-wrap: wrap;
    gap: 7px;
  }

  .hero-title {
    margin-top: 28px;
    font-size: clamp(42px, 11.5vw, 68px);
    line-height: .88;
  }

  .hero-title .title-light {
    margin-top: 6px;
  }

  .hero-object {
    position: relative;
    width: min(72vw, 340px);
    right: auto;
    top: auto;
    margin: 56px -9vw 24px auto;
    opacity: .78;
    transform: perspective(1000px) rotateX(2deg) rotateY(-5deg);
  }

  html[dir="rtl"] .hero-object {
    left: auto;
    margin: 56px auto 24px -9vw;
    transform: perspective(1000px) rotateX(2deg) rotateY(5deg);
  }

  .hero-bottom {
    width: 100%;
    margin-top: 42px;
    margin-inline-start: 0;
  }

  .hero-description {
    max-width: 285px;
    font-size: 15px;
    text-shadow: 0 2px 18px #08070d;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 22px;
  }

  .button {
    min-height: 54px;
  }

  .hero-proof {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }

  .hero-proof > div,
  .hero-proof > div:nth-child(n+2) {
    padding: 13px 8px 0 0;
  }

  .hero-proof > div:nth-child(n+2) {
    padding-left: 8px;
  }

  .hero-proof span {
    line-height: 1.25;
  }

  .manifesto {
    min-height: 720px;
    padding-top: 90px;
  }

  .manifesto-copy {
    margin-top: 80px;
  }

  .manifesto-lead {
    margin: 0 0 24px;
  }

  .display-copy {
    font-size: clamp(48px, 15vw, 74px);
    line-height: .9;
  }

  .display-copy .outline {
    margin: 8px 0 0;
  }

  .manifesto-note {
    grid-template-columns: 35px 1fr;
    margin: 70px 0 120px auto;
  }

  .kinetic-band {
    left: -10%;
    right: -10%;
  }

  .document-story {
    height: auto;
    min-height: 0;
    padding: 90px 20px;
    overflow-x: clip;
  }

  .story-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .story-backdrop {
    inset: -90px -20px;
  }

  .story-heading h2 {
    font-size: 44px;
  }

  .story-document {
    position: relative;
    left: auto;
    top: auto;
    width: min(78vw, 330px);
    margin: 80px auto 100px;
    transform: perspective(1000px) rotateX(4deg) rotateY(-10deg) rotateZ(-3deg);
  }

  .document-story .doc-core {
    transform: translateZ(40px);
  }

  .document-story .doc-source {
    opacity: .32;
    transform: translate3d(-17%, -1%, -55px) rotateY(-8deg);
  }

  .document-story .doc-image {
    opacity: .55;
    transform: translate3d(-8%, 0, -20px) rotateY(-4deg);
  }

  .document-story .doc-text {
    opacity: .72;
    transform: translate3d(9%, 0, 25px) rotateY(4deg);
  }

  .document-story .doc-form {
    opacity: .5;
    transform: translate3d(17%, 1%, 50px) rotateY(8deg);
  }

  .story-chapters {
    position: static;
    width: auto;
    transform: none;
  }

  .story-chapter,
  .story-chapter.is-active {
    position: relative;
    opacity: 1;
    transform: none;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    pointer-events: auto;
  }

  .story-chapter h3 {
    margin-top: 14px;
    font-size: 36px;
  }

  .story-progress {
    display: none;
  }

  .tools {
    padding-top: 95px;
  }

  .tools-heading,
  .plans-heading {
    margin: 65px auto 50px;
  }

  .tools-heading h2,
  .plans-heading h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .tool-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .tool-card-violet {
    min-height: 540px;
  }

  .tool-art-edit {
    width: 69%;
    top: 17%;
  }

  .studio {
    min-height: 820px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .studio-copy h2 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .studio-window {
    width: 165vw;
    margin-top: 70px;
    margin-left: -38vw;
  }

  .privacy {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 80px;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .privacy-lockup {
    width: min(76vw, 350px);
    grid-row: 2;
  }

  .privacy-copy h2 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .privacy-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy-facts > div,
  .privacy-facts > div:nth-child(n+2) {
    padding: 15px 7px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 0;
  }

  .privacy-facts > div:last-child {
    border-right: 0;
  }

  .plan-card {
    min-height: 650px;
  }

  .plan-card h3 {
    margin-top: 80px;
  }

  .faq {
    padding-top: 20px;
  }

  .faq-heading h2 {
    font-size: 50px;
  }

  .faq-list summary {
    padding: 25px 0;
  }

  .finale {
    min-height: 760px;
  }

  .finale h2 {
    font-size: clamp(58px, 17vw, 84px);
    margin-bottom: 50px;
  }

  .finale-action {
    width: 170px;
    margin-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 130px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: 55px;
  }
}

@media (max-width: 520px) {
  .brand-word {
    display: none;
  }

  .site-header {
    gap: 8px;
  }

  .mobile-nav {
    inset-inline: 14px;
  }
}

@media (max-width: 420px) {
  .brand-word {
    display: none;
  }

  .account-link {
    padding-inline: 7px;
    font-size: 9px;
  }
}

/* ================================================================
   DELUMA OPENING V2
   Compact intro curtain inspired by the StromLogic rhythm. The lamp
   creates the reveal; the brand remains a balanced signature, never
   a full-screen graphic.
   ================================================================ */

.deluma-opening.deluma-opening {
  display: grid;
  place-items: center;
  background: #040207 !important;
  animation: delumaOpeningV2Exit .72s cubic-bezier(.76, 0, .24, 1) 3.18s forwards;
}

.deluma-opening.deluma-opening::before {
  z-index: 7;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 16%, rgba(0, 0, 0, .34) 58%, rgba(0, 0, 0, .86) 110%);
}

.deluma-opening.deluma-opening::after {
  opacity: .085;
}

.deluma-opening .deluma-opening__room {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px) 50% 0 / min(14vw, 190px) 100%,
    linear-gradient(180deg, #07040b 0%, #040207 75%, #0a0610 75%, #050308 100%);
}

.deluma-opening .deluma-opening__room::after {
  bottom: -26%;
  opacity: .42;
}

.deluma-opening .deluma-opening__wall-glow {
  top: 17%;
  width: min(720px, 84vw);
  height: 66%;
  background: radial-gradient(ellipse at 50% 28%, rgba(255, 245, 210, .16), rgba(139, 92, 246, .11) 34%, transparent 70%);
  filter: blur(32px);
  animation: delumaOpeningV2Ambient 3.18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening .deluma-opening__floor-glow {
  bottom: -21%;
  width: min(700px, 94vw);
  height: 38%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, .2), rgba(34, 211, 238, .045) 44%, transparent 70%);
  filter: blur(22px);
  animation: delumaOpeningV2Floor 3.18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening .deluma-opening__light-cone {
  top: 19%;
  width: min(710px, 94vw);
  height: 76%;
  background:
    linear-gradient(90deg, transparent, rgba(154, 113, 255, .08) 20%, rgba(255, 248, 222, .27) 50%, rgba(34, 211, 238, .055) 80%, transparent),
    linear-gradient(180deg, rgba(255, 249, 225, .28), rgba(139, 92, 246, .08) 52%, transparent 91%);
  clip-path: polygon(46.6% 0, 53.4% 0, 100% 100%, 0 100%);
  filter: blur(4px);
  animation: delumaOpeningV2Light 3.18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening .deluma-opening__light-core {
  top: 18%;
  width: min(410px, 64vw);
  height: 67%;
  background: radial-gradient(ellipse at 50% 2%, rgba(255, 251, 227, .52), rgba(195, 170, 255, .12) 34%, transparent 74%);
  filter: blur(20px);
  animation: delumaOpeningV2Core 3.18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening .deluma-opening__lamp {
  top: -62px;
  width: 178px;
  height: 238px;
  transform: translateX(-50%) scale(.82);
  animation: delumaOpeningV2Lamp .82s cubic-bezier(.2, .82, .2, 1) both;
}

.deluma-opening .deluma-opening__wire {
  height: 106px;
}

.deluma-opening .deluma-opening__cap {
  top: 99px;
}

.deluma-opening .deluma-opening__shade {
  top: 116px;
  left: 14px;
  width: 150px;
  height: 70px;
}

.deluma-opening .deluma-opening__shade::after {
  animation: delumaOpeningV2Shade 3.18s ease forwards;
}

.deluma-opening .deluma-opening__bulb {
  top: 171px;
  left: calc(50% - 13px);
  width: 26px;
  height: 21px;
  animation: delumaOpeningV2Bulb 3.18s ease forwards;
}

.deluma-opening .deluma-opening__cord {
  top: 144px;
  left: calc(50% + 49px);
  height: 88px;
  animation: delumaOpeningV2Cord 3.18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening .deluma-opening__reveal {
  z-index: 5;
  top: 56%;
  display: flex;
  width: min(560px, calc(100vw - 40px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  text-align: center;
  transform: translate(-50%, -44%) scale(.96);
  animation: delumaOpeningV2Brand 3.18s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening .deluma-opening__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.deluma-opening .deluma-opening__mark {
  width: 72px !important;
  height: 68px !important;
  max-width: 72px !important;
  max-height: 68px !important;
  flex: 0 0 72px;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, .3));
  animation: delumaOpeningV2Mark 1.15s ease-in-out 1.35s infinite alternate;
}

.deluma-opening .deluma-opening__word {
  margin: 0;
  color: #fffdf9;
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 760;
  line-height: .95;
  letter-spacing: -.068em;
  white-space: nowrap;
}

.deluma-opening .deluma-opening__word span {
  color: #a980ff;
  font-weight: 540;
}

.deluma-opening .deluma-opening__tagline {
  margin: 20px 0 0;
  color: rgba(237, 230, 249, .7);
  font-size: clamp(.66rem, 1vw, .8rem);
  font-weight: 650;
  letter-spacing: .19em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.deluma-opening .deluma-opening__pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}

.deluma-opening .deluma-opening__pulse i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 14px rgba(139, 92, 246, .62);
  animation: delumaOpeningV2Dot .8s ease-in-out infinite alternate;
}

.deluma-opening .deluma-opening__pulse i:nth-child(2) {
  background: #a980ff;
  animation-delay: .12s;
}

.deluma-opening .deluma-opening__pulse i:nth-child(3) {
  background: #5de2ff;
  box-shadow: 0 0 14px rgba(34, 211, 238, .54);
  animation-delay: .24s;
}

.deluma-opening .deluma-opening__timeline {
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(22px, 4vh, 42px);
  left: clamp(20px, 4vw, 64px);
  opacity: .38;
}

.deluma-opening .deluma-opening__timeline span {
  animation: delumaOpeningTimeline 3.18s linear forwards;
}

.deluma-opening .deluma-opening__skip {
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 42px);
  min-height: 42px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, .13);
  background: rgba(13, 9, 20, .5);
  font-size: .68rem;
}

.deluma-opening .deluma-opening__dust {
  animation: delumaOpeningV2Dust 3.18s ease forwards;
}

.deluma-opening.is-skipping {
  animation: delumaOpeningSkip .4s cubic-bezier(.55, 0, 1, .45) forwards !important;
}

@keyframes delumaOpeningV2Exit {
  0% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes delumaOpeningV2Lamp {
  0% { opacity: 0; transform: translate(-50%, -24px) scale(.82) rotate(1.8deg); }
  68% { opacity: 1; transform: translate(-50%, 3px) scale(.82) rotate(-.5deg); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(.82) rotate(0); }
}

@keyframes delumaOpeningV2Cord {
  0%, 18% { transform: translateY(0); }
  27% { transform: translateY(24px); }
  35% { transform: translateY(2px); }
  43%, 100% { transform: translateY(0); }
}

@keyframes delumaOpeningV2Bulb {
  0%, 26% { opacity: .08; box-shadow: 0 0 0 rgba(255, 246, 205, 0); }
  27.5% { opacity: 1; box-shadow: 0 0 52px 24px rgba(255, 246, 205, .76); }
  29% { opacity: .18; box-shadow: 0 0 8px rgba(255, 246, 205, .08); }
  31% { opacity: .96; box-shadow: 0 0 62px 28px rgba(255, 246, 205, .66); }
  34% { opacity: .54; }
  38%, 100% { opacity: 1; box-shadow: 0 0 62px 28px rgba(255, 246, 205, .6); }
}

@keyframes delumaOpeningV2Shade {
  0%, 26% { background: #56505b; box-shadow: none; }
  27.5% { background: #fff3c7; box-shadow: 0 0 18px 5px rgba(255, 239, 191, .62); }
  29% { background: #665e69; box-shadow: none; }
  31%, 100% { background: #fff1c1; box-shadow: 0 0 18px 5px rgba(255, 239, 191, .48); }
}

@keyframes delumaOpeningV2Light {
  0%, 26% { opacity: 0; transform: translateX(-50%) scaleX(.24); }
  27.5% { opacity: .9; transform: translateX(-50%) scaleX(.8); }
  29% { opacity: .06; }
  31% { opacity: .9; transform: translateX(-50%) scaleX(.94); }
  34% { opacity: .38; }
  39%, 100% { opacity: .82; transform: translateX(-50%) scaleX(1); }
}

@keyframes delumaOpeningV2Core {
  0%, 26% { opacity: 0; transform: translateX(-50%) scale(.78); }
  27.5% { opacity: .9; }
  29% { opacity: .08; }
  31% { opacity: .78; }
  34% { opacity: .28; }
  40%, 100% { opacity: .68; transform: translateX(-50%) scale(1); }
}

@keyframes delumaOpeningV2Ambient {
  0%, 27% { opacity: 0; transform: translateX(-50%) scale(.78); }
  31% { opacity: .56; }
  34% { opacity: .22; }
  42%, 100% { opacity: .64; transform: translateX(-50%) scale(1); }
}

@keyframes delumaOpeningV2Floor {
  0%, 30% { opacity: 0; transform: translateX(-50%) scale(.72); }
  43%, 100% { opacity: .74; transform: translateX(-50%) scale(1); }
}

@keyframes delumaOpeningV2Brand {
  0%, 35% { opacity: 0; filter: blur(11px); transform: translate(-50%, -39%) scale(.95); }
  48% { opacity: 1; filter: blur(0); transform: translate(-50%, -44%) scale(1.015); }
  58%, 100% { opacity: 1; filter: blur(0); transform: translate(-50%, -44%) scale(1); }
}

@keyframes delumaOpeningV2Mark {
  from { filter: drop-shadow(0 0 14px rgba(139, 92, 246, .28)); }
  to { filter: drop-shadow(0 0 27px rgba(34, 211, 238, .38)); }
}

@keyframes delumaOpeningV2Dot {
  from { opacity: .34; transform: translateY(1px) scale(.8); }
  to { opacity: 1; transform: translateY(-4px) scale(1); }
}

@keyframes delumaOpeningV2Dust {
  0%, 36% { opacity: 0; }
  52%, 100% { opacity: .42; }
}

@media (max-width: 680px) {
  .deluma-opening .deluma-opening__lamp {
    top: -72px;
    transform: translateX(-50%) scale(.7);
  }

  .deluma-opening .deluma-opening__light-cone {
    top: 17%;
    width: 126vw;
  }

  .deluma-opening .deluma-opening__reveal {
    top: 56%;
    width: calc(100vw - 30px);
  }

  .deluma-opening .deluma-opening__brand {
    gap: 11px;
  }

  .deluma-opening .deluma-opening__mark {
    width: 58px !important;
    height: 55px !important;
    max-width: 58px !important;
    max-height: 55px !important;
    flex-basis: 58px;
  }

  .deluma-opening .deluma-opening__word {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .deluma-opening .deluma-opening__tagline {
    max-width: 310px;
    margin-top: 17px;
    padding-inline: 8px;
    font-size: .62rem;
    letter-spacing: .15em;
  }

  .deluma-opening .deluma-opening__pulse {
    margin-top: 21px;
  }
}

@media (max-height: 640px) {
  .deluma-opening .deluma-opening__lamp {
    top: -92px;
    transform: translateX(-50%) scale(.64);
  }

  .deluma-opening .deluma-opening__reveal {
    top: 61%;
  }

  .deluma-opening .deluma-opening__tagline {
    margin-top: 13px;
  }

  .deluma-opening .deluma-opening__pulse {
    margin-top: 16px;
  }
}

/* ================================================================
   DELUMA OPENING SCENE / LIGHT REVEAL
   A code-native first-visit sequence: no video, image or network cost.
   ================================================================ */

.deluma-opening[hidden] {
  display: none !important;
}

body.deluma-opening-playing {
  overflow: hidden;
  overscroll-behavior: none;
}

.deluma-opening {
  position: fixed;
  z-index: 2147480000;
  inset: 0;
  overflow: hidden;
  min-height: 100svh;
  color: #f8f5ff;
  background:
    radial-gradient(circle at 50% 86%, rgba(35, 22, 57, .24), transparent 42%),
    #040207;
  isolation: isolate;
  animation: delumaOpeningExit .65s cubic-bezier(.76, 0, .24, 1) 4.05s forwards;
}

.deluma-opening::before {
  content: "";
  position: absolute;
  z-index: 7;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, .72) 115%);
}

.deluma-opening::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: -40%;
  pointer-events: none;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  transform: rotate(7deg);
  animation: delumaOpeningGrain .18s steps(2) infinite;
}

.deluma-opening__room {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px) 50% 0 / min(12vw, 180px) 100%,
    linear-gradient(180deg, #08050e 0%, #050308 74%, #0b0710 74%, #08050d 100%);
}

.deluma-opening__room::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -25%;
  left: -12%;
  height: 52%;
  opacity: .6;
  background: repeating-linear-gradient(94deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 10vw);
  transform: perspective(420px) rotateX(62deg);
  transform-origin: center bottom;
}

.deluma-opening__wall-glow,
.deluma-opening__floor-glow,
.deluma-opening__light-cone,
.deluma-opening__light-core {
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.deluma-opening__wall-glow {
  top: 8%;
  width: min(980px, 88vw);
  height: 82%;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(236, 224, 255, .21), rgba(132, 86, 244, .08) 34%, transparent 69%);
  filter: blur(28px);
  transform: translateX(-50%) scale(.72);
  animation: delumaOpeningAmbient 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening__floor-glow {
  bottom: -19%;
  width: min(920px, 100vw);
  height: 45%;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(ellipse, rgba(164, 116, 255, .22), rgba(34, 211, 238, .055) 42%, transparent 69%);
  filter: blur(19px);
  transform: translateX(-50%) scale(.65);
  animation: delumaOpeningFloor 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening__light-cone {
  z-index: 1;
  top: 21%;
  width: min(1120px, 112vw);
  height: 86%;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, rgba(142, 98, 255, .11) 23%, rgba(247, 239, 255, .34) 50%, rgba(34, 211, 238, .075) 77%, transparent),
    linear-gradient(180deg, rgba(255, 250, 231, .32), rgba(139, 92, 246, .11) 48%, transparent 88%);
  clip-path: polygon(47.2% 0, 52.8% 0, 100% 100%, 0 100%);
  filter: blur(3px);
  transform: translateX(-50%) scaleX(.32);
  transform-origin: 50% 0;
  animation: delumaOpeningLight 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening__light-core {
  z-index: 2;
  top: 19%;
  width: min(660px, 76vw);
  height: 76%;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 3%, rgba(255, 252, 229, .62), rgba(194, 169, 255, .17) 32%, transparent 73%);
  filter: blur(18px);
  transform: translateX(-50%) scale(.72);
  animation: delumaOpeningCore 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening__lamp {
  position: absolute;
  z-index: 6;
  top: -26px;
  left: 50%;
  width: 220px;
  height: 270px;
  transform: translateX(-50%);
  transform-origin: 50% 0;
  animation: delumaLampSettle 1.15s cubic-bezier(.2, .82, .2, 1) both;
}

.deluma-opening__wire {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 110px;
  background: linear-gradient(#211a2b, #787083);
  box-shadow: 0 0 1px rgba(255, 255, 255, .2);
}

.deluma-opening__cap {
  position: absolute;
  top: 102px;
  left: calc(50% - 17px);
  width: 34px;
  height: 25px;
  border-radius: 11px 11px 3px 3px;
  background: linear-gradient(100deg, #25202c, #77717c 48%, #17131c);
  box-shadow: 0 8px 12px rgba(0, 0, 0, .62);
}

.deluma-opening__shade {
  position: absolute;
  top: 118px;
  left: 25px;
  width: 170px;
  height: 82px;
  overflow: hidden;
  background: linear-gradient(102deg, #19131f 0%, #61566c 47%, #17111c 100%);
  clip-path: polygon(31% 0, 69% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 15px 12px rgba(0, 0, 0, .76));
}

.deluma-opening__shade::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 0;
  left: 3px;
  height: 6px;
  border-radius: 50%;
  background: #aca0b5;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, .18), 0 2px 8px rgba(0, 0, 0, .65);
  animation: delumaShadeRim 4.05s ease forwards;
}

.deluma-opening__shade i {
  position: absolute;
  top: 4px;
  bottom: 3px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, .09);
}

.deluma-opening__bulb {
  position: absolute;
  z-index: -1;
  top: 181px;
  left: calc(50% - 15px);
  width: 30px;
  height: 24px;
  border-radius: 50% 50% 46% 46%;
  opacity: .12;
  background: #fff9cf;
  box-shadow: 0 0 0 0 rgba(255, 246, 205, 0);
  animation: delumaBulbOn 4.05s ease forwards;
}

.deluma-opening__cord {
  position: absolute;
  top: 153px;
  left: calc(50% + 58px);
  width: 1px;
  height: 104px;
  background: linear-gradient(#756e7c, #332d39);
  transform-origin: 50% 0;
  animation: delumaCordPull 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening__cord i {
  position: absolute;
  bottom: -12px;
  left: -5px;
  width: 11px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: linear-gradient(90deg, #17131c, #59515f, #17131c);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .48);
}

.deluma-opening__reveal {
  position: absolute;
  z-index: 5;
  top: 53%;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 22px;
  width: min(940px, calc(100vw - 48px));
  opacity: 0;
  transform: translate(-50%, -42%) scale(.94);
  animation: delumaBrandReveal 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.deluma-opening__mark {
  width: clamp(62px, 6vw, 92px);
  height: auto;
  filter: drop-shadow(0 0 25px rgba(139, 92, 246, .36));
  animation: delumaMarkBreathe 1.7s ease-in-out 1.7s infinite alternate;
}

.deluma-opening__word {
  margin: 0;
  color: #fffdf9;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(3.8rem, 8.2vw, 8.5rem);
  font-weight: 750;
  line-height: .82;
  letter-spacing: -.075em;
  text-shadow: 0 2px 28px rgba(255, 255, 255, .1);
}

.deluma-opening__word span {
  color: #a980ff;
  font-weight: 540;
}

.deluma-opening__tagline {
  grid-column: 1 / -1;
  margin: 28px 0 0 calc(clamp(62px, 6vw, 92px) + 22px);
  color: rgba(237, 230, 249, .72);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(.76rem, 1.15vw, .98rem);
  font-weight: 650;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.deluma-opening__timeline {
  position: absolute;
  z-index: 10;
  right: clamp(24px, 4vw, 70px);
  bottom: clamp(25px, 4vh, 48px);
  left: clamp(24px, 4vw, 70px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.deluma-opening__timeline span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6d28d9, #ec4899 54%, #22d3ee);
  box-shadow: 0 0 16px rgba(139, 92, 246, .7);
  transform: scaleX(0);
  transform-origin: left;
  animation: delumaOpeningTimeline 3.95s cubic-bezier(.22, .61, .36, 1) forwards;
}

html[dir="rtl"] .deluma-opening__timeline span {
  transform-origin: right;
}

.deluma-opening__skip {
  position: absolute;
  z-index: 12;
  top: max(24px, env(safe-area-inset-top));
  right: max(24px, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(244, 240, 250, .68);
  background: rgba(17, 12, 27, .44);
  box-shadow: inset 0 1px rgba(255, 255, 255, .045);
  backdrop-filter: blur(14px);
  font: 650 .74rem/1 "Inter", "Segoe UI", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

.deluma-opening__skip:hover,
.deluma-opening__skip:focus-visible {
  border-color: rgba(169, 128, 255, .58);
  color: #fff;
  background: rgba(50, 32, 82, .72);
  transform: translateY(-2px);
}

.deluma-opening__skip i {
  color: #79e7ff;
  font-size: 1rem;
  font-style: normal;
}

html[dir="rtl"] .deluma-opening__skip {
  right: auto;
  left: max(24px, env(safe-area-inset-left));
}

.deluma-opening__dust {
  position: absolute;
  z-index: 3;
  inset: 22% 16% 9%;
  opacity: 0;
  animation: delumaDustAppear 4.05s ease forwards;
}

.deluma-opening__dust i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff6d7;
  box-shadow: 0 0 8px rgba(255, 246, 215, .8);
  animation: delumaDustDrift 2.4s ease-in-out infinite alternate;
}

.deluma-opening__dust i:nth-child(1) { top: 12%; left: 32%; animation-delay: -.4s; }
.deluma-opening__dust i:nth-child(2) { top: 28%; left: 61%; animation-delay: -1.1s; }
.deluma-opening__dust i:nth-child(3) { top: 43%; left: 39%; animation-delay: -.8s; }
.deluma-opening__dust i:nth-child(4) { top: 58%; left: 68%; animation-delay: -1.7s; }
.deluma-opening__dust i:nth-child(5) { top: 69%; left: 27%; animation-delay: -.2s; }
.deluma-opening__dust i:nth-child(6) { top: 77%; left: 55%; animation-delay: -1.3s; }
.deluma-opening__dust i:nth-child(7) { top: 36%; left: 73%; animation-delay: -.65s; }
.deluma-opening__dust i:nth-child(8) { top: 84%; left: 42%; animation-delay: -1.9s; }

.deluma-opening.is-skipping {
  animation: delumaOpeningSkip .4s cubic-bezier(.55, 0, 1, .45) forwards !important;
}

@keyframes delumaOpeningExit {
  0% { opacity: 1; visibility: visible; transform: scale(1); }
  100% { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.018); }
}

@keyframes delumaOpeningSkip {
  to { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.012); }
}

@keyframes delumaLampSettle {
  0% { opacity: 0; transform: translate(-50%, -32px) rotate(2deg); }
  65% { opacity: 1; transform: translate(-50%, 3px) rotate(-.6deg); }
  100% { opacity: 1; transform: translate(-50%, 0) rotate(0); }
}

@keyframes delumaCordPull {
  0%, 19% { transform: translateY(0) rotate(0); }
  26% { transform: translateY(29px) rotate(-1.5deg); }
  32% { transform: translateY(3px) rotate(1deg); }
  39%, 100% { transform: translateY(0) rotate(0); }
}

@keyframes delumaBulbOn {
  0%, 26% { opacity: .1; box-shadow: 0 0 0 rgba(255, 246, 205, 0); }
  27% { opacity: 1; box-shadow: 0 0 48px 24px rgba(255, 246, 205, .8); }
  28.2% { opacity: .22; box-shadow: 0 0 12px 3px rgba(255, 246, 205, .12); }
  30% { opacity: 1; box-shadow: 0 0 70px 32px rgba(255, 246, 205, .72); }
  32% { opacity: .66; box-shadow: 0 0 32px 14px rgba(255, 246, 205, .44); }
  35%, 100% { opacity: 1; box-shadow: 0 0 70px 32px rgba(255, 246, 205, .66); }
}

@keyframes delumaShadeRim {
  0%, 26% { background: #5a5360; }
  27% { background: #fff4cb; box-shadow: 0 0 18px 5px rgba(255, 239, 191, .68); }
  28.2% { background: #756c79; box-shadow: none; }
  30%, 100% { background: #fff2c3; box-shadow: 0 0 20px 5px rgba(255, 239, 191, .52); }
}

@keyframes delumaOpeningLight {
  0%, 26% { opacity: 0; transform: translateX(-50%) scaleX(.28); }
  27% { opacity: .92; transform: translateX(-50%) scaleX(.76); }
  28.2% { opacity: .08; transform: translateX(-50%) scaleX(.62); }
  30% { opacity: 1; transform: translateX(-50%) scaleX(.92); }
  32% { opacity: .42; }
  36%, 100% { opacity: .9; transform: translateX(-50%) scaleX(1); }
}

@keyframes delumaOpeningCore {
  0%, 26% { opacity: 0; transform: translateX(-50%) scale(.72); }
  27% { opacity: 1; }
  28.2% { opacity: .12; }
  30% { opacity: .9; }
  32% { opacity: .36; }
  37%, 100% { opacity: .82; transform: translateX(-50%) scale(1); }
}

@keyframes delumaOpeningAmbient {
  0%, 26% { opacity: 0; transform: translateX(-50%) scale(.72); }
  27% { opacity: 1; }
  28.2% { opacity: .12; }
  30% { opacity: .72; }
  32% { opacity: .28; }
  39%, 100% { opacity: .82; transform: translateX(-50%) scale(1); }
}

@keyframes delumaOpeningFloor {
  0%, 28% { opacity: 0; transform: translateX(-50%) scale(.65); }
  31% { opacity: .35; }
  39%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes delumaBrandReveal {
  0%, 34% { opacity: 0; filter: blur(16px); transform: translate(-50%, -36%) scale(.91); }
  46% { opacity: 1; filter: blur(0); transform: translate(-50%, -42%) scale(1.012); }
  58%, 100% { opacity: 1; filter: blur(0); transform: translate(-50%, -42%) scale(1); }
}

@keyframes delumaMarkBreathe {
  from { filter: drop-shadow(0 0 18px rgba(139, 92, 246, .34)); }
  to { filter: drop-shadow(0 0 34px rgba(34, 211, 238, .42)); }
}

@keyframes delumaOpeningTimeline {
  to { transform: scaleX(1); }
}

@keyframes delumaOpeningGrain {
  0% { transform: translate3d(-1%, 1%, 0) rotate(7deg); }
  100% { transform: translate3d(1%, -1%, 0) rotate(7deg); }
}

@keyframes delumaDustAppear {
  0%, 35% { opacity: 0; }
  47%, 100% { opacity: .66; }
}

@keyframes delumaDustDrift {
  from { transform: translate3d(-8px, 9px, 0) scale(.65); opacity: .3; }
  to { transform: translate3d(10px, -13px, 0) scale(1.2); opacity: .9; }
}

@media (max-width: 680px) {
  .deluma-opening__lamp {
    top: -48px;
    width: 176px;
    transform: translateX(-50%) scale(.84);
  }

  .deluma-opening__light-cone {
    top: 18%;
    width: 160vw;
  }

  .deluma-opening__reveal {
    top: 55%;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 15px;
    width: calc(100vw - 36px);
  }

  .deluma-opening__mark {
    width: 64px;
  }

  .deluma-opening__word {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .deluma-opening__tagline {
    grid-column: auto;
    margin: 9px 0 0;
    max-width: 320px;
    font-size: .68rem;
    line-height: 1.6;
    text-align: center;
  }

  .deluma-opening__skip {
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    padding: 0 14px;
    font-size: .67rem;
  }

  html[dir="rtl"] .deluma-opening__skip {
    right: auto;
    left: max(16px, env(safe-area-inset-left));
  }
}

@media (max-height: 620px) {
  .deluma-opening__lamp {
    top: -72px;
    transform: translateX(-50%) scale(.72);
  }

  .deluma-opening__reveal {
    top: 58%;
  }

  .deluma-opening__tagline {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deluma-opening,
  html.deluma-opening-pending .deluma-opening {
    display: none !important;
  }

  body.deluma-opening-playing {
    overflow: auto;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(36px, 11.5vw, 44px);
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div,
  .hero-proof > div:nth-child(n+2) {
    display: grid;
    grid-template-columns: minmax(58px, auto) 1fr;
    gap: 12px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .privacy-facts {
    grid-template-columns: 1fr;
  }

  .privacy-facts > div,
  .privacy-facts > div:nth-child(n+2) {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .footer-nav {
    gap: 24px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .magnetic {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  body::before,
  #light-field {
    display: none;
  }

  html.static-marketing-route.js-motion .site-loader {
    display: none;
  }

  html.static-marketing-route.js-motion .reveal {
    opacity: 1;
    transform: none;
  }

  .document-story {
    height: auto;
    min-height: 0;
    padding: 110px var(--page-pad);
  }

  .story-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .story-backdrop {
    inset: -110px calc(var(--page-pad) * -1);
  }

  .story-document {
    position: relative;
    left: auto;
    top: auto;
    width: min(360px, 70vw);
    margin: 80px auto 100px;
    transform: perspective(1000px) rotateY(-8deg) rotateZ(-2deg);
  }

  .story-chapters {
    position: static;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    transform: none;
    background: rgba(255,255,255,.14);
  }

  .story-chapter,
  .story-chapter.is-active {
    position: relative;
    opacity: 1;
    transform: none;
    padding: 32px;
    background: #08070d;
    pointer-events: auto;
  }

  .story-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 680px) {
  .story-chapters {
    grid-template-columns: 1fr;
  }

  .story-chapter,
  .story-chapter.is-active {
    padding: 30px 0;
  }
}

@media (forced-colors: active) {
  .hero-title .title-light,
  .display-copy .outline,
  .story-heading h2 span,
  .studio-copy h2 span,
  .outline-dark {
    color: CanvasText;
    -webkit-text-stroke: 0;
  }

  .button,
  .header-cta,
  .account-actions,
  .account-link,
  .language-picker,
  .menu-toggle,
  .main-nav,
  .mobile-nav,
  .tool-card,
  .plan-card {
    border: 1px solid ButtonText;
  }

  .paper-selection,
  .canvas-selection,
  .doc-layer {
    border-color: Highlight;
  }
}

@media (prefers-contrast: more) {
  :root {
    --text-muted: #4c4854;
  }

  .hero-description,
  .story-chapter p,
  .privacy-copy > p:not(.section-label),
  .studio-copy > p:not(.section-label) {
    color: rgba(255,255,255,.78);
  }
}

@media print {
  .site-header,
  .site-loader,
  #light-field,
  .hero-object,
  .kinetic-band,
  .story-document,
  .finale-action {
    display: none !important;
  }

  body,
  .hero,
  .document-story,
  .studio,
  .privacy,
  .finale,
  .site-footer {
    color: black;
    background: white;
  }

  .document-story {
    height: auto;
    min-height: 0;
  }

  .story-sticky {
    position: static;
    height: auto;
  }
}

/* ========================================================================
   DELUMA PRISMA / 2026
   One visual language for the public site and the product workspace.
   The composition deliberately uses CSS light, type and depth instead of
   bitmap backgrounds, keeping the landing sharp and inexpensive to render.
   ======================================================================== */

:root {
  --prism-ink: #08050f;
  --prism-panel: #150f24;
  --prism-panel-high: #1b1330;
  --prism-violet: #8b5cf6;
  --prism-deep: #6d28d9;
  --prism-pink: #ec4899;
  --prism-cyan: #22d3ee;
  --prism-cream: #f2ece0;
  --prism-muted: #c9bfe6;
  --prism-dimmed: #8378a8;
  --prism-line: rgba(201, 191, 230, .18);
  --prism-gradient: linear-gradient(105deg, var(--prism-pink) 0%, var(--prism-violet) 38%, var(--prism-deep) 66%, var(--prism-cyan) 100%);
}

body {
  background: var(--prism-ink);
  color: #fff;
}

.site-header {
  top: 18px;
  right: 50%;
  left: auto;
  width: min(calc(100% - 36px), 1220px);
  min-height: 68px;
  padding: 8px 10px 8px 18px;
  transform: translateX(50%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(21, 15, 36, .74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
}

.site-header::after {
  right: 15%;
  bottom: -1px;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, .72), rgba(34, 211, 238, .72), transparent);
  opacity: .65;
}

.site-header.is-scrolled {
  top: 10px;
  min-height: 62px;
  padding-block: 5px;
  background: rgba(21, 15, 36, .9);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .32);
}

.brand-word,
.main-nav a,
.account-link,
.language-code,
.header-cta {
  color: #fff;
}

.main-nav {
  gap: clamp(18px, 2.5vw, 38px);
}

.main-nav a {
  opacity: .7;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: var(--prism-cyan);
}

.account-link-signup,
.header-cta,
.button-primary {
  border: 0;
  background: var(--prism-gradient);
  color: #fff;
  box-shadow: 0 12px 30px rgba(109, 40, 217, .26);
}

.account-link-signup:hover,
.header-cta:hover,
.button-primary:hover {
  color: #fff;
  box-shadow: 0 16px 42px rgba(139, 92, 246, .36), 0 0 28px rgba(34, 211, 238, .14);
}

.language-picker {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .045);
}

.hero {
  min-height: 100svh;
  padding: clamp(150px, 17vh, 190px) max(24px, 5vw) 64px;
  overflow: hidden;
  background: #08050f;
}

.hero::before {
  inset: -10%;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(46% 38% at 12% 8%, rgba(236, 72, 153, .3), transparent 70%),
    radial-gradient(50% 42% at 90% 6%, rgba(34, 211, 238, .24), transparent 70%),
    radial-gradient(60% 55% at 50% 105%, rgba(139, 92, 246, .34), transparent 70%),
    #08050f;
  filter: none;
  opacity: 1;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
  transition: opacity 1s ease;
}

.hero::after {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(to bottom, rgba(8, 5, 15, .02), transparent 24%, rgba(8, 5, 15, .12) 72%, rgba(8, 5, 15, .42)),
    radial-gradient(ellipse at center, transparent 34%, rgba(8, 5, 15, .2) 100%);
  background-size: auto;
  opacity: 1;
  pointer-events: none;
}

#light-field {
  z-index: 0;
  opacity: 0;
  mix-blend-mode: normal;
  filter: none;
  transition: opacity 1.2s ease;
}

.hero.light-field-ready::before {
  opacity: 0;
}

.hero.light-field-ready #light-field {
  opacity: 1;
}

.hero-noise {
  z-index: 1;
  opacity: .05;
}

.chapter-rail,
.hero-object {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  width: auto;
  margin: 0 auto clamp(26px, 4vh, 44px);
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(21, 15, 36, .58);
  color: var(--prism-muted);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-kicker > span[aria-hidden="true"] {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--prism-cyan);
  box-shadow: 0 0 14px var(--prism-cyan);
}

.hero-title {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
  line-height: .91;
  letter-spacing: -.075em;
  text-align: center;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-light {
  margin-top: .08em;
  color: #fff;
  -webkit-text-stroke: 0;
}

/* A palavra e "luz": ela tem de parecer acesa E continuar destacada do texto
   branco em volta. As duas exigencias puxam para lados opostos, e resolve-las
   separadamente e o ponto desta regra.

   Destaque vem do PREENCHIMENTO, que segue colorido: a mesma viagem de matiz
   do prisma, rosa -> violeta -> ciano, agora sem a parada `--prism-deep`
   (#6d28d9) que ficava em 66% e afundava bem em cima do meio da palavra. Uma
   versao em tons claros ja foi tentada e falhou pelo motivo oposto: quase
   branca, a palavra se dissolvia no texto branco ao lado.

   O aceso vem do CONTORNO, nao do preenchimento: um traco claro fino atras
   dos glifos (`paint-order: stroke fill`, para o traco nao comer a letra) mais
   brilho em tres raios. Um halo de raio unico le como borrao; sao os tres
   juntos que leem como luz.

   E o `text-shadow: none` e obrigatorio, nao decorativo: a regra base impoe
   `0 2px 0 rgba(8,7,13,.75)` e esta aqui nao a redefinia. Como o texto e
   `color: transparent` recortado no proprio fundo, aquela sombra quase preta
   aparecia ATRAVES dos glifos e sujava a palavra por dentro. */
.hero-title em {
  padding-inline: .04em .09em;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
  background: linear-gradient(
    105deg,
    var(--prism-pink) 0%,
    var(--prism-violet) 46%,
    var(--prism-cyan) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  -webkit-text-stroke: .019em rgba(255, 252, 255, .9);
  paint-order: stroke fill;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, .72))
    drop-shadow(0 0 20px rgba(167, 139, 250, .55))
    drop-shadow(0 0 52px rgba(34, 211, 238, .3));
}

/* A palavra acentuada existe nos sete idiomas: "luz.", "light.", "光彩。",
   "रोशनी में।", "ضوء جديد.", "jour.". O brilho acima atravessa todos sem
   ajuste, porque `background-clip: text` e `drop-shadow` recortam qualquer
   glifo. A TIPOGRAFIA e que nao atravessa: Georgia nao tem chines, devanagari
   nem arabe, entao a palavra cairia num serif generico com italico sintetico,
   e o `letter-spacing` negativo aperta o arabe, que e cursivo e conectado.
   Aqui ela volta para a fonte do proprio idioma, de pe e sem aperto, e segue
   acesa. O italico serif fica so onde ele existe de fato: nas escritas
   latinas. */
html:lang(zh) .hero-title em,
html:lang(hi) .hero-title em,
html:lang(ar) .hero-title em {
  font-family: inherit;
  font-style: normal;
  letter-spacing: 0;
  /* O contorno tambem nao atravessa. Um traco de .019em sobre um ideograma
     engrossa cada haste e comeca a entupir os contra-formas; no devanagari ele
     briga com as finas e com a shirorekha. Nestas escritas o contorno vem so
     do brilho: os dois raios curtos abaixo substituem o traco, entao a palavra
     continua com borda acesa sem que o glifo engorde. */
  -webkit-text-stroke: 0;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, .85))
    drop-shadow(0 0 5px rgba(255, 250, 255, .6))
    drop-shadow(0 0 20px rgba(167, 139, 250, .6))
    drop-shadow(0 0 48px rgba(34, 211, 238, .3));
}

.hero-bottom {
  display: flex;
  width: min(760px, 100%);
  margin: clamp(34px, 6vh, 58px) auto 0;
  align-items: center;
  flex-direction: column;
  gap: 26px;
}

.hero-description {
  max-width: 720px;
  margin: 0;
  color: var(--prism-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.button-primary {
  min-width: 216px;
}

.text-link {
  color: #fff;
  border-color: rgba(255, 255, 255, .26);
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(940px, 100%);
  margin: clamp(46px, 7vh, 72px) auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 0;
}

.hero-proof > div,
.hero-proof > div:nth-child(n+2),
.hero-proof > div:last-child {
  display: grid;
  min-height: 88px;
  padding: 18px 20px;
  grid-template-columns: minmax(58px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(21, 15, 36, .74);
  box-shadow: 0 18px 55px rgba(8, 5, 15, .2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-proof strong {
  color: #fff;
  font-size: .7rem;
  line-height: 1;
  letter-spacing: .18em;
}

.hero-proof span {
  color: var(--prism-dimmed);
  font-size: .78rem;
  line-height: 1.35;
}

.manifesto,
.plans,
.faq {
  background: var(--prism-cream);
  color: var(--prism-ink);
}

.manifesto {
  padding-top: clamp(100px, 11vw, 170px);
}

.manifesto .section-index,
.plans .section-index,
.faq .section-label {
  color: var(--prism-deep);
}

.manifesto .display-copy,
.plans-heading h2,
.faq-heading h2 {
  color: var(--prism-ink);
}

.manifesto .display-copy .outline {
  color: transparent;
  -webkit-text-stroke-color: rgba(8, 5, 15, .62);
}

.manifesto-note,
.plans-heading p,
.faq-list details p {
  color: #625a6d;
}

.kinetic-band {
  background: var(--prism-gradient);
  color: #fff;
}

.document-story,
.tools,
.studio,
.privacy,
.finale,
.site-footer {
  background: var(--prism-ink);
  color: #fff;
}

.document-story {
  border-color: var(--prism-line);
}

.story-backdrop {
  background:
    radial-gradient(circle at 18% 16%, rgba(236, 72, 153, .18), transparent 30%),
    radial-gradient(circle at 82% 44%, rgba(34, 211, 238, .14), transparent 34%),
    linear-gradient(135deg, var(--prism-ink), var(--prism-panel));
}

.story-heading .section-label,
.story-chapter > span,
.studio .section-label,
.privacy .section-label,
.tools .section-index {
  color: var(--prism-cyan);
}

.story-heading h2,
.story-chapter h3,
.studio-copy h2,
.privacy-copy h2,
.tools-heading h2 {
  color: #fff;
}

.story-chapter p,
.studio-copy > p:not(.section-label),
.privacy-copy > p:not(.section-label),
.tools-heading p {
  color: var(--prism-muted);
}

.tools {
  position: relative;
  overflow: hidden;
}

.tools::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto 35%;
  height: 720px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(139, 92, 246, .2), transparent 64%);
}

.tools-heading h2 em {
  background: var(--prism-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
}

.tool-card,
.tool-card-violet,
.tool-card-ink,
.tool-card-blue {
  border: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(145deg, rgba(27, 19, 48, .98), rgba(15, 10, 28, .98));
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.tool-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 10%;
  left: 10%;
  height: 2px;
  border-radius: 99px;
  background: var(--prism-gradient);
  opacity: .72;
}

.tool-card::after {
  background: radial-gradient(circle, rgba(34, 211, 238, .16), transparent 66%);
}

.tool-card h3,
.tool-card-violet h3,
.tool-card-ink h3,
.tool-card-blue h3 {
  color: #fff;
}

.tool-card p,
.tool-card-violet p,
.tool-card-ink p,
.tool-card-blue p {
  color: var(--prism-muted);
}

.tool-number,
.tool-arrow {
  color: var(--prism-cyan);
}

.studio-window {
  border-color: rgba(139, 92, 246, .34);
  background: var(--prism-panel);
  box-shadow: 0 36px 100px rgba(109, 40, 217, .18);
}

.studio-aura {
  background: radial-gradient(circle, rgba(139, 92, 246, .25), transparent 68%);
}

.privacy {
  background:
    radial-gradient(circle at 20% 50%, rgba(236, 72, 153, .14), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, .12), transparent 34%),
    var(--prism-ink);
}

.privacy-facts > div {
  border-color: var(--prism-line);
}

.privacy-facts span {
  color: var(--prism-dimmed);
}

.plan-card {
  border-radius: 28px;
  border-color: rgba(8, 5, 15, .13);
}

.plan-free {
  background: rgba(255, 255, 255, .72);
  color: var(--prism-ink);
}

.plan-pro {
  position: relative;
  overflow: hidden;
  border-color: rgba(139, 92, 246, .54);
  background: linear-gradient(145deg, var(--prism-panel-high), var(--prism-ink));
  color: #fff;
  box-shadow: 0 30px 90px rgba(109, 40, 217, .2);
}

.plan-pro::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--prism-gradient);
}

.plan-pro .button {
  background: var(--prism-gradient);
  color: #fff;
}

.faq-list details {
  border-color: rgba(8, 5, 15, .16);
}

.faq-list summary {
  color: var(--prism-ink);
}

.finale {
  background:
    radial-gradient(circle at 50% 30%, rgba(109, 40, 217, .44), transparent 32%),
    radial-gradient(circle at 15% 70%, rgba(236, 72, 153, .18), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(34, 211, 238, .15), transparent 30%),
    var(--prism-ink);
}

.finale-action {
  background: var(--prism-gradient);
  color: #fff;
  box-shadow: 0 24px 65px rgba(109, 40, 217, .28);
}

.site-footer {
  border-color: var(--prism-line);
}

.footer-nav span,
.footer-bottom,
.footer-brand > p {
  color: var(--prism-dimmed);
}

.footer-nav a {
  color: var(--prism-muted);
}

@media (max-width: 1040px) {
  .site-header {
    width: min(calc(100% - 24px), 920px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 12.5vw, 7rem);
  }

  .hero-bottom {
    display: flex;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-header.is-scrolled {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 60px;
    padding: 6px 8px 6px 12px;
    border-radius: 22px;
  }

  .mobile-nav {
    top: 76px;
    right: 8px;
    left: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(21, 15, 36, .96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .42);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    color: #fff;
    border-color: rgba(255, 255, 255, .09);
  }

  .hero {
    padding: 125px 18px 48px;
  }

  .hero-kicker {
    max-width: 100%;
    padding: 8px 12px;
    font-size: .68rem;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 5rem);
    letter-spacing: -.07em;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(480px, 100%);
    margin-top: 40px;
  }

  .hero-proof > div,
  .hero-proof > div:nth-child(n+2),
  .hero-proof > div:last-child {
    min-height: 74px;
    padding: 15px 17px;
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  }

  .tool-card,
  .tool-card-violet,
  .tool-card-ink,
  .tool-card-blue {
    grid-row: auto;
    min-height: 228px;
    grid-template-rows: auto 58px auto;
    padding: 20px;
    border-radius: 24px;
  }

  .tool-card > .tool-number {
    grid-column: 1;
    grid-row: 1;
  }

  .tool-card > div:not(.tool-art) {
    grid-column: 1;
    grid-row: 3;
    min-width: 0;
    padding-right: 48px;
  }

  .tool-card h3 {
    margin-bottom: 8px;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: .94;
  }

  .tool-card p {
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
  }

  .tool-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    margin-top: 0;
  }

  .tool-card > .tool-art {
    z-index: 1;
    opacity: .66;
  }

  .tool-art-edit {
    top: 18px;
    right: 17px;
    width: 106px;
  }

  .tool-art-edit b {
    left: -7px;
    width: 38px;
    height: 38px;
  }

  .tool-art-pages {
    top: 18px;
    right: 12px;
    width: 122px;
    height: 98px;
  }

  .tool-art-pages i {
    width: 58px;
    height: 80px;
    right: 8px;
    top: 5px;
  }

  .tool-art-pages i:nth-child(2) {
    right: 34px;
    top: 11px;
  }

  .tool-art-pages i:nth-child(3) {
    right: 60px;
    top: 17px;
  }

  .tool-art-ocr {
    top: 29px;
    right: 17px;
    width: 128px;
    font-size: 6px;
  }

  .tool-art-ocr i {
    height: 5px;
    margin-top: 9px;
  }

  .tool-art-ocr b {
    top: -17px;
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .tool-card,
  .tool-card-violet,
  .tool-card-ink,
  .tool-card-blue {
    min-height: 216px;
  }
}
