:root {
  --bg: #1a1a2e;
  --bg-deep: #0f0f23;
  --surface: rgba(22, 33, 62, 0.88);
  --surface-strong: rgba(18, 26, 49, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --text: #f3efe9;
  --text-muted: rgba(243, 239, 233, 0.72);
  --text-soft: rgba(243, 239, 233, 0.58);
  --accent: #e94560;
  --accent-soft: rgba(233, 69, 96, 0.14);
  --line: rgba(255, 255, 255, 0.1);
  --glow: rgba(233, 69, 96, 0.2);
  --plum: #613549;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(97, 53, 73, 0.45), transparent 34%),
    radial-gradient(circle at top right, rgba(233, 69, 96, 0.12), transparent 28%),
    linear-gradient(180deg, #171729 0%, #101120 52%, #0b0d18 100%);
  font-family: "Source Sans 3", "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding-bottom: 32px;
}

.philosophy-view .site-header {
  padding-top: 28px;
}

.philosophy-view .site-nav a,
.philosophy-view .footer-nav a {
  font-family: "Source Sans 3", "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.012em;
}

.site-header,
.site-footer,
.hero,
.section-grid,
.section-split,
.trust-section,
.faq-section,
.final-cta {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0 6px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Source Sans 3", "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(180deg, #6b3850 0%, #5a3146 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 38px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.brand-glyph {
  position: relative;
  z-index: 1;
  color: #f7f0e8;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 3.45rem;
  line-height: 0.78;
  transform: translateY(-1px);
}

.brand-orbit {
  position: absolute;
  left: 9%;
  top: 47%;
  width: 82%;
  height: 38%;
  border: 2px solid rgba(247, 240, 232, 0.96);
  border-radius: 999px;
  transform: translateY(-50%) rotate(-18deg);
}

.brand-word {
  font-size: 1.1rem;
  line-height: 1;
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a,
.footer-nav a {
  color: var(--text-muted);
  font-family: "Source Sans 3", "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 1.75px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    width 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 18px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(2) {
  top: 25px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(3) {
  top: 32px;
  transform: translateX(-50%);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 25px;
  width: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 25px;
  width: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    var(--surface-strong);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 6px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text-muted);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(233, 69, 96, 0.14);
  border: 1px solid rgba(240, 191, 202, 0.24);
  color: #ffd6de;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 24px;
}

.story-page {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding-top: 20px;
}

.philosophy-page {
  padding-top: 26px;
  padding-bottom: 88px;
}

.editorial-page {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 26px;
  padding-bottom: 88px;
}

.legal-page {
  padding-top: 20px;
}

.story-card {
  max-width: 760px;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.story-card p {
  margin: 18px 0 0;
}

.philosophy-intro,
.philosophy-row {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.editorial-hero,
.editorial-section,
.editorial-cta,
.update-entry,
.roadmap-list-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.editorial-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.68fr);
  gap: 34px;
  align-items: end;
}

.editorial-hero-copy {
  max-width: 39rem;
}

.editorial-hero-copy h1,
.editorial-section h2,
.update-body h2,
.editorial-cta h2 {
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.editorial-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 4.35vw, 4.1rem);
  line-height: 0.98;
}

.editorial-lead {
  margin: 20px 0 0;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.72;
}

.editorial-hero-copy p:last-child,
.editorial-copy-block p,
.update-body p,
.editorial-cta p,
.editorial-hero-note p,
.roadmap-card p,
.roadmap-list-card li,
.update-meta p {
  color: var(--text-muted);
  line-height: 1.8;
}

.editorial-hero-note {
  padding: 22px 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 14, 30, 0.34);
}

.editorial-section,
.editorial-cta,
.update-entry {
  max-width: 1040px;
  margin: 18px auto 0;
  padding: 34px 34px 32px;
}

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

.roadmap-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 14, 30, 0.28);
}

.roadmap-card-soft {
  background: rgba(10, 14, 30, 0.2);
}

.roadmap-card h3,
.update-body h2 {
  margin-top: 12px;
}

.roadmap-list-card {
  max-width: 1040px;
  margin: 18px auto 0;
  padding: 24px 28px;
}

.roadmap-list-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(240, 191, 202, 0.28);
  color: #ffd6de;
  background: rgba(233, 69, 96, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-chip-soft {
  color: rgba(243, 239, 233, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.updates-list {
  max-width: 1040px;
  margin: 18px auto 0;
  display: grid;
  gap: 16px;
}

.update-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
}

.update-entry + .update-entry::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 36px;
  right: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 168, 117, 0),
    rgba(201, 168, 117, 0.34) 18%,
    rgba(226, 209, 183, 0.44) 50%,
    rgba(201, 168, 117, 0.34) 82%,
    rgba(201, 168, 117, 0)
  );
  pointer-events: none;
}

.update-meta {
  display: grid;
  align-content: start;
  gap: 12px;
}

.update-meta p {
  margin: 0;
  font-size: 0.96rem;
}

.journal-meta {
  color: rgba(208, 182, 140, 0.9);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.update-body h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.update-body p,
.editorial-copy-block p,
.editorial-cta p {
  margin: 0;
  line-height: 1.94;
}

.update-body p + p,
.editorial-copy-block p + p,
.editorial-cta p + p {
  margin-top: 16px;
}

.editorial-cta {
  overflow: hidden;
  position: relative;
}

.editorial-cta::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.22), rgba(233, 69, 96, 0));
  pointer-events: none;
}

.philosophy-intro {
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px 42px;
}

.philosophy-flow {
  max-width: 1040px;
  margin: 24px auto 0;
  display: grid;
  gap: 18px;
}

.philosophy-intro-heading,
.philosophy-heading {
  max-width: 18rem;
}

.philosophy-intro .eyebrow,
.philosophy-heading .eyebrow {
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.philosophy-intro-heading h1,
.philosophy-heading h2 {
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.philosophy-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.philosophy-body {
  max-width: 39rem;
}

.philosophy-body p {
  margin: 0;
  color: var(--text-muted);
  font-family: "Source Sans 3", "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1.13rem;
  line-height: 1.84;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.philosophy-body p + p {
  margin-top: 21px;
}

.philosophy-intro .philosophy-body p:first-child {
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.76;
  letter-spacing: -0.014em;
  font-weight: 500;
}

.philosophy-intro .philosophy-body p + p {
  margin-top: 22px;
}

.philosophy-row {
  padding: 32px 34px;
}

.success-card {
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface-soft);
}

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

.success-card .success-title {
  margin-top: 0;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 600;
}

.difference-page {
  padding-top: 26px;
  padding-bottom: 88px;
}

.difference-intro,
.difference-block,
.difference-compare,
.difference-cta {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.difference-intro {
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px 42px;
  display: grid;
  gap: 24px;
}

.difference-intro h1,
.difference-block h2,
.difference-list h2,
.difference-cta h2 {
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.difference-intro h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  line-height: 0.98;
}

.difference-intro-copy {
  max-width: 40rem;
}

.difference-intro-copy p,
.difference-block p,
.difference-compare p,
.difference-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.difference-intro-copy p + p,
.difference-block p + p,
.difference-cta p + p {
  margin-top: 18px;
}

.difference-flow {
  max-width: 1040px;
  margin: 24px auto 0;
  display: grid;
  gap: 18px;
}

.difference-block {
  padding: 34px 36px;
}

.difference-block h2,
.difference-list h2,
.difference-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.difference-block-simple {
  max-width: 860px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.difference-card,
.difference-list,
.difference-summary {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(22, 33, 62, 0.62);
}

.difference-card {
  padding: 22px 22px 20px;
}

.difference-card h3,
.difference-compare h3,
.difference-list h3,
.difference-summary h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.difference-card p,
.difference-summary p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.difference-strong {
  text-align: center;
  padding: 44px 40px;
}

.difference-strong h2 {
  max-width: 10ch;
  margin: 0 auto 18px;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.difference-strong-copy {
  max-width: 39rem;
  margin: 0 auto;
}

.difference-lines {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.difference-lines span {
  display: block;
}

.difference-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.difference-compare-column {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.difference-compare-column ul,
.difference-list ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.difference-compare-column li,
.difference-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.difference-compare-column li::before,
.difference-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(240, 191, 202, 0.9);
  transform: translateY(-50%);
}

.difference-compare-column-quiet li::before {
  background: rgba(243, 239, 233, 0.34);
}

.difference-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.difference-list {
  padding: 24px 24px 22px;
}

.difference-summary {
  padding: 34px 36px;
  text-align: center;
}

.difference-summary h2 {
  max-width: 14ch;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
}

.difference-summary ul {
  max-width: 36rem;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.difference-summary li {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.difference-cta {
  display: grid;
  gap: 18px;
  padding: 38px;
  text-align: center;
}

.difference-cta .cta-row {
  justify-content: center;
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.legal-card {
  max-width: 860px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.legal-card p {
  margin: 16px 0 0;
}

.legal-card h3 {
  margin-top: 24px;
}

.legal-action-link {
  color: #f0bfca;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  transition: color 180ms ease;
}

.legal-action-link:hover {
  color: #ffd7df;
}

.legal-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-list li + li {
  margin-top: 8px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.support-tile {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
}

.support-tile h3 {
  margin-top: 10px;
}

.support-tile p {
  margin-top: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f0bfca;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.022em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 6.1rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-text,
.section-text,
.feature-card p,
.trust-card p,
.reasons p,
.faq-item p,
.preview-card p,
.final-cta-card p,
.footer-copy,
.mini-card p,
.philosophy-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 40rem;
  margin: 22px 0 0;
  font-size: 1.15rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.beta-access {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f05d79, #d83f5a);
  color: #fff9f8;
  box-shadow: 0 18px 50px var(--glow);
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button-tertiary {
  min-height: 44px;
  padding: 0 18px;
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.button-tertiary:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  margin-top: 10px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0bfca, #e94560);
}

.hero-preview,
.hero-visual,
.bridge-card,
.philosophy-card,
.final-cta-card {
  position: relative;
}

.preview-card,
.feature-card,
.trust-card,
.testimonial-card,
.bridge-card,
.shot-note,
.philosophy-card,
.final-cta-card,
.faq-item,
.reasons article {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.preview-card-main {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.hero-visual {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.bridge-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bridge-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 38px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.bridge-line {
  margin: 0;
  color: var(--text);
  font-family: "Source Sans 3", "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: clamp(1.42rem, 2.35vw, 1.82rem);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.bridge-line + .bridge-line {
  margin-top: 18px;
}

.bridge-line-soft {
  color: var(--text-muted);
  font-size: clamp(1.18rem, 2.05vw, 1.46rem);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.phone-shot {
  width: min(100%, 320px);
  margin: 0;
  padding: 10px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 9, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.36);
}

.phone-shot img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.shot-note {
  width: min(100%, 360px);
  border-radius: var(--radius-md);
  padding: 22px;
}

.shot-note strong,
.spotlight-copy h3 {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.shot-note p,
.spotlight-copy p {
  margin: 12px 0 0;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd7df;
  border: 1px solid rgba(233, 69, 96, 0.25);
}

.preview-lead {
  margin: 16px 0 0;
  max-width: 28rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mini-card,
.preview-card-side {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #efb6c3;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-card strong,
.preview-card-side strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.3;
}

.mini-card p,
.preview-card-side p {
  margin: 10px 0 0;
}

.preview-stack {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding-left: 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 + .section-text {
  margin-top: 18px;
}

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

.feature-card,
.trust-card,
.testimonial-card,
.reasons article {
  border-radius: var(--radius-md);
  padding: 24px;
}

.feature-card p,
.trust-card p,
.reasons p {
  margin: 14px 0 0;
}

.feature-spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
}

.feature-spotlight-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.spotlight-copy {
  max-width: 480px;
}

.section-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.reasons {
  display: grid;
  gap: 16px;
}

.trust-section {
  padding-top: 82px;
}

.philosophy-section {
  padding-top: 46px;
}

.philosophy-card,
.final-cta-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.philosophy-card::after,
.final-cta-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.3), transparent 68%);
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.testimonial-quote,
.testimonial-attribution {
  margin: 0;
}

.testimonial-quote {
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.testimonial-attribution {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.beta-access-footer {
  margin-top: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
}

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

.faq-item p {
  margin: 0 0 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: end;
  padding: 28px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

.brand-footer {
  margin-bottom: 10px;
}

.footer-copy,
.footer-meta {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1081px) {
  .philosophy-view .site-header {
    grid-template-columns: auto 1fr;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 10px;
  }

  .philosophy-view .site-nav {
    justify-content: center;
    gap: 62px;
    padding-right: 8px;
  }

  .philosophy-view .site-nav a {
    font-size: 0.98rem;
    font-weight: 400;
    color: rgba(243, 239, 233, 0.78);
  }

  .philosophy-view .site-nav a:hover {
    color: var(--text);
  }

  .page-shell {
    width: min(calc(100% - 72px), 1200px);
  }

  .site-header,
  .site-footer {
    max-width: 1120px;
    margin: 0 auto;
  }

  .hero {
    max-width: 1120px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 52px;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 44px;
    align-items: start;
  }

  .hero-copy {
    max-width: 540px;
    padding-top: 16px;
  }

  .hero-text {
    max-width: 33rem;
    font-size: 1.17rem;
  }

  .hero-points {
    max-width: 28rem;
    margin-top: 26px;
  }

  .hero-visual {
    justify-items: center;
    align-self: start;
    padding-right: 0;
  }

  .hero-shot {
    width: min(100%, 312px);
  }

  .shot-note {
    width: min(100%, 332px);
    margin-right: 0;
  }

  .bridge-section {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 8px;
  }

  .bridge-card {
    max-width: 760px;
    padding: 34px 38px;
  }

  .section-grid,
  .trust-section,
  .faq-section,
  .testimonials-section,
  .final-cta {
    max-width: 1120px;
    margin: 0 auto;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    max-width: 620px;
    margin-bottom: 24px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    align-items: stretch;
  }

  .feature-card,
  .trust-card,
  .testimonial-card,
  .reasons article {
    padding: 28px;
  }

  .feature-spotlight,
  .feature-spotlight-reverse {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 34px;
    margin-top: 28px;
    justify-content: center;
  }

  .feature-spotlight-reverse .phone-shot {
    justify-self: center;
  }

  .feature-spotlight .phone-shot {
    justify-self: center;
  }

  .spotlight-copy {
    max-width: 540px;
  }

  .section-split {
    max-width: 1120px;
    margin: 0 auto;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.12fr);
    gap: 44px;
    align-items: start;
  }

  .section-split > .reveal:first-child {
    position: static;
  }

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

  .trust-section {
    padding-top: 60px;
  }

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

  .philosophy-section {
    padding-top: 26px;
  }

  .philosophy-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 44px;
  }

  .faq-list {
    max-width: 860px;
    gap: 14px;
  }

  .testimonials-section .section-heading {
    max-width: 560px;
  }

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

  .final-cta-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 38px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.72fr);
    column-gap: 42px;
    row-gap: 12px;
    align-items: center;
  }

  .final-cta-card .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .final-cta-card h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 3.2vw, 3rem);
    line-height: 1;
  }

  .final-cta-card p {
    max-width: 34rem;
    margin-top: 0;
    font-size: 1.06rem;
    line-height: 1.78;
  }

  .final-cta-card p + p {
    margin-top: 12px;
  }

  .final-cta-card .cta-row,
  .final-cta-card .beta-access-footer {
    grid-column: 2;
    justify-content: flex-start;
    align-self: start;
  }

  .final-cta-card .cta-row {
    margin-top: 0;
    align-self: end;
  }

  .final-cta-card .beta-access-footer {
    margin-top: -2px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-card .button-primary {
    min-width: 228px;
  }

  .final-cta-card .button-tertiary {
    min-height: 40px;
    padding: 0;
    border-color: transparent;
    background: transparent;
  }

  .beta-access-footer {
    justify-content: center;
  }

  .testimonials-section,
  .faq-section,
  .final-cta {
    padding-top: 42px;
  }

  .philosophy-page {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 42px;
    padding-bottom: 104px;
  }

  .editorial-page {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 42px;
    padding-bottom: 104px;
  }

  .philosophy-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.02fr);
    gap: 80px;
    align-items: start;
    padding: 54px 52px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
      rgba(22, 33, 62, 0.74);
  }

  .philosophy-intro-heading {
    max-width: 21rem;
    min-width: 0;
  }

  .philosophy-intro .eyebrow {
    margin-bottom: 18px;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
  }

  .philosophy-intro-heading h1 {
    max-width: 6ch;
    font-size: clamp(2.95rem, 4.45vw, 4.18rem);
    line-height: 0.98;
  }

  .philosophy-intro .philosophy-body {
    max-width: 34.5rem;
    padding-top: 16px;
    min-width: 0;
  }

  .philosophy-intro .philosophy-body p {
    font-size: 1.15rem;
    line-height: 1.94;
  }

  .philosophy-intro .philosophy-body p:first-child {
    font-size: 1.28rem;
    line-height: 1.74;
  }

  .philosophy-flow {
    margin-top: 28px;
    gap: 16px;
  }

  .philosophy-row {
    display: grid;
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.22fr);
    gap: 56px;
    padding: 34px 36px;
    align-items: start;
  }

  .philosophy-heading {
    position: sticky;
    top: 98px;
  }

  .philosophy-body {
    max-width: 40rem;
  }

  .editorial-section h2,
  .editorial-cta h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 3.15vw, 2.7rem);
    line-height: 1.08;
  }

  .editorial-cta {
    max-width: 940px;
    padding: 38px 40px;
  }
}

@media (min-width: 1440px) {
  .page-shell {
    width: min(calc(100% - 96px), 1260px);
  }

  .hero {
    gap: 64px;
  }

  .feature-spotlight,
  .feature-spotlight-reverse,
  .section-split {
    gap: 56px;
  }

  .difference-intro,
  .difference-summary,
  .difference-cta {
    max-width: 1080px;
  }
}

@media (max-width: 1080px) {
  .hero,
  .section-split,
  .feature-spotlight {
    grid-template-columns: 1fr;
  }

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

  .difference-grid,
  .difference-list-wrap,
  .difference-compare {
    grid-template-columns: 1fr;
  }

  .preview-stack {
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 22px 0 8px;
  }

  .brand {
    gap: 14px;
    min-width: 0;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .brand-glyph {
    font-size: 4.35rem;
    transform: translateY(-2px);
  }

  .brand-orbit {
    left: 8%;
    width: 84%;
    height: 36%;
    border-width: 2px;
  }

  .brand-word {
    font-size: 1.18rem;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    margin-top: -2px;
    padding: 10px;
    border-radius: 22px;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .section {
    padding: 58px 0;
  }

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

  .story-page {
    min-height: auto;
    padding-top: 12px;
  }

  .philosophy-page {
    padding-top: 14px;
    padding-bottom: 58px;
  }

  .editorial-page {
    padding-top: 14px;
    padding-bottom: 58px;
  }

  .difference-page {
    padding-top: 14px;
    padding-bottom: 58px;
  }

  .legal-page {
    padding-top: 12px;
  }

  h1 {
    max-width: 12ch;
  }

  .mini-grid,
  .feature-grid,
  .trust-grid,
  .testimonial-grid,
  .support-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .beta-access {
    gap: 10px;
  }

  .preview-card-main,
  .story-card,
  .legal-card,
  .philosophy-intro,
  .philosophy-row,
  .editorial-hero,
  .editorial-section,
  .editorial-cta,
  .update-entry,
  .roadmap-list-card,
  .difference-intro,
  .difference-block,
  .difference-compare,
  .difference-summary,
  .difference-cta,
  .bridge-card,
  .philosophy-card,
  .final-cta-card {
    padding: 24px;
  }

  .editorial-hero,
  .update-entry {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .editorial-hero-copy h1 {
    font-size: clamp(2.45rem, 9vw, 3.15rem);
    line-height: 1;
  }

  .editorial-lead {
    font-size: 1.08rem;
    line-height: 1.66;
  }

  .philosophy-flow {
    margin-top: 18px;
    gap: 14px;
  }

  .difference-flow {
    margin-top: 18px;
    gap: 14px;
  }

  .difference-intro h1,
  .difference-strong h2,
  .difference-summary h2 {
    max-width: none;
  }

  .difference-intro-copy p,
  .difference-block p,
  .difference-compare p,
  .difference-cta p,
  .difference-card p,
  .difference-list li,
  .difference-summary li {
    font-size: 1.02rem;
    line-height: 1.74;
    letter-spacing: -0.008em;
  }

  .difference-compare-column {
    padding: 20px;
  }

  .philosophy-body p {
    font-size: 1.02rem;
    line-height: 1.76;
    letter-spacing: -0.008em;
  }

  .philosophy-intro .philosophy-body {
    max-width: none;
    padding-top: 0;
  }

  .philosophy-intro .philosophy-body p:first-child {
    font-size: 1.1rem;
    line-height: 1.68;
  }

  .faq-item {
    padding: 0 18px;
  }
}

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

  .reveal,
  .button,
  .menu-toggle,
  .menu-toggle span,
  .mobile-menu a {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.dreamy-view {
  color: #332c31;
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 216, 205, 0.76), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(226, 217, 243, 0.76), transparent 22%),
    radial-gradient(circle at 52% 48%, rgba(255, 242, 228, 0.82), transparent 30%),
    linear-gradient(180deg, #f6ece4 0%, #f8f3ee 36%, #f3edf0 72%, #f7f1e9 100%);
}

.dreamy-shell {
  width: min(calc(100% - 28px), 1440px);
  margin: 0 auto;
  padding-bottom: 56px;
}

.dreamy-header {
  padding-top: 20px;
}

.brand-light {
  color: #463947;
}

.brand-mark-light {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(180deg, #7c5065 0%, #6a4456 100%);
}

.dreamy-nav a {
  color: rgba(70, 57, 71, 0.72);
}

.dreamy-nav a:hover {
  color: #2f2830;
}

.dreamy-toggle {
  border-color: rgba(88, 65, 78, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: #433741;
  box-shadow: 0 18px 38px rgba(105, 77, 92, 0.08);
}

.dreamy-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(88, 65, 78, 0.18);
}

.dreamy-mobile-menu {
  border-color: rgba(115, 95, 110, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 247, 0.84)),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 80px rgba(105, 77, 92, 0.14);
}

.dreamy-mobile-menu a {
  color: rgba(67, 55, 65, 0.78);
}

.dreamy-mobile-menu a:hover {
  color: #312832;
  background: rgba(125, 88, 108, 0.06);
}

.dreamy-main {
  display: grid;
  gap: 22px;
}

.dreamy-hero {
  position: relative;
  min-height: calc(100vh - 108px);
  padding: 0 0 12px;
}

.dreamy-haze {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.84;
}

.dreamy-haze-a {
  inset: -2% auto auto -2%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 206, 208, 0.84), rgba(244, 206, 208, 0));
}

.dreamy-haze-b {
  inset: 8% 0 auto auto;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(225, 219, 246, 0.72), rgba(225, 219, 246, 0));
}

.dreamy-haze-c {
  inset: auto auto 10% 20%;
  width: 430px;
  height: 270px;
  background: radial-gradient(circle, rgba(255, 237, 216, 0.86), rgba(255, 237, 216, 0));
}

.dreamy-canvas {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.82fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 48px;
  border: 1px solid rgba(152, 126, 141, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 251, 247, 0.6)),
    rgba(255, 251, 248, 0.72);
  box-shadow:
    0 34px 110px rgba(123, 96, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
}

.dreamy-copy {
  position: relative;
  z-index: 2;
  padding: 66px 50px 58px;
  max-width: 46rem;
}

.dreamy-eyebrow {
  color: rgba(114, 84, 98, 0.82);
  letter-spacing: 0.22em;
}

.dreamy-copy h1,
.dreamy-note h2 {
  margin: 0;
  color: #352c35;
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.038em;
}

.dreamy-copy h1 {
  max-width: 8.6ch;
  font-size: clamp(4.8rem, 8.2vw, 8.1rem);
  line-height: 0.86;
}

.dreamy-lead,
.dreamy-card p,
.dreamy-float p,
.dreamy-stage-copy p {
  color: rgba(67, 55, 65, 0.72);
  font-size: 1.08rem;
  line-height: 1.78;
}

.dreamy-lead {
  max-width: 37rem;
  margin: 28px 0 0;
  font-size: 1.1rem;
}

.dreamy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.dreamy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(126, 102, 116, 0.16);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.dreamy-button:hover {
  transform: translateY(-1px);
}

.dreamy-button-primary {
  color: #fff8f7;
  background: linear-gradient(180deg, #7d5368 0%, #724a5f 100%);
  box-shadow: 0 18px 42px rgba(118, 74, 95, 0.2);
}

.dreamy-button-secondary {
  color: #483a46;
  background: rgba(255, 255, 255, 0.48);
}

.dreamy-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.dreamy-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(67, 55, 65, 0.78);
  font-size: 1.04rem;
  line-height: 1.62;
}

.dreamy-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #dba3b2 0%, #cb869d 100%);
  box-shadow: 0 0 0 7px rgba(216, 158, 176, 0.14);
}

.dreamy-stage {
  position: relative;
  min-height: 820px;
}

.dreamy-stage-column {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 610px);
  border-left: 4px solid rgba(18, 18, 35, 0.62);
  background: linear-gradient(180deg, #833864 0%, #833864 43%, #1c1d3b 43%, #1c1d3b 100%);
}

.dreamy-stage-band {
  position: absolute;
  right: 0;
  width: 120px;
  opacity: 0.9;
}

.dreamy-stage-band-top {
  top: 0;
  height: 196px;
  background: linear-gradient(180deg, rgba(166, 86, 133, 0.7), rgba(131, 56, 100, 0));
}

.dreamy-stage-band-bottom {
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(131, 56, 100, 0), rgba(166, 86, 133, 0.56));
}

.dreamy-stage-copy {
  position: absolute;
  top: 28px;
  left: 36px;
  right: 48px;
  color: #fff2f3;
}

.dreamy-stage-copy h2 {
  margin: 0;
  color: #fff5f5;
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.024em;
  max-width: 8ch;
}

.dreamy-stage-copy p {
  max-width: 15rem;
  margin: 28px 0 0;
  color: rgba(255, 237, 239, 0.82);
  font-family: "Prata", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.48;
}

.dreamy-device {
  position: absolute;
  overflow: hidden;
  box-shadow:
    0 36px 96px rgba(88, 52, 70, 0.2),
    0 8px 22px rgba(255, 255, 255, 0.24);
}

.dreamy-device img {
  width: 100%;
  height: auto;
}

.dreamy-device-main {
  z-index: 3;
  width: min(40vw, 560px);
  right: 58px;
  bottom: -108px;
  border-radius: 0;
  box-shadow: none;
}

.dreamy-device-back {
  z-index: 2;
  width: min(18vw, 226px);
  left: -28px;
  top: 304px;
  border-radius: 22px;
  transform: rotate(-11deg);
}

.dreamy-float {
  position: absolute;
  z-index: 4;
  padding: 28px 30px 26px;
  border-radius: 34px;
  border: 1px solid rgba(148, 127, 140, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 248, 0.8)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(123, 96, 113, 0.12);
  backdrop-filter: blur(16px);
}

.dreamy-float-label,
.dreamy-card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(125, 94, 108, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dreamy-float strong,
.dreamy-card h3 {
  display: block;
  color: #3a3039;
  font-size: 1rem;
  line-height: 1.48;
}

.dreamy-float-top {
  top: 98px;
  right: -20px;
  width: 330px;
}

.dreamy-float-mid {
  right: -34px;
  bottom: 146px;
  width: 344px;
}

.dreamy-float-low {
  left: -2px;
  bottom: 38px;
  width: 338px;
}

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

.dreamy-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(148, 127, 140, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 252, 249, 0.64)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 66px rgba(123, 96, 113, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.dreamy-card {
  padding: 24px;
}

.dreamy-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.32;
}

.dreamy-card p {
  margin: 12px 0 0;
  font-size: 0.98rem;
}

.dreamy-view .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dreamy-view .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .dreamy-canvas {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.84fr);
  }

  .dreamy-copy {
    padding: 54px 38px 50px;
  }

  .dreamy-stage-column {
    width: min(100%, 530px);
  }

  .dreamy-device-main {
    width: min(42vw, 500px);
    right: 38px;
  }
}

@media (max-width: 1080px) {
  .dreamy-nav {
    display: none;
  }

  .dreamy-toggle {
    display: inline-flex;
  }

  .dreamy-canvas {
    grid-template-columns: 1fr;
  }

  .dreamy-copy {
    max-width: none;
    padding: 44px 30px 14px;
  }

  .dreamy-stage {
    min-height: 760px;
  }

  .dreamy-stage-column {
    inset: 0;
    width: 100%;
  }

  .dreamy-device-main {
    width: min(62vw, 480px);
    right: 50%;
    transform: translateX(50%);
  }

  .dreamy-device-back {
    left: 6%;
    top: 308px;
    width: min(26vw, 210px);
  }

  .dreamy-float-top {
    right: 18px;
  }

  .dreamy-float-mid {
    right: 18px;
  }

  .dreamy-float-low {
    left: 20px;
  }

  .dreamy-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dreamy-shell {
    width: min(calc(100% - 20px), 1440px);
  }

  .dreamy-hero {
    min-height: auto;
  }

  .dreamy-canvas {
    min-height: 0;
    border-radius: 32px;
  }

  .dreamy-copy {
    padding: 28px 20px 10px;
  }

  .dreamy-copy h1 {
    max-width: 8.4ch;
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .dreamy-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .dreamy-actions {
    flex-direction: column;
  }

  .dreamy-button {
    width: 100%;
  }

  .dreamy-stage {
    min-height: 640px;
  }

  .dreamy-stage-copy {
    top: 22px;
    left: 18px;
    right: 18px;
  }

  .dreamy-stage-copy h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .dreamy-stage-copy p {
    max-width: 13rem;
    font-size: 0.98rem;
  }

  .dreamy-device-main {
    width: min(76vw, 360px);
    bottom: -52px;
  }

  .dreamy-device-back {
    top: 296px;
    left: -12px;
    width: min(34vw, 142px);
  }

  .dreamy-float {
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .dreamy-float-top {
    top: 86px;
    right: 8px;
    width: min(62vw, 250px);
  }

  .dreamy-float-mid {
    right: 8px;
    bottom: 134px;
    width: min(64vw, 258px);
  }

  .dreamy-float-low {
    left: 8px;
    bottom: 24px;
    width: min(60vw, 236px);
  }

  .dreamy-card {
    border-radius: 24px;
  }

  .dreamy-mobile-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }
}
