:root {
  color-scheme: dark;
  --bg: #0f1117;
  --bg-soft: rgba(13, 18, 28, 0.82);
  --surface: rgba(17, 23, 34, 0.72);
  --surface-strong: rgba(9, 14, 24, 0.92);
  --surface-border: rgba(164, 172, 185, 0.24);
  --surface-border-strong: rgba(97, 215, 197, 0.44);
  --text: #f5f7fb;
  --text-muted: #bac3d0;
  --text-soft: #a4acb9;
  --accent: #00b5dd;
  --accent-strong: #61d7c5;
  --accent-deep: #6b5cff;
  --accent-wash: rgba(0, 181, 221, 0.15);
  --ruby: #c93a4a;
  --violet: #6b5cff;
  --success: #61d7c5;
  --shadow: 0 30px 86px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius-xl: 22px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100vw - 44px));
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse at 58% 26%, rgba(107, 92, 255, 0.23), transparent 33%),
    radial-gradient(ellipse at 72% 18%, rgba(0, 181, 221, 0.13), transparent 30%),
    linear-gradient(180deg, #0f1117 0%, #090e17 58%, #060911 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.58;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(245, 247, 251, 0.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 48% 12%, rgba(0, 181, 221, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 32%, rgba(245, 247, 251, 0.3) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 74%, rgba(107, 92, 255, 0.34) 0 1px, transparent 1.5px);
  background-size: 360px 360px, 440px 440px, 520px 520px, 620px 620px;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
li {
  color: var(--text-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.glass-card {
  background: linear-gradient(180deg, rgba(16, 28, 45, 0.86), rgba(10, 17, 29, 0.78));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1260px, calc(100vw - 32px));
  margin: 8px auto -82px;
  padding: 22px 32px 0;
  background: transparent;
}

.site-header .container {
  width: 100%;
}

.shell-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup strong {
  display: block;
  color: var(--text);
  font-size: 1.32rem;
  font-weight: 800;
}

.brand-lockup span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.locale-picker select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(164, 172, 185, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(12, 20, 32, 0.76);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
}

.nav-link {
  padding: 8px 0;
  border-radius: 0;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 650;
  transition: color var(--transition), background-color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent-strong);
  background: transparent;
}

.nav-link.is-active {
  color: var(--accent-strong);
  background: transparent;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #04111b;
  background: linear-gradient(135deg, #a8f5ef, var(--accent-strong));
  box-shadow: 0 16px 34px rgba(97, 215, 197, 0.2);
}

.button:focus-visible,
.locale-picker select:focus-visible,
.newsletter-form input:focus-visible {
  outline: 2px solid rgba(97, 215, 197, 0.86);
  outline-offset: 4px;
}

.smart-download-button {
  min-width: 190px;
  white-space: nowrap;
}

.smart-download-button[data-platform="windows"] {
  color: #1a1c1f;
  background: linear-gradient(135deg, #f7f8fb, #cfd5dc);
  box-shadow: 0 16px 36px rgba(245, 247, 251, 0.14);
}

.smart-download-button[data-platform="unknown"] {
  color: var(--text);
  background: rgba(245, 247, 251, 0.08);
  border: 1px solid rgba(164, 172, 185, 0.22);
}

.smart-download-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.smart-download-label {
  line-height: 1;
}

.button-secondary {
  color: var(--text);
  background: rgba(107, 92, 255, 0.12);
  border: 1px solid rgba(107, 92, 255, 0.32);
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.page-main {
  padding-bottom: 0;
}

.hero {
  padding: 0 0 34px;
}

.home-shell {
  position: relative;
  width: min(1260px, calc(100vw - 32px));
  margin: 8px auto 0;
  overflow: hidden;
  border: 1px solid rgba(164, 172, 185, 0.35);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.15), rgba(10, 16, 25, 0.72) 52%, rgba(13, 18, 28, 0.94)),
    radial-gradient(ellipse at 42% 45%, rgba(107, 92, 255, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(12, 23, 40, 0.92), rgba(4, 9, 16, 0.94));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
}

.home-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(97, 215, 197, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 215, 197, 0.16) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 84%, rgba(107, 92, 255, 0.28), transparent 34%),
    radial-gradient(ellipse at 18% 78%, rgba(0, 181, 221, 0.22), transparent 28%);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(transparent, #000 28%, #000);
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 18px;
  align-items: center;
}

.hero-grid {
  min-height: 700px;
  padding-top: 104px;
}

.hero-copy,
.page-hero-copy {
  max-width: 520px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy p,
.page-hero-copy p,
.section-lead {
  margin: 18px 0 0;
  font-size: 1.04rem;
  color: var(--text-muted);
}

.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, #61d7c5 0%, #87e7f0 48%, #9b7dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy .button-row,
.page-hero-copy .button-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-note::before {
  content: "";
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  background:
    url("/assets/icons/yvori-brand.png") center / 24px 24px no-repeat,
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(164, 172, 185, 0.18);
}

.hero-visual-suite {
  position: relative;
  min-height: 610px;
}

.suite-window {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(164, 172, 185, 0.22);
  border-radius: 8px;
  background: rgba(11, 16, 26, 0.9);
  box-shadow: var(--shadow);
}

.suite-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(97, 215, 197, 0.08);
}

.suite-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.window-traffic {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
}

.window-traffic i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.window-traffic i:nth-child(1) {
  background: #ff5f56;
}

.window-traffic i:nth-child(2) {
  background: #ffbd2e;
}

.window-traffic i:nth-child(3) {
  background: #27c93f;
}

.suite-window-glyph {
  top: 32px;
  right: 52px;
  width: min(75%, 610px);
  height: 330px;
  border-color: rgba(107, 92, 255, 0.36);
  animation: float-card 11s ease-in-out infinite;
}

.suite-window-prisma {
  top: 240px;
  left: 0;
  z-index: 2;
  width: min(70%, 560px);
  height: 300px;
  border-color: rgba(0, 181, 221, 0.48);
  animation: float-card 9s ease-in-out infinite;
}

.suite-window-sonata {
  right: 135px;
  bottom: 28px;
  z-index: 3;
  width: min(72%, 590px);
  height: 300px;
  border-color: rgba(201, 58, 74, 0.42);
  animation: float-card 13s ease-in-out infinite;
}

.glypha-visual {
  min-height: 610px;
}

.glypha-window {
  color: var(--text);
}

.glypha-window-browser {
  inset: 34px 28px 72px 0;
  display: block;
  border-color: rgba(107, 92, 255, 0.52);
  animation: float-card 11s ease-in-out infinite;
}

.glypha-window-detail {
  right: 0;
  bottom: 20px;
  z-index: 3;
  display: block;
  width: min(38%, 300px);
  height: 420px;
  padding: 0;
  border-color: rgba(97, 215, 197, 0.48);
  animation: float-card 13s ease-in-out infinite;
}

.glypha-real-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.glypha-real-shot-web {
  object-position: center 18%;
}

.glypha-real-shot-mobile {
  object-position: center top;
}

.glypha-quick-popover {
  position: absolute;
  right: 250px;
  bottom: 64px;
  z-index: 4;
  display: grid;
  gap: 4px;
  width: 164px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(97, 215, 197, 0.42);
  border-radius: 12px;
  background: rgba(10, 16, 25, 0.86);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.glypha-quick-popover span {
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 750;
}

.glypha-quick-popover strong {
  color: var(--text);
  font-size: 2.6rem;
  line-height: 1;
}

.glypha-quick-popover small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.glypha-sidebar,
.glypha-main,
.glypha-inspector {
  min-width: 0;
  padding: 42px 18px 18px;
}

.glypha-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  background: rgba(7, 12, 21, 0.54);
  border-right: 1px solid rgba(164, 172, 185, 0.12);
}

.glypha-sidebar strong {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.glypha-sidebar span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.glypha-main {
  background:
    radial-gradient(ellipse at 35% 16%, rgba(107, 92, 255, 0.18), transparent 34%),
    rgba(11, 16, 26, 0.64);
}

.glypha-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(164, 172, 185, 0.18);
  border-radius: 8px;
  background: rgba(245, 247, 251, 0.06);
  color: var(--text);
  font: inherit;
}

.glyph-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.glyph-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(164, 172, 185, 0.16);
  border-radius: 8px;
  background: rgba(245, 247, 251, 0.05);
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 650;
}

.glyph-grid span:nth-child(1),
.glyph-grid span:nth-child(11) {
  border-color: rgba(97, 215, 197, 0.62);
  background: rgba(97, 215, 197, 0.14);
}

.glypha-inspector {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  border-left: 1px solid rgba(164, 172, 185, 0.12);
  background: rgba(7, 12, 21, 0.36);
  text-align: center;
}

.glypha-inspector span,
.glypha-detail-card span {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 650;
}

.glypha-inspector strong {
  font-size: 5.4rem;
  line-height: 1;
}

.glypha-inspector button {
  min-height: 36px;
  padding: 0 28px;
  border: 1px solid rgba(97, 215, 197, 0.56);
  border-radius: 8px;
  background: rgba(97, 215, 197, 0.14);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.glypha-inspector small {
  color: var(--text-muted);
  line-height: 1.5;
}

.glypha-detail-card {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(164, 172, 185, 0.16);
  border-radius: 8px;
  background: rgba(245, 247, 251, 0.06);
}

.glypha-detail-card strong {
  font-size: 1.2rem;
}

.glypha-detail-card p {
  margin: 0;
  font-size: 0.9rem;
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.signal-grid,
.apps-grid,
.feature-grid,
.placeholder-grid,
.support-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.signal-pill {
  min-height: 118px;
  padding: 22px 24px 22px 92px;
  border-radius: 8px;
  background: rgba(12, 20, 32, 0.74);
  border: 1px solid rgba(164, 172, 185, 0.18);
  position: relative;
}

.signal-pill::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 34px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 2px solid var(--accent-strong);
  opacity: 0.82;
}

.signal-pill span {
  display: block;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.signal-pill strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.section {
  padding: 34px 0;
}

.suite-start {
  padding: 22px 0 36px;
}

.suite-start > h2 {
  margin: 20px 0 12px;
  text-align: center;
}

.glypha-landing > h2 {
  margin-top: 28px;
}

.glypha-feature-grid {
  align-items: stretch;
}

.glypha-feature-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 2px 0 4px;
  border-radius: 8px;
  border: 1px solid rgba(176, 214, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(97, 215, 197, 0.1), transparent 42%),
    rgba(245, 247, 251, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.glypha-feature-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 11, 22, 0), rgba(5, 11, 22, 0.1)),
    radial-gradient(circle at 18% 12%, rgba(97, 215, 197, 0.18), transparent 34%);
}

.glypha-feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.glypha-feature-shot-search img {
  object-position: 50% 11%;
}

.glypha-feature-shot-unicode img {
  object-position: 50% 36%;
}

.glypha-feature-shot-collections img {
  object-position: 50% 10%;
}

.glypha-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glypha-use-grid .future-card {
  min-height: 220px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.section-kicker {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.app-card-topline,
.app-identity,
.page-app-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-card-topline img,
.app-identity img,
.page-app-identity img {
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.app-card-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.app-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.app-card-featured {
  padding: 30px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-wash);
  border: 1px solid rgba(84, 196, 255, 0.18);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 0 6px rgba(84, 196, 255, 0.1);
}

.apps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.suite-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 278px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(16, 21, 32, 0.78);
  border: 1px solid rgba(164, 172, 185, 0.2);
  box-shadow: var(--shadow-soft);
}

.suite-card-glypha {
  border-color: rgba(107, 92, 255, 0.72);
  background: linear-gradient(180deg, rgba(36, 26, 66, 0.72), rgba(16, 21, 32, 0.82));
}

.suite-card-prisma {
  border-color: rgba(0, 181, 221, 0.72);
  background: linear-gradient(180deg, rgba(12, 52, 67, 0.72), rgba(16, 21, 32, 0.82));
}

.suite-card-sonata {
  border-color: rgba(201, 58, 74, 0.72);
  background: linear-gradient(180deg, rgba(63, 22, 31, 0.72), rgba(16, 21, 32, 0.82));
}

.suite-card .app-card-topline {
  align-items: center;
}

.suite-card .app-card-topline span:not(.suite-icon) {
  display: block;
  color: var(--text-muted);
  line-height: 1.35;
}

.suite-card p {
  margin: 0;
  color: var(--text-muted);
}

.suite-icon,
.future-glyph {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 30px rgba(0, 0, 0, 0.25);
}

.suite-icon-glypha {
  background: linear-gradient(135deg, #8b6cff, #4d36cf);
}

.suite-icon-sonata {
  background: linear-gradient(135deg, #ff6676, var(--ruby));
}

.suite-feature-list {
  display: grid;
  gap: 8px;
}

.suite-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.suite-feature-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.feature-grid,
.placeholder-grid,
.support-grid,
.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.placeholder-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.future-card {
  min-height: 190px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(18, 25, 37, 0.74);
  border: 1px solid rgba(164, 172, 185, 0.22);
}

.future-card h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.future-card p {
  min-height: 56px;
  margin: 6px 0 12px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.future-status {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(164, 172, 185, 0.28);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.future-card-aurea .future-glyph {
  background: linear-gradient(135deg, #704b39, #2e2522);
}

.future-card-glyph .future-glyph {
  background: linear-gradient(135deg, #5b347d, #2e2044);
}

.future-card-mint .future-glyph {
  background: linear-gradient(135deg, #61d7c5, #244d4a);
}

.future-card-blue .future-glyph {
  background: linear-gradient(135deg, #00b5dd, #203b64);
  font-size: 1.3rem;
}

.future-card-folio .future-glyph {
  background: linear-gradient(135deg, #b5ad55, #35351e);
}

.feature-card,
.placeholder-card,
.support-card,
.resource-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.support-card:hover,
.support-card:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  border-color: var(--surface-border-strong);
  transform: translateY(-2px);
}

.support-card,
.footer-link {
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

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

.screenshot-frame {
  margin: 0;
  padding: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.screenshot-frame.is-wide {
  grid-column: span 12;
}

.screenshot-frame:not(.is-wide) {
  grid-column: span 6;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(176, 214, 255, 0.12);
}

.screenshot-frame figcaption {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.newsletter-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: 8px;
  border: 1px solid rgba(97, 215, 197, 0.34);
  background:
    radial-gradient(ellipse at 12% 50%, rgba(0, 181, 221, 0.32), transparent 34%),
    radial-gradient(ellipse at 88% 50%, rgba(107, 92, 255, 0.32), transparent 32%),
    rgba(17, 23, 34, 0.78);
}

.newsletter-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  color: #d8fffb;
  background: linear-gradient(135deg, rgba(0, 181, 221, 0.7), rgba(13, 18, 28, 0.88));
  border: 1px solid rgba(97, 215, 197, 0.28);
}

.newsletter-band h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.newsletter-band p {
  margin: 8px 0 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(164, 172, 185, 0.3);
  background: rgba(245, 247, 251, 0.07);
  color: var(--text);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: var(--text-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-panel,
.support-panel,
.page-hero-panel,
.resource-card,
.faq-item,
.workflow-panel,
.not-found-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.grid-note {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(17, 40, 66, 0.8), rgba(9, 18, 31, 0.8));
  border: 1px solid rgba(122, 196, 255, 0.16);
}

.page-hero {
  padding: 38px 0 22px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.page-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
}

.page-preview-shot {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(158, 214, 255, 0.16);
  box-shadow: var(--shadow);
}

.page-preview-shot img {
  width: 100%;
  height: auto;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

.workflow-panel h3,
.faq-item h3,
.resource-card h3 {
  margin-bottom: 10px;
}

.workflow-panel ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.workflow-panel li {
  margin-bottom: 8px;
}

.faq-stack {
  display: grid;
  gap: 18px;
}

.faq-item {
  display: grid;
  gap: 10px;
}

.faq-item p {
  margin: 0;
}

.site-footer {
  padding: 50px 0 28px;
  border-top: 1px solid rgba(149, 191, 255, 0.1);
  background: linear-gradient(180deg, rgba(6, 12, 21, 0.08), rgba(6, 12, 21, 0.42));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 28px;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 480px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: var(--text-muted);
}

.footer-link span {
  color: var(--text);
  font-weight: 700;
}

.footer-link small {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(149, 191, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.reveal-enabled [data-reveal] {
  transform: translateY(24px);
  transition: transform 580ms ease;
}

.reveal-enabled [data-reveal].is-visible {
  transform: none;
}

@media (max-width: 1120px) {
  .hero-grid,
  .two-column,
  .page-hero-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    margin-bottom: -120px;
  }

  .hero-grid {
    padding-top: 140px;
  }

  .hero-visual-suite {
    min-height: 600px;
  }

  .apps-grid,
  .feature-grid,
  .placeholder-grid,
  .support-grid,
  .resource-grid,
  .workflow-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-card-intro {
    flex-direction: column;
  }

  .placeholder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .newsletter-band {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: min(1260px, calc(100vw - 24px));
    margin-bottom: 8px;
    padding: 18px 18px 0;
  }

  .shell-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
    width: 100%;
    gap: 10px 18px;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .header-cta {
    align-self: stretch;
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .home-shell {
    width: min(1260px, calc(100vw - 24px));
  }

  .hero-grid {
    min-height: auto;
    padding-top: 26px;
  }

  .signal-grid,
  .apps-grid,
  .feature-grid,
  .placeholder-grid,
  .support-grid,
  .resource-grid,
  .workflow-grid,
  .footer-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .screenshot-frame:not(.is-wide) {
    grid-column: span 12;
  }

  .hero-visual-suite {
    min-height: 540px;
  }

  .suite-window-glyph {
    top: 20px;
    right: 0;
    width: 82%;
    height: 270px;
  }

  .suite-window-prisma {
    top: 210px;
    width: 72%;
    height: 250px;
  }

  .suite-window-sonata {
    right: 20px;
    bottom: 16px;
    width: 76%;
    height: 240px;
  }

  .glypha-window-browser {
    inset: 18px 0 80px;
  }

  .glypha-inspector {
    display: none;
  }

  .glypha-window-detail {
    right: 24px;
    bottom: 16px;
    width: min(72%, 360px);
    height: 260px;
  }

  .glypha-quick-popover {
    right: auto;
    left: 28px;
    bottom: 34px;
  }

  .glypha-sidebar,
  .glypha-main,
  .glypha-inspector {
    padding: 38px 14px 14px;
  }

  .glyph-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .glypha-use-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 100vw - 28px);
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-copy p,
  .page-hero-copy p,
  .section-lead {
    font-size: 1rem;
  }

  .hero-visual-suite {
    min-height: 430px;
  }

  .suite-window-glyph {
    width: 94%;
    height: 200px;
  }

  .suite-window-prisma {
    top: 175px;
    width: 80%;
    height: 180px;
  }

  .suite-window-sonata {
    right: 0;
    width: 82%;
    height: 170px;
  }

  .glypha-visual {
    min-height: 480px;
  }

  .glypha-window-browser {
    inset: 16px 0 92px;
  }

  .glypha-sidebar {
    display: none;
  }

  .glypha-main {
    padding: 42px 14px 14px;
  }

  .glyph-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .glypha-window-detail {
    right: 0;
    bottom: 14px;
    width: 88%;
    height: 190px;
  }

  .glypha-quick-popover {
    left: 10px;
    bottom: 28px;
    width: 142px;
    padding: 12px 14px;
  }

  .placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-pill {
    padding-left: 76px;
  }

  .signal-pill::before {
    left: 20px;
    width: 34px;
    height: 34px;
  }

  .newsletter-band {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .app-card,
  .feature-card,
  .placeholder-card,
  .support-card,
  .resource-card,
  .workflow-panel,
  .about-panel,
  .support-panel,
  .page-hero-panel,
  .not-found-panel {
    padding: 20px;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }
}

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

/* Glypha premium landing */
body.glypha-premium-page {
  --premium-bg: #050816;
  --premium-surface: rgba(255, 255, 255, 0.065);
  --premium-line: rgba(168, 185, 255, 0.18);
  --premium-line-strong: rgba(164, 138, 255, 0.34);
  --premium-text: #f7f7ff;
  --premium-muted: rgba(232, 235, 255, 0.7);
  --premium-soft: rgba(232, 235, 255, 0.5);
  --premium-purple: #8e79ff;
  --premium-blue: #586cff;
  --premium-cyan: #8cecff;
  --premium-shell: min(1220px, calc(100vw - 48px));
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(11, 16, 44, 0.86), rgba(5, 8, 22, 0.98) 45%, #040713 100%),
    #050816;
  color: var(--premium-text);
}

body.glypha-premium-page::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(145, 166, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 166, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
}

body.glypha-premium-page a {
  color: inherit;
}

body.glypha-premium-page main,
.premium-footer {
  position: relative;
  z-index: 1;
}

.premium-page-symbol-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.46;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
}

.premium-page-symbol-field span {
  position: absolute;
  display: block;
  color: rgba(216, 224, 255, 0.1);
  font-size: var(--page-symbol-size, 2.5rem);
  font-weight: 460;
  line-height: 1;
  text-shadow: 0 0 28px rgba(102, 110, 255, 0.16);
  transform: rotate(var(--page-symbol-rotate, 0deg));
  animation: premium-symbol-drift var(--page-symbol-speed, 18s) ease-in-out infinite;
}

.premium-page-symbol-field span:nth-child(1) { --page-symbol-size: 3.6rem; --page-symbol-rotate: -12deg; --page-symbol-speed: 21s; left: 6%; top: 24%; }
.premium-page-symbol-field span:nth-child(2) { --page-symbol-size: 3.1rem; --page-symbol-rotate: 8deg; --page-symbol-speed: 23s; right: 12%; top: 22%; color: rgba(140, 236, 255, 0.1); }
.premium-page-symbol-field span:nth-child(3) { --page-symbol-size: 2.8rem; --page-symbol-rotate: -8deg; --page-symbol-speed: 19s; left: 12%; top: 56%; color: rgba(188, 158, 255, 0.1); }
.premium-page-symbol-field span:nth-child(4) { --page-symbol-size: 2.2rem; --page-symbol-rotate: 14deg; --page-symbol-speed: 20s; right: 28%; top: 74%; }
.premium-page-symbol-field span:nth-child(5) { --page-symbol-size: 2.7rem; --page-symbol-rotate: -18deg; --page-symbol-speed: 24s; left: 40%; top: 38%; }
.premium-page-symbol-field span:nth-child(6) { --page-symbol-size: 3.3rem; --page-symbol-rotate: 10deg; --page-symbol-speed: 22s; right: 6%; top: 58%; color: rgba(140, 236, 255, 0.09); }
.premium-page-symbol-field span:nth-child(7) { --page-symbol-size: 2.6rem; --page-symbol-rotate: -10deg; --page-symbol-speed: 18s; left: 25%; top: 82%; }
.premium-page-symbol-field span:nth-child(8) { --page-symbol-size: 3rem; --page-symbol-rotate: 12deg; --page-symbol-speed: 25s; right: 39%; top: 18%; }
.premium-page-symbol-field span:nth-child(9) { --page-symbol-size: 2.4rem; --page-symbol-rotate: -5deg; --page-symbol-speed: 20s; left: 72%; top: 45%; }
.premium-page-symbol-field span:nth-child(10) { --page-symbol-size: 2.5rem; --page-symbol-rotate: 8deg; --page-symbol-speed: 23s; left: 4%; top: 78%; color: rgba(188, 158, 255, 0.1); }
.premium-page-symbol-field span:nth-child(11) { --page-symbol-size: 2.9rem; --page-symbol-rotate: -14deg; --page-symbol-speed: 19s; right: 18%; top: 88%; }
.premium-page-symbol-field span:nth-child(12) { --page-symbol-size: 2.1rem; --page-symbol-rotate: 16deg; --page-symbol-speed: 24s; left: 54%; top: 64%; }

.premium-shell {
  width: var(--premium-shell);
  margin: 0 auto;
}

.premium-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100vw - 32px));
  min-height: 64px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(188, 199, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.54);
  box-shadow: 0 16px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.premium-header.is-scrolled {
  border-color: rgba(210, 219, 255, 0.22);
  background: rgba(18, 22, 38, 0.78);
  box-shadow: 0 18px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px) saturate(1.25);
}

.premium-brand,
.premium-nav,
.premium-footer-grid {
  display: flex;
  align-items: center;
}

.premium-brand {
  gap: 10px;
  font-weight: 780;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.premium-brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(142, 121, 255, 0.9), rgba(86, 108, 255, 0.78));
  box-shadow: 0 12px 36px rgba(88, 108, 255, 0.26);
  color: #fff;
  font-size: 1.34rem;
  line-height: 1;
}

.premium-nav {
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(247, 247, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 650;
}

.premium-nav a,
.premium-footer a {
  text-decoration: none;
  transition: color 180ms ease;
}

.premium-nav a:hover,
.premium-footer a:hover {
  color: #fff;
}

.premium-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.premium-header-cta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.premium-header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.premium-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 136px 0 0;
}

.premium-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(ellipse at 58% 12%, rgba(118, 129, 255, 0.22), transparent 34%),
    radial-gradient(ellipse at 86% 50%, rgba(142, 121, 255, 0.15), transparent 30%),
    linear-gradient(180deg, #070b24 0%, #050816 72%);
}

.premium-aurora {
  position: absolute;
  z-index: -2;
  top: -16%;
  left: 28%;
  width: 52vw;
  height: 42vw;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.18), rgba(142, 121, 255, 0.1) 34%, transparent 72%);
  filter: blur(18px);
  opacity: 0.72;
  transform: rotate(-8deg);
}

.premium-symbol-field {
  position: absolute;
  z-index: -1;
  inset: 82px 0 9%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.68;
  -webkit-mask-image: radial-gradient(ellipse at 50% 36%, #000 0%, #000 42%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 36%, #000 0%, #000 42%, transparent 80%);
}

.premium-symbol-field span {
  position: absolute;
  display: block;
  color: rgba(221, 227, 255, 0.16);
  font-size: var(--symbol-size, 2.8rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(133, 113, 255, 0.18);
  transform: translate3d(0, 0, 0) rotate(var(--symbol-rotate, 0deg));
  animation: premium-symbol-drift var(--symbol-speed, 14s) ease-in-out infinite;
  animation-delay: var(--symbol-delay, 0s);
}

.premium-symbol-field span:nth-child(1) { --symbol-size: 5.6rem; --symbol-rotate: -12deg; --symbol-speed: 16s; left: 11%; top: 14%; }
.premium-symbol-field span:nth-child(2) { --symbol-size: 4.3rem; --symbol-rotate: 9deg; --symbol-speed: 18s; left: 24%; top: 32%; }
.premium-symbol-field span:nth-child(3) { --symbol-size: 3.4rem; --symbol-rotate: 18deg; --symbol-speed: 13s; right: 17%; top: 15%; }
.premium-symbol-field span:nth-child(4) { --symbol-size: 5rem; --symbol-rotate: 8deg; --symbol-speed: 17s; right: 9%; top: 39%; }
.premium-symbol-field span:nth-child(5) { --symbol-size: 3.1rem; --symbol-rotate: -18deg; --symbol-speed: 15s; left: 42%; top: 19%; color: rgba(188, 158, 255, 0.13); }
.premium-symbol-field span:nth-child(6) { --symbol-size: 4.8rem; --symbol-rotate: -7deg; --symbol-speed: 19s; left: 7%; top: 58%; }
.premium-symbol-field span:nth-child(7) { --symbol-size: 3.2rem; --symbol-rotate: 16deg; --symbol-speed: 14s; right: 34%; top: 56%; }
.premium-symbol-field span:nth-child(8) { --symbol-size: 2.9rem; --symbol-rotate: -8deg; --symbol-speed: 16s; right: 5%; top: 68%; }
.premium-symbol-field span:nth-child(9) { --symbol-size: 3.7rem; --symbol-rotate: 10deg; --symbol-speed: 18s; left: 17%; top: 75%; }
.premium-symbol-field span:nth-child(10) { --symbol-size: 4.2rem; --symbol-rotate: -16deg; --symbol-speed: 20s; right: 23%; top: 28%; color: rgba(120, 232, 224, 0.12); }
.premium-symbol-field span:nth-child(11) { --symbol-size: 3.4rem; --symbol-rotate: 4deg; --symbol-speed: 15s; left: 31%; top: 67%; }
.premium-symbol-field span:nth-child(12) { --symbol-size: 3.1rem; --symbol-rotate: 14deg; --symbol-speed: 17s; right: 43%; top: 8%; }
.premium-symbol-field span:nth-child(13) { --symbol-size: 4.7rem; --symbol-rotate: -10deg; --symbol-speed: 19s; left: 4%; top: 34%; color: rgba(120, 232, 224, 0.1); }
.premium-symbol-field span:nth-child(14) { --symbol-size: 3.5rem; --symbol-rotate: -4deg; --symbol-speed: 18s; left: 52%; top: 72%; color: rgba(120, 232, 224, 0.12); }
.premium-symbol-field span:nth-child(15) { --symbol-size: 3.2rem; --symbol-rotate: 11deg; --symbol-speed: 21s; right: 30%; top: 76%; color: rgba(188, 158, 255, 0.12); }
.premium-symbol-field span:nth-child(16) { --symbol-size: 2.8rem; --symbol-rotate: -14deg; --symbol-speed: 17s; left: 70%; top: 58%; color: rgba(245, 247, 251, 0.12); }
.premium-symbol-field span:nth-child(17) { --symbol-size: 2.6rem; --symbol-rotate: 17deg; --symbol-speed: 20s; right: 47%; top: 33%; color: rgba(245, 247, 251, 0.11); }
.premium-symbol-field span:nth-child(18) { --symbol-size: 1.7rem; --symbol-rotate: -6deg; --symbol-speed: 16s; left: 58%; top: 43%; color: rgba(245, 247, 251, 0.12); }
.premium-symbol-field span:nth-child(19) { --symbol-size: 1.5rem; --symbol-rotate: 8deg; --symbol-speed: 18s; right: 10%; top: 83%; color: rgba(245, 247, 251, 0.11); }

.premium-curves {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.52;
}

.premium-curves path {
  fill: none;
  stroke: rgba(88, 108, 255, 0.78);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(88, 108, 255, 0.18));
}

.premium-curves path + path {
  stroke-width: 4;
  opacity: 0.7;
}

.premium-curves-left {
  left: -245px;
  top: 110px;
  width: min(54vw, 760px);
}

.premium-curves-right {
  right: -300px;
  top: 150px;
  width: min(60vw, 860px);
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  gap: clamp(16px, 2.2vw, 28px);
}

.premium-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding-top: 10px;
  text-align: center;
}

.premium-eyebrow {
  margin: 0 0 18px;
  color: var(--premium-cyan);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-hero h1,
.premium-section-heading h2,
.premium-final-card h2 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.premium-hero h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.78rem, 4vw, 4.75rem);
  font-weight: 760;
}

.premium-hero h1 span {
  display: block;
  background: linear-gradient(100deg, #fff 0%, #d8dcff 42%, #9c8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.premium-subtitle {
  max-width: 590px;
  margin: 28px auto 0;
  color: var(--premium-muted);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.72;
}

.premium-symbol-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: 780px;
  margin: 22px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(116, 100, 255, 0.08)),
    rgba(7, 10, 28, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 44px rgba(55, 49, 146, 0.2);
  color: rgba(245, 247, 251, 0.9);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  letter-spacing: 0;
}

.premium-symbol-strip span {
  white-space: nowrap;
}

.premium-symbol-strip span + span {
  position: relative;
}

.premium-symbol-strip span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 14px;
  vertical-align: -0.16em;
  background: rgba(255, 255, 255, 0.16);
}

.premium-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.premium-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.premium-button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.premium-button-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f8fbff, #c9d1ff);
  color: #070a18;
  box-shadow: 0 18px 52px rgba(155, 170, 255, 0.22);
}

.premium-button-secondary {
  border: 1px solid rgba(188, 199, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  backdrop-filter: blur(18px);
}

.premium-button:hover {
  transform: translateY(-2px);
}

.premium-button-primary:hover {
  box-shadow: 0 24px 70px rgba(155, 170, 255, 0.32);
}

.premium-button-secondary:hover {
  border-color: rgba(188, 199, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.premium-device-stage {
  --premium-scroll-y: 0px;
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(1240px, 100%);
  height: clamp(360px, 42vw, 520px);
  margin: 44px auto -8px;
  perspective: 1400px;
  pointer-events: none;
}

.premium-device-stage::before {
  content: "";
  position: absolute;
  inset: 16% 5% 8%;
  z-index: -1;
  border-radius: 48%;
  background:
    radial-gradient(ellipse at 38% 58%, rgba(146, 153, 255, 0.34), transparent 58%),
    radial-gradient(ellipse at 74% 45%, rgba(72, 229, 255, 0.18), transparent 54%);
  filter: blur(38px);
}

.premium-device-stage::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 2%;
  left: 6%;
  z-index: -2;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.56), transparent 70%);
  filter: blur(30px);
}

.premium-device-orbit {
  position: absolute;
  inset: 9% -4% 14%;
  z-index: -1;
  border: 1px solid rgba(151, 162, 255, 0.12);
  border-radius: 52% 48% 46% 54%;
  transform: rotate(-3deg);
  box-shadow: 0 0 64px rgba(112, 118, 255, 0.12);
}

.premium-device-shot {
  position: absolute;
  display: block;
  height: auto;
  margin: 0;
  border: 0;
  transform:
    translate3d(var(--device-x, 0), calc(var(--device-y, 0px) + var(--premium-scroll-y, 0px)), 0)
    rotate(var(--device-rotate, 0deg));
  transform-origin: center bottom;
  transition: transform 180ms ease-out, filter 180ms ease-out;
  will-change: transform;
}

.premium-device-macbook {
  --device-x: 0%;
  --device-y: 10px;
  --device-rotate: -0.6deg;
  left: 4%;
  bottom: 34px;
  z-index: 1;
  width: 72%;
  filter:
    drop-shadow(0 42px 58px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(120, 145, 255, 0.16));
}

.premium-device-ipad {
  --device-x: 0%;
  --device-y: 2px;
  --device-rotate: 0.65deg;
  right: 5%;
  bottom: 34px;
  z-index: 2;
  width: 30%;
  filter:
    drop-shadow(0 38px 48px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 28px rgba(130, 155, 255, 0.2));
}

.premium-device-iphone {
  --device-x: 0%;
  --device-y: 10px;
  --device-rotate: -0.2deg;
  right: 35%;
  bottom: 22px;
  z-index: 3;
  width: 16.5%;
  filter:
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.1));
}

@keyframes premium-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(0.35deg);
  }
}

@keyframes premium-symbol-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

.premium-section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0;
}

.premium-section-heading {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.premium-section-heading.align-left {
  margin: 0;
  text-align: left;
}

.premium-section-heading h2,
.premium-final-card h2 {
  font-size: clamp(2.55rem, 5vw, 5.2rem);
}

.premium-features .premium-section-heading h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2.05rem, 3.1vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.premium-section-heading p,
.premium-final-card p {
  margin: 20px auto 0;
  color: var(--premium-muted);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  line-height: 1.72;
}

.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-feature-card,
.premium-platforms article,
.premium-final-card {
  border: 1px solid var(--premium-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(8, 12, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.premium-feature-card {
  min-height: 264px;
  padding: 28px;
  border-radius: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.premium-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--premium-line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(10, 14, 38, 0.76);
}

.premium-feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(142, 121, 255, 0.9), rgba(88, 108, 255, 0.68));
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(88, 108, 255, 0.22);
}

.premium-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.premium-feature-card p {
  margin: 14px 0 0;
  color: var(--premium-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.premium-ecosystem {
  overflow: hidden;
}

.premium-ecosystem::before {
  content: "";
  position: absolute;
  inset: 16% -10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 128, 255, 0.48), transparent);
}

.premium-ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
}

.premium-platforms {
  display: grid;
  gap: 14px;
}

.premium-platforms article {
  position: relative;
  overflow: hidden;
  padding: 26px 28px;
  border-radius: 22px;
}

.premium-platforms article::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(142, 121, 255, 0.12));
}

.premium-platforms span {
  display: block;
  color: var(--premium-cyan);
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-platforms strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.26rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.premium-final-cta {
  padding: clamp(80px, 10vw, 144px) 0;
}

.premium-final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 82px);
  border-radius: 34px;
  text-align: center;
}

.premium-final-card::before {
  content: "";
  position: absolute;
  inset: -40% 12% auto;
  height: 62%;
  background: radial-gradient(ellipse, rgba(142, 121, 255, 0.25), transparent 68%);
  pointer-events: none;
}

.premium-final-card > * {
  position: relative;
}

.premium-final-card .premium-actions {
  justify-content: center;
}

.premium-footer {
  padding: 26px 0 42px;
  color: var(--premium-soft);
}

.premium-footer-grid {
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  border-top: 1px solid rgba(168, 185, 255, 0.12);
  padding-top: 26px;
  font-size: 0.94rem;
}

.premium-footer span {
  color: #fff;
  font-weight: 780;
}

.premium-footer small {
  flex-basis: 100%;
  text-align: center;
  color: var(--premium-soft);
}

.premium-header a:focus-visible,
.premium-button:focus-visible,
.premium-footer a:focus-visible {
  outline: 2px solid rgba(140, 236, 255, 0.9);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .premium-header {
    gap: 16px;
  }

  .premium-nav {
    gap: 16px;
  }

  .premium-hero-grid,
  .premium-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .premium-device-stage {
    height: clamp(330px, 42vw, 410px);
    margin: 44px auto 0;
  }

  .premium-device-macbook {
    left: 1%;
    width: 64%;
    bottom: 34px;
  }

  .premium-device-ipad {
    right: 12%;
    width: 27%;
    bottom: 36px;
  }

  .premium-device-iphone {
    right: 39%;
    width: 14.5%;
    bottom: 24px;
  }

  .premium-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-height: 860px) and (min-width: 761px) {
  .premium-hero {
    padding-top: 96px;
  }

  .premium-hero-copy {
    padding-top: 0;
  }

  .premium-eyebrow {
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .premium-hero h1 {
    font-size: clamp(2.45rem, 3.75vw, 4.1rem);
  }

  .premium-features .premium-section-heading h2 {
    font-size: clamp(1.95rem, 2.9vw, 2.95rem);
  }

  .premium-subtitle {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .premium-symbol-strip {
    margin-top: 14px;
    padding: 10px 15px;
    font-size: 0.94rem;
  }

  .premium-actions {
    margin-top: 22px;
  }

  .premium-button {
    min-height: 48px;
    border-radius: 14px;
  }

  .premium-device-stage {
    height: clamp(285px, 34vw, 350px);
    margin-top: 44px;
  }

  .premium-device-macbook {
    width: 58%;
    bottom: 32px;
  }

  .premium-device-ipad {
    right: 16%;
    width: 24.5%;
    bottom: 34px;
  }

  .premium-device-iphone {
    right: 41%;
    width: 13%;
    bottom: 24px;
  }
}

@media (max-width: 760px) {
  body.glypha-premium-page {
    --premium-shell: min(100% - 28px, 680px);
  }

  .premium-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100vw - 20px);
    min-height: 58px;
  }

  .premium-header:not(.is-scrolled) {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .premium-header:not(.is-scrolled) .premium-header-cta {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
  }

  .premium-nav {
    display: none;
  }

  .premium-header-cta {
    min-height: 38px;
    padding: 9px 15px;
  }

  .premium-hero {
    padding-top: 112px;
  }

  .premium-hero h1 {
    font-size: clamp(1.92rem, 7.85vw, 2.95rem);
  }

  .premium-features .premium-section-heading h2 {
    font-size: clamp(1.8rem, 7vw, 2.42rem);
  }

  .premium-subtitle {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .premium-symbol-strip {
    width: 100%;
    border-radius: 24px;
    font-size: 0.92rem;
  }

  .premium-symbol-strip span + span::before {
    display: none;
  }

  .premium-actions,
  .premium-button {
    width: 100%;
  }

  .premium-device-stage {
    width: min(100%, 500px);
    height: clamp(300px, 72vw, 420px);
    margin-top: 38px;
    margin-bottom: -10px;
    overflow: visible;
  }

  .premium-device-orbit {
    inset: 18% -18% 18%;
  }

  .premium-device-macbook {
    --device-x: 0%;
    --device-y: 18px;
    left: 4%;
    width: 74%;
    bottom: 64px;
  }

  .premium-device-ipad {
    --device-x: 0%;
    --device-y: 10px;
    width: 32%;
    right: 4%;
    bottom: 68px;
  }

  .premium-device-iphone {
    --device-x: 0%;
    --device-y: 22px;
    width: 18.5%;
    right: 35%;
    bottom: 56px;
  }

  .premium-feature-grid {
    grid-template-columns: 1fr;
  }

  .premium-feature-card {
    min-height: 228px;
  }

  .premium-feature-icon {
    margin-bottom: 28px;
  }

  .premium-curves-left {
    left: -350px;
    width: 760px;
  }

  .premium-curves-right {
    right: -470px;
    width: 760px;
  }
}

body.glypha-premium-page .premium-button-primary {
  color: #070a18;
}
