:root {
  color-scheme: dark;
  --bg: #06100a;
  --panel: #0d1c12;
  --panel-soft: #102617;
  --text: #f3fff2;
  --muted: #b9d7bc;
  --line: #2f5b35;
  --accent: #98ff96;
  --accent-strong: #00ff66;
  --warning: #ffe6a3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
}

.site-header,
.site-footer {
  border-color: var(--line);
  border-style: solid;
}

.site-header {
  border-width: 0 0 1px;
  background: rgba(6, 16, 10, 0.94);
}

.site-footer {
  border-width: 1px 0 0;
  color: var(--muted);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.hero {
  padding: 72px 0 44px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 8vw, 78px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-strong);
  color: #001f08;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 36px 0;
}

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

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

.card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card.soft {
  background: var(--panel-soft);
}

.muted {
  color: var(--muted);
}

.notice {
  padding: 16px;
  border: 1px solid #735f26;
  border-radius: 8px;
  background: rgba(255, 230, 163, 0.08);
  color: var(--warning);
}

.price {
  margin: 12px 0;
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.list {
  padding-left: 20px;
  color: var(--muted);
}

.list li {
  margin: 8px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

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

/* SP-031.1 visual refinement: premium, calm commercial landing. */
:root {
  color-scheme: dark light;
  --paper: #f7fbf4;
  --paper-soft: #edf5eb;
  --ink: #102015;
  --body: #415143;
  --night: #07110b;
  --night-2: #0c1a10;
  --accent-ink: #03210b;
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom-color: rgba(216, 231, 212, 0.14);
  background: rgba(7, 17, 11, 0.92);
  color: var(--text);
  backdrop-filter: blur(16px);
}

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

.brand::before {
  width: 18px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 14px 14px 4px 4px;
  box-shadow:
    10px 0 0 -2px var(--night),
    10px 0 0 0 var(--accent);
  content: "";
}

.nav-links a {
  border-radius: 8px;
  font-weight: 650;
  padding: 8px 10px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(155, 255, 150, 0.1);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(155, 255, 150, 0.18), transparent 28%),
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 48%, #07110b 100%);
  color: var(--text);
  padding: 86px 0 74px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 48px;
}

.eyebrow,
.kicker {
  letter-spacing: 0.08em;
}

.kicker {
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 7vw, 74px);
}

.page-lead {
  max-width: 760px;
  color: var(--body);
  font-size: 19px;
}

.button {
  min-height: 46px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 850;
}

.button.neutral {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.product-card {
  border: 1px solid rgba(155, 255, 150, 0.28);
  border-radius: 8px;
  background: rgba(10, 26, 15, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  padding: 22px;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #07110b;
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--line-dark);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #42634a;
}

.mode-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.mode-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(155, 255, 150, 0.2);
  border-radius: 8px;
  background: rgba(155, 255, 150, 0.06);
}

.status-pill {
  border: 1px solid rgba(155, 255, 150, 0.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  white-space: nowrap;
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 46px 0;
}

.section.dark {
  background: var(--night);
  color: var(--text);
}

.section.dark h2,
.section.dark h3 {
  color: var(--text);
}

.section-header {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-header p {
  color: var(--body);
  font-size: 18px;
}

.section.dark .section-header p,
.section.dark .muted {
  color: var(--muted);
}

.card {
  background: #ffffff;
  color: var(--ink);
}

.card.dark-card {
  border-color: var(--line-dark);
  background: var(--panel);
  color: var(--text);
}

.card.dark-card p {
  color: var(--muted);
}

.muted,
.list {
  color: var(--body);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 58px;
}

.step::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  content: counter(step);
  counter-increment: step;
  font-size: 13px;
  font-weight: 900;
}

.notice {
  border-color: #d9bc62;
  background: #fff7da;
  color: #574511;
}

.section.dark .notice {
  border-color: #735f26;
  background: rgba(255, 230, 163, 0.08);
  color: var(--warning);
}

.site-footer {
  border-top-color: var(--line);
  background: #ffffff;
  color: var(--body);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  max-width: 880px;
  padding: 56px 0 72px;
}

.legal-shell .card {
  margin-top: 22px;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 50px 0;
  }

  .step {
    padding-left: 22px;
  }

  .step::before {
    position: static;
    margin-bottom: 12px;
  }
}

/* SP-031-R4: BloomMode Design DNA applied to the static commercial site. */
:root {
  color-scheme: light;
  --ink: #07100c;
  --ink-2: #0d261a;
  --paper: #f7fbf6;
  --paper-2: #eef5ef;
  --surface: #ffffff;
  --surface-soft: #f2f8f2;
  --text: #132118;
  --muted: #5f7064;
  --line: #d8e7dc;
  --line-strong: #abc8b2;
  --bloom: #84f28f;
  --bloom-dark: #176b31;
  --bloom-ink: #05200d;
  --gold: #b78b2b;
  --gold-soft: #fff6da;
  --white: #f8fff8;
  --shadow: 0 18px 44px rgba(7, 16, 12, 0.12);
  --container: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: 4.4rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 1.28rem;
}

.wrap {
  width: min(var(--container), calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-color: rgba(216, 231, 220, 0.16);
  border-width: 0 0 1px;
  background: rgba(7, 16, 12, 0.96);
  color: var(--white);
}

.nav {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 850;
}

.brand::before {
  content: none;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  border-radius: 8px;
  color: #c7d9ca;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 10px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(132, 242, 143, 0.12);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #173120;
  background: var(--ink);
  color: var(--white);
  padding: 92px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.kicker {
  margin-bottom: 14px;
  color: var(--bloom);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: #c8dbc9;
  font-size: 1.22rem;
}

.page-lead {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--bloom);
  border-radius: 8px;
  background: var(--bloom);
  color: var(--bloom-ink);
  font-weight: 850;
  text-decoration: none;
}

.button:hover,
.button:focus {
  border-color: #b7ffbe;
  background: #b7ffbe;
}

.button.secondary {
  background: transparent;
  color: var(--bloom);
}

.button.secondary-light {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--bloom-dark);
}

.button.ghost {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-notes span,
.chip,
.signal {
  border: 1px solid rgba(132, 242, 143, 0.28);
  border-radius: 999px;
  color: #ddf7de;
  font-size: 0.78rem;
  font-weight: 750;
  padding: 6px 10px;
}

.product-mockup {
  overflow: hidden;
  border: 1px solid rgba(132, 242, 143, 0.24);
  border-radius: 8px;
  background: #0b1710;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.mockup-toolbar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(132, 242, 143, 0.18);
  padding: 14px;
}

.mockup-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46634d;
}

.mockup-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.mockup-topline,
.mode-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chip.active {
  background: rgba(132, 242, 143, 0.12);
  color: var(--bloom);
}

.signal {
  border-color: rgba(255, 255, 255, 0.16);
  color: #c4d1c6;
}

.mockup-video {
  min-height: 220px;
  border: 1px solid rgba(132, 242, 143, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(132, 242, 143, 0.08), transparent 42%),
    #111914;
  display: grid;
  place-items: center;
}

.play-shape {
  width: 68px;
  height: 48px;
  border-radius: 8px;
  background: #19271d;
  position: relative;
}

.play-shape::after {
  position: absolute;
  top: 13px;
  left: 27px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--bloom);
  content: "";
}

.mode-panel {
  display: grid;
  gap: 10px;
}

.mode-line {
  border: 1px solid rgba(132, 242, 143, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 13px;
}

.mode-line strong {
  color: var(--white);
}

.mode-line span {
  color: #aac4ae;
  font-size: 0.9rem;
}

.mode-line.quiet {
  border-color: rgba(183, 139, 43, 0.36);
}

.section {
  padding: 88px 0;
}

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

.section-ink {
  background: var(--ink-2);
  color: var(--white);
}

.section-plans {
  background: var(--surface);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.narrow {
  max-width: 700px;
}

.section-header p:not(.eyebrow):not(.kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-ink .section-header p:not(.eyebrow):not(.kicker) {
  color: #c8dbc9;
}

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

.step-card,
.mode-card,
.price-card,
.responsible-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.step-card {
  min-height: 230px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--bloom-dark);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.step-card p,
.mode-card p,
.price-card p,
.responsible-card p,
.legal-card p {
  margin-top: 12px;
  color: var(--muted);
}

.mode-card {
  min-height: 245px;
  border-color: rgba(132, 242, 143, 0.24);
  background: #102318;
}

.mode-card p {
  color: #c8dbc9;
}

.mode-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bloom);
  margin-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 42px;
  align-items: start;
}

.check-list,
.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bloom-dark);
  content: "";
}

.plan-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 34px;
}

.plan-band p:not(.kicker) {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.footer-inner strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--text);
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 62px;
}

.page-hero .page-lead {
  color: #c8dbc9;
}

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

.price-card {
  min-height: 100%;
}

.price-card.featured {
  border-color: var(--bloom-dark);
  background: #f2fff3;
}

.price {
  margin: 18px 0;
  color: var(--bloom-dark);
  font-size: 2rem;
  font-weight: 900;
}

.notice {
  margin-top: 24px;
  border: 1px solid #d8bd6e;
  border-radius: 8px;
  background: var(--gold-soft);
  color: #594414;
  padding: 16px 18px;
}

.legal-main {
  background: var(--paper);
}

.legal-shell {
  max-width: 860px;
  padding: 68px 0 84px;
}

.legal-card {
  margin-top: 22px;
}

@media (min-width: 1080px) {
  h1 {
    font-size: 4.7rem;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

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

  .step-grid,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .plan-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding: 58px 0 56px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lead,
  .page-lead {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

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

  .product-mockup,
  .step-card,
  .mode-card,
  .price-card,
  .responsible-card,
  .legal-card,
  .plan-band {
    padding: 20px;
  }

  .mockup-topline,
  .mode-line {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* SP-031-R5: conceptual repositioning around Brain Rot Filter. */
:root {
  color-scheme: dark;
  --r5-void: #020805;
  --r5-ink: #06100a;
  --r5-panel: #09160e;
  --r5-panel-2: #0d2115;
  --r5-line: rgba(142, 255, 151, 0.18);
  --r5-line-strong: rgba(142, 255, 151, 0.36);
  --r5-text: #f1fff0;
  --r5-muted: #abc5ae;
  --r5-soft: #dfffe3;
  --r5-green: #8eff97;
  --r5-green-2: #42e76b;
  --r5-gold: #d7b75a;
  --r5-paper: #f5fbf2;
  --r5-paper-text: #122018;
}

body {
  background:
    linear-gradient(180deg, var(--r5-void) 0%, #05100a 42%, #07130d 100%);
  color: var(--r5-text);
}

.site-header {
  border-bottom-color: rgba(142, 255, 151, 0.12);
  background: rgba(2, 8, 5, 0.9);
}

.brand {
  color: var(--r5-text);
}

.nav-links a {
  color: var(--r5-muted);
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(142, 255, 151, 0.1);
  color: var(--r5-text);
}

.r5-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    linear-gradient(115deg, rgba(142, 255, 151, 0.08), transparent 34%),
    linear-gradient(180deg, var(--r5-void) 0%, var(--r5-ink) 100%);
  padding: 96px 0 88px;
}

.r5-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142, 255, 151, 0.5), transparent);
  content: "";
}

.r5-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 62px;
}

.r5-hero-copy {
  max-width: 780px;
}

.r5-hero h1,
.page-hero h1 {
  max-width: 850px;
  color: var(--r5-text);
  font-size: 4.8rem;
  line-height: 1.02;
}

.r5-hero .lead {
  max-width: 710px;
  margin-top: 24px;
  color: var(--r5-muted);
  font-size: 1.25rem;
}

.eyebrow,
.kicker {
  color: var(--r5-green);
  letter-spacing: 0;
}

.button {
  border-color: var(--r5-green);
  background: var(--r5-green);
  color: #021006;
  box-shadow: 0 0 0 rgba(142, 255, 151, 0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  background: #b7ffbd;
  box-shadow: 0 0 28px rgba(142, 255, 151, 0.22);
  transform: translateY(-1px);
}

.button.secondary,
.button.secondary-light {
  border-color: var(--r5-line-strong);
  background: transparent;
  color: var(--r5-green);
}

.button.ghost {
  border-color: rgba(142, 255, 151, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--r5-text);
}

.trust-row,
.thesis-points,
.quick-modes,
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 30px;
}

.trust-row span,
.thesis-points span,
.quick-modes span,
.benefit-list span {
  border: 1px solid var(--r5-line);
  border-radius: 8px;
  background: rgba(142, 255, 151, 0.055);
  color: var(--r5-soft);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 10px;
}

.phone-showcase {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
}

.neon-ring {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 2px solid rgba(142, 255, 151, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 34px rgba(142, 255, 151, 0.38),
    inset 0 0 34px rgba(142, 255, 151, 0.12);
  animation: r5Pulse 3.6s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(330px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 13, 8, 0.96);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(142, 255, 151, 0.14);
  padding: 20px;
}

.phone-status,
.app-title,
.metric-grid,
.quick-modes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  color: #d7e7d8;
  font-size: 0.76rem;
  margin-bottom: 20px;
}

.app-title {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.menu-line,
.menu-line::before,
.menu-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: #d7e7d8;
}

.menu-line {
  position: relative;
}

.menu-line::before,
.menu-line::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-line::before {
  top: -6px;
}

.menu-line::after {
  top: 6px;
}

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

.metric-grid div {
  border: 1px solid rgba(142, 255, 151, 0.2);
  border-radius: 8px;
  background: rgba(142, 255, 151, 0.055);
  padding: 14px;
  text-align: center;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--r5-text);
  font-size: 1.1rem;
}

.metric-grid span {
  color: var(--r5-muted);
  font-size: 0.75rem;
  margin-top: 6px;
}

.active-mode {
  width: fit-content;
  margin: 16px auto 12px;
  border: 1px solid var(--r5-line-strong);
  border-radius: 8px;
  color: var(--r5-soft);
  font-size: 0.8rem;
  padding: 7px 10px;
}

.quick-modes {
  justify-content: center;
  gap: 7px;
}

.quick-modes span {
  font-size: 0.74rem;
  padding: 6px 8px;
}

.bloom-button {
  display: flex;
  justify-content: center;
  margin: 14px auto 0;
  width: 170px;
  border: 1px solid rgba(142, 255, 151, 0.58);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(142, 255, 151, 0.2), rgba(142, 255, 151, 0.08));
  box-shadow: 0 0 26px rgba(142, 255, 151, 0.22);
  color: var(--r5-text);
  font-weight: 900;
  padding: 12px 18px;
  text-decoration: none;
}

.r5-section {
  padding: 104px 0;
}

.thesis-section,
.tech-section,
.future-section {
  background: var(--r5-ink);
}

.intent-section,
.modes-section,
.pricing-cta,
.plans-r5,
.legal-main {
  background: #08130d;
}

.thesis-grid,
.behavior-grid,
.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.thesis-grid h2,
.section-header h2,
.behavior-grid h2,
.future-grid h2,
.pricing-band h2 {
  color: var(--r5-text);
}

.thesis-card,
.responsible-card,
.legal-card,
.price-card {
  border: 1px solid var(--r5-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--r5-text);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.thesis-card {
  padding: 30px;
}

.thesis-card p,
.section-header p:not(.eyebrow):not(.kicker),
.behavior-grid p,
.future-grid p,
.pricing-band p,
.legal-card p,
.price-card p {
  color: var(--r5-muted);
}

.thesis-points {
  margin-top: 22px;
}

.intent-flow,
.tech-grid,
.mode-stack,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.intent-flow div,
.tech-card,
.mode-stack article {
  border: 1px solid var(--r5-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.intent-flow div:hover,
.tech-card:hover,
.mode-stack article:hover {
  border-color: var(--r5-line-strong);
  background: rgba(142, 255, 151, 0.06);
  transform: translateY(-2px);
}

.intent-flow span,
.tech-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  border: 1px solid var(--r5-line-strong);
  border-radius: 8px;
  color: var(--r5-green);
  font-weight: 900;
  margin-bottom: 18px;
  padding: 0 8px;
}

.intent-flow strong,
.mode-stack strong {
  display: block;
  color: var(--r5-text);
  font-size: 1.08rem;
}

.intent-flow p,
.tech-card p,
.mode-stack span {
  display: block;
  margin-top: 10px;
  color: var(--r5-muted);
}

.tech-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.tech-card.feature-large {
  grid-row: span 3;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(142, 255, 151, 0.08), rgba(255, 255, 255, 0.035));
}

.tech-card h3 {
  color: var(--r5-text);
}

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

.behavior-section {
  background:
    linear-gradient(180deg, #07110b, #0b1c12);
}

.benefit-list {
  align-content: start;
}

.future-grid article {
  border: 1px solid var(--r5-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 260px;
  padding: 28px;
}

.pricing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(142, 255, 151, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(142, 255, 151, 0.12), rgba(255, 255, 255, 0.04));
  padding: 34px;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(142, 255, 151, 0.08), transparent 36%),
    var(--r5-void);
  color: var(--r5-text);
}

.page-hero .page-lead {
  color: var(--r5-muted);
}

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

.price-card.featured {
  border-color: rgba(142, 255, 151, 0.5);
  background: rgba(142, 255, 151, 0.075);
}

.price,
.trial {
  color: var(--r5-green);
}

.trial {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 900;
}

.price {
  margin: 6px 0 18px;
  font-size: 2.55rem;
}

.feature-list li,
.check-list li {
  color: var(--r5-muted);
}

.feature-list li::before,
.check-list li::before {
  background: var(--r5-green);
}

.notice {
  border-color: rgba(215, 183, 90, 0.52);
  background: rgba(215, 183, 90, 0.08);
  color: #f6e5a7;
}

.legal-shell h1,
.legal-card h2 {
  color: var(--r5-text);
}

.site-footer {
  border-top-color: var(--r5-line);
  background: var(--r5-void);
  color: var(--r5-muted);
}

.footer-inner strong,
.footer-links a:hover,
.footer-links a:focus {
  color: var(--r5-text);
}

.footer-links a {
  color: var(--r5-muted);
}

@keyframes r5Pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (max-width: 980px) {
  .r5-hero h1,
  .page-hero h1 {
    font-size: 3.35rem;
  }

  .r5-hero-grid,
  .thesis-grid,
  .behavior-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .intent-flow,
  .mode-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tech-card.feature-large {
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .r5-hero {
    min-height: auto;
    padding: 66px 0 62px;
  }

  .r5-hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .r5-hero .lead {
    font-size: 1.05rem;
  }

  .r5-section {
    padding: 68px 0;
  }

  .intent-flow,
  .mode-stack,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    min-height: 500px;
  }

  .neon-ring {
    width: 310px;
    height: 310px;
  }

  .phone-frame {
    width: min(300px, 100%);
  }

  .pricing-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* SP-031-R6: real BloomMode assets, corrected narrative, navigation, plans. */
:root {
  --r6-black: #010604;
  --r6-ink: #04110a;
  --r6-ink-2: #07170e;
  --r6-panel: rgba(255, 255, 255, 0.055);
  --r6-panel-strong: rgba(142, 255, 151, 0.09);
  --r6-line: rgba(142, 255, 151, 0.18);
  --r6-line-strong: rgba(142, 255, 151, 0.42);
  --r6-green: #8eff97;
  --r6-green-hot: #32ff64;
  --r6-muted: #a9c3ad;
  --r6-text: #f3fff1;
}

body {
  background:
    radial-gradient(circle at 72% 0%, rgba(50, 255, 100, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--r6-black) 0%, var(--r6-ink) 58%, #06120b 100%);
  color: var(--r6-text);
}

.r6-header {
  background: rgba(1, 6, 4, 0.74);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(142, 255, 151, 0.14);
}

.r6-nav {
  min-height: 72px;
}

.r6-brand {
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(142, 255, 151, 0.54));
}

.r6-nav-links a {
  color: var(--r6-muted);
}

.r6-nav-links a:hover,
.r6-nav-links a:focus {
  color: var(--r6-text);
}

.r6-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 94px;
}

.r6-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(142, 255, 151, 0.18), transparent 23rem),
    linear-gradient(140deg, rgba(142, 255, 151, 0.08), transparent 36%);
  content: "";
  pointer-events: none;
}

.r6-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.r6-hero-copy h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.98;
}

.brandline {
  display: inline-flex;
  margin: 0 0 22px;
  border: 1px solid var(--r6-line-strong);
  border-radius: 8px;
  background: rgba(142, 255, 151, 0.08);
  box-shadow: 0 0 30px rgba(142, 255, 151, 0.12);
  color: var(--r6-green);
  font-size: 0.96rem;
  font-weight: 900;
  padding: 10px 14px;
}

.brandline.closing {
  margin-bottom: 16px;
}

.r6-hero .lead {
  max-width: 700px;
  color: var(--r6-muted);
  font-size: 1.24rem;
}

.hero-visual {
  position: relative;
}

.hero-official-logo {
  position: absolute;
  top: -22px;
  right: 14px;
  z-index: 2;
  width: min(220px, 42vw);
  border-radius: 8px;
  opacity: 0.86;
  filter: drop-shadow(0 0 32px rgba(142, 255, 151, 0.28));
}

.hero-visual::before {
  position: absolute;
  inset: 10% 7%;
  border: 2px solid rgba(142, 255, 151, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(142, 255, 151, 0.34);
  content: "";
}

.r6-section {
  padding: 108px 0;
}

.product-section,
.compare-section,
.modes-section,
.plans-r5,
.legal-main {
  background: rgba(255, 255, 255, 0.018);
}

.showcase-grid,
.comparison-grid,
.ecosystem-grid,
.blog-grid,
.extension-grid {
  display: grid;
  gap: 24px;
}

.showcase-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.real-shot,
.comparison-card,
.blog-card,
.login-card {
  border: 1px solid var(--r6-line);
  border-radius: 8px;
  background: var(--r6-panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.real-shot {
  overflow: hidden;
  margin: 0;
  padding: 14px;
}

.real-shot img,
.screenshot-crop img {
  display: block;
  width: 100%;
}

.app-shot img {
  border-radius: 8px;
}

figcaption {
  color: var(--r6-muted);
  font-size: 0.9rem;
  padding: 14px 4px 2px;
}

.showcase-copy {
  border-left: 1px solid var(--r6-line);
  padding-left: 32px;
}

.showcase-copy h3 {
  color: var(--r6-text);
  font-size: 2rem;
}

.showcase-copy p {
  margin-top: 16px;
  color: var(--r6-muted);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--r6-green);
  font-weight: 900;
  text-decoration: none;
}

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

.comparison-card {
  overflow: hidden;
  margin: 0;
}

.comparison-card.after {
  border-color: var(--r6-line-strong);
  background: var(--r6-panel-strong);
}

.screenshot-crop {
  aspect-ratio: 9 / 13;
  overflow: hidden;
  background: #050807;
}

.crop-qa img {
  transform: translateY(-7.6%);
}

.mode-proof {
  margin: 28px auto 0;
  max-width: 420px;
}

.mode-proof img {
  min-height: 100%;
  object-fit: cover;
}

.mode-proof figcaption {
  color: var(--r6-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 12px 0 0;
}

.comparison-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.comparison-card strong {
  color: var(--r6-text);
  font-size: 1.08rem;
}

.comparison-card span {
  color: var(--r6-muted);
}

.tech-grid,
.intent-flow,
.mode-grid-r6 {
  gap: 22px;
}

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

.mode-grid-r6 article {
  border: 1px solid var(--r6-line);
  border-radius: 8px;
  background: var(--r6-panel);
  padding: 24px;
}

.mode-grid-r6 strong,
.mode-grid-r6 span {
  display: block;
}

.mode-grid-r6 strong {
  color: var(--r6-text);
  font-size: 1.1rem;
}

.mode-grid-r6 span {
  margin-top: 10px;
  color: var(--r6-muted);
}

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

.ecosystem-grid article,
.blog-card,
.extension-grid article {
  border: 1px solid var(--r6-line);
  border-radius: 8px;
  background: var(--r6-panel);
  padding: 28px;
}

.ecosystem-grid p,
.blog-card p,
.extension-grid p {
  color: var(--r6-muted);
}

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

.blog-card span {
  color: var(--r6-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 12px;
  color: var(--r6-text);
  font-size: 1.55rem;
}

.pricing-band {
  background:
    linear-gradient(135deg, rgba(142, 255, 151, 0.16), rgba(255, 255, 255, 0.035));
}

.login-shell {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 70px 0;
}

.login-card {
  max-width: 520px;
  padding: 34px;
  text-align: center;
}

.login-logo {
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(142, 255, 151, 0.44));
}

.login-card h1 {
  color: var(--r6-text);
  font-size: 2.2rem;
}

.login-card p:not(.kicker) {
  color: var(--r6-muted);
}

.button,
.tech-card,
.mode-grid-r6 article,
.blog-card,
.ecosystem-grid article {
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tech-card:hover,
.mode-grid-r6 article:hover,
.blog-card:hover,
.ecosystem-grid article:hover {
  border-color: var(--r6-line-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .r6-hero-grid,
  .showcase-grid,
  .comparison-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    border-left: 0;
    padding-left: 0;
  }

  .mode-grid-r6,
  .blog-grid,
  .extension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .r6-hero {
    padding: 72px 0 62px;
  }

  .brandline {
    font-size: 0.84rem;
  }

  .r6-section {
    padding: 72px 0;
  }

  .mode-grid-r6,
  .blog-grid,
  .extension-grid {
    grid-template-columns: 1fr;
  }
}

/* SP-031 R7 public site polish */
.r7-site {
  --r7-bg: #040806;
  --r7-panel: rgba(255, 255, 255, 0.062);
  --r7-line: rgba(219, 255, 220, 0.13);
  --r7-line-strong: rgba(142, 255, 151, 0.46);
  --r7-green: #8eff97;
  --r7-text: #f6fff5;
  --r7-muted: #b6c7b8;
  background:
    radial-gradient(circle at 78% 10%, rgba(142, 255, 151, 0.14), transparent 28rem),
    linear-gradient(180deg, #040806 0%, #06100b 48%, #f6faf3 86%, #ffffff 100%);
  color: var(--r7-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.r7-site .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(18px);
}

.r7-site .nav {
  min-height: 72px;
}

.r7-site .brand-logo {
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(142, 255, 151, 0.24));
}

.r7-site .nav-links {
  gap: 6px;
}

.r7-site .nav-links a {
  border-radius: 999px;
  color: rgba(246, 255, 245, 0.76);
  font-size: 0.9rem;
  padding: 9px 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.r7-site .nav-links a:hover,
.r7-site .nav-links a:focus {
  background: rgba(142, 255, 151, 0.11);
  color: var(--r7-text);
  transform: translateY(-1px);
}

.r7-site .r6-hero {
  min-height: auto;
  overflow: hidden;
  padding: 88px 0 82px;
  background:
    radial-gradient(circle at 70% 48%, rgba(142, 255, 151, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(142, 255, 151, 0.08), transparent 42%);
}

.r7-site .r6-hero-grid {
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.78fr);
}

.r7-site .r6-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.45rem);
  letter-spacing: 0;
  line-height: 0.98;
}

.r7-site .r6-hero .lead {
  max-width: 620px;
  color: var(--r7-muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.r7-site .brandline {
  border: 1px solid rgba(142, 255, 151, 0.38);
  border-radius: 999px;
  background: rgba(142, 255, 151, 0.09);
  box-shadow: 0 0 34px rgba(142, 255, 151, 0.14);
  color: var(--r7-text);
  font-size: 0.93rem;
  letter-spacing: 0;
}

.r7-site .actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.r7-site .button {
  align-items: center;
  border: 1px solid rgba(142, 255, 151, 0.46);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--r7-green), #d7ffd5);
  box-shadow: 0 16px 46px rgba(77, 221, 99, 0.18);
  color: #041007;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.r7-site .button:hover {
  box-shadow: 0 22px 64px rgba(77, 221, 99, 0.26);
  transform: translateY(-2px);
}

.r7-site .button.secondary,
.r7-site .button.ghost,
.r7-site .button.secondary-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--r7-text);
}

.r7-site .button.text {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--r7-green);
}

.r7-hero-demo {
  isolation: isolate;
  min-height: 460px;
  position: relative;
}

.r7-site .r7-hero-demo::before,
.r7-site .hero-official-logo {
  display: none;
}

.r7-ring {
  animation: r7-ring-pulse 4.8s ease-in-out infinite;
  border: 2px solid rgba(142, 255, 151, 0.48);
  border-radius: 50%;
  box-shadow:
    0 0 48px rgba(142, 255, 151, 0.2),
    inset 0 0 36px rgba(142, 255, 151, 0.12);
  height: min(420px, 72vw);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 72vw);
  z-index: 0;
}

.r7-site .r6-section,
.r7-site .r5-section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.r7-site .section-header {
  margin: 0 auto 42px;
  max-width: 840px;
  text-align: center;
}

.r7-site .section-header h2,
.r7-site .page-hero h1 {
  color: var(--r7-text);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
}

.r7-site .section-header p,
.r7-site .page-lead {
  color: var(--r7-muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.r7-site .kicker,
.r7-site .eyebrow {
  color: var(--r7-green);
  letter-spacing: 0;
  text-transform: none;
}

.r7-site .product-section,
.r7-site .intent-section,
.r7-site .modes-section {
  background: transparent;
}

.r7-site .real-shot,
.demo-frame,
.mode-proof {
  border: 1px solid var(--r7-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26);
}

.r7-site .screenshot-crop,
.demo-frame {
  aspect-ratio: 9 / 13;
  overflow: hidden;
}

.r7-site .crop-qa img {
  transform: translateY(-7.8%);
}

.r7-tabs {
  border: 1px solid var(--r7-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  padding: 16px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-list.vertical {
  align-content: flex-start;
  flex-direction: column;
  margin: 0;
}

.tab-trigger {
  border: 1px solid var(--r7-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--r7-muted);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 10px 14px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tab-trigger.is-active,
.tab-trigger:hover,
.tab-trigger:focus {
  border-color: var(--r7-line-strong);
  background: rgba(142, 255, 151, 0.14);
  color: var(--r7-text);
}

.tab-panel {
  display: none;
  gap: 28px;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.56fr);
  min-height: 480px;
  opacity: 0;
  transform: translateY(10px);
}

.tab-panel.is-active {
  animation: r7-panel-in 220ms ease forwards;
  display: grid;
}

.tech-tabs {
  display: grid;
  gap: 22px;
  grid-template-columns: 220px minmax(0, 1fr);
}

.tech-tabs .tab-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.45fr);
  min-height: 420px;
}

.panel-copy {
  align-self: center;
  padding: clamp(18px, 4vw, 44px);
}

.panel-copy h3 {
  color: var(--r7-text);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.panel-copy p,
.panel-copy span {
  color: var(--r7-muted);
  display: block;
  font-size: 1.02rem;
  line-height: 1.72;
  margin-top: 14px;
}

.demo-frame img {
  display: block;
  height: 108%;
  object-fit: cover;
  width: 100%;
}

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

.mode-showcase article,
.r7-site .blog-card,
.r7-site .tech-card,
.r7-site .price-card,
.r7-site .legal-card,
.r7-site .login-card {
  border: 1px solid var(--r7-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mode-showcase article {
  min-height: 250px;
  padding: 24px;
}

.mode-showcase article:hover,
.r7-site .blog-card:hover,
.r7-site .tech-card:hover,
.r7-site .price-card:hover {
  border-color: var(--r7-line-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.mode-showcase span {
  color: var(--r7-green);
  font-weight: 950;
}

.mode-showcase h3 {
  color: var(--r7-text);
  font-size: 1.32rem;
  margin-top: 18px;
}

.mode-showcase p {
  color: var(--r7-muted);
  line-height: 1.7;
}

.r7-site .pricing-band {
  align-items: center;
  border: 1px solid var(--r7-line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 50%, rgba(142, 255, 151, 0.2), transparent 20rem),
    rgba(255, 255, 255, 0.066);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 54px);
}

.r7-site .pricing-band h2 {
  color: var(--r7-text);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.r7-site .notice {
  border-color: rgba(142, 255, 151, 0.28);
  background: rgba(142, 255, 151, 0.075);
  color: var(--r7-muted);
}

.login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.r7-site .legal-main,
.r7-site .page-hero {
  background: transparent;
}

.r7-site .legal-shell,
.r7-site .login-card {
  color: var(--r7-text);
}

.r7-site .site-footer {
  border-top: 1px solid var(--r7-line);
  background: rgba(4, 8, 6, 0.92);
  color: var(--r7-muted);
}

.r7-site .footer-links a,
.r7-site .site-footer a {
  color: var(--r7-muted);
  text-decoration: none;
}

.r7-site .footer-links a:hover,
.r7-site .site-footer a:hover {
  color: var(--r7-green);
}

.r7-hero-copy,
.r7-hero-demo,
.r7-site .section-header,
.product-shot,
.product-copy,
.r7-tabs,
.mode-showcase,
.pricing-band,
.legal-shell,
.blog-card,
.tech-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.r7-hero-copy.is-visible,
.r7-hero-demo.is-visible,
.r7-site .section-header.is-visible,
.product-shot.is-visible,
.product-copy.is-visible,
.r7-tabs.is-visible,
.mode-showcase.is-visible,
.pricing-band.is-visible,
.legal-shell.is-visible,
.blog-card.is-visible,
.tech-card.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes r7-ring-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes r7-panel-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .r7-site .r6-hero-grid,
  .tab-panel,
  .tech-tabs,
  .tech-tabs .tab-panel,
  .mode-showcase {
    grid-template-columns: 1fr;
  }

  .r7-site .pricing-band {
    align-items: stretch;
    flex-direction: column;
  }

  .tab-list.vertical {
    flex-direction: row;
  }
}

@media (max-width: 700px) {
  .r7-site .r6-hero {
    padding: 64px 0 58px;
  }

  .r7-hero-demo {
    min-height: 360px;
  }

  .tab-panel {
    min-height: 0;
  }

  .mode-showcase {
    grid-template-columns: 1fr;
  }
}

/* SP-031 R8 hero-only refinement */
.r7-site .r8-hero {
  min-height: 0;
  padding: clamp(88px, 9vw, 126px) 0 clamp(92px, 10vw, 142px);
  background:
    radial-gradient(circle at 76% 48%, rgba(142, 255, 151, 0.18), transparent 21rem),
    radial-gradient(circle at 18% 22%, rgba(142, 255, 151, 0.08), transparent 19rem),
    linear-gradient(135deg, rgba(142, 255, 151, 0.085), transparent 38%);
}

.r7-site .r8-hero .r6-hero-grid {
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr);
}

.r7-site .r8-hero .r6-hero-copy {
  max-width: 690px;
}

.r8-eyebrow {
  color: var(--r7-green);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
}

.r7-site .r8-hero .r6-hero-copy h1 {
  color: var(--r7-text);
  font-family: "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.75rem, 5.6vw, 4.9rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 780px;
}

.r7-site .r8-hero .lead {
  color: rgba(230, 246, 229, 0.82);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  font-weight: 500;
  line-height: 1.62;
  margin-top: 22px;
  max-width: 560px;
}

.r7-site .r8-hero .actions {
  margin-top: 30px;
}

.r7-site .r8-hero .button {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  min-height: 44px;
  padding: 11px 17px;
}

.r8-mark-stage {
  align-items: center;
  display: grid;
  isolation: isolate;
  justify-items: center;
  min-height: clamp(340px, 43vw, 520px);
  perspective: 1100px;
  position: relative;
}

.r8-ring {
  animation: r8-ring-breathe 4.14s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  border: 2px solid rgba(142, 255, 151, 0.42);
  border-radius: 50%;
  grid-area: 1 / 1;
  height: clamp(245px, 33vw, 410px);
  width: clamp(245px, 33vw, 410px);
}

.r8-ring-back {
  background:
    radial-gradient(circle, rgba(142, 255, 151, 0.11), transparent 58%),
    radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 64%);
  box-shadow:
    0 0 46px rgba(142, 255, 151, 0.2),
    inset 0 0 42px rgba(142, 255, 151, 0.12);
  opacity: 0.92;
  z-index: 0;
}

.r8-ring-front {
  border-color: rgba(208, 255, 206, 0.2);
  box-shadow: 0 0 24px rgba(142, 255, 151, 0.12);
  opacity: 0.44;
  z-index: 3;
}

.r82-logo-slot {
  filter:
    drop-shadow(0 28px 54px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 26px rgba(142, 255, 151, 0.22));
  grid-area: 1 / 1;
  height: clamp(222px, 29vw, 365px);
  position: relative;
  width: clamp(222px, 29vw, 365px);
  z-index: 2;
}

.r82-logo-static {
  display: block;
  height: 100%;
  object-fit: contain;
  opacity: 0.98;
  width: 100%;
  transform: translateY(-2px);
}

.r7-site .r8-hero .r7-hero-demo {
  min-height: 0;
}

@keyframes r8-ring-breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.88);
  }

  25% {
    opacity: 0.72;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.02);
  }

  75% {
    opacity: 0.98;
    transform: scale(1.075);
  }
}

@media (max-width: 980px) {
  .r7-site .r8-hero .r6-hero-grid {
    grid-template-columns: 1fr;
  }

  .r7-site .r8-hero .r6-hero-copy {
    max-width: 760px;
  }

  .r8-mark-stage {
    min-height: 380px;
  }
}

@media (max-width: 700px) {
  .r7-site .r8-hero {
    padding: 72px 0 78px;
  }

  .r7-site .r8-hero .r6-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .r7-site .r8-hero .lead {
    font-size: 1.05rem;
  }

  .r8-mark-stage {
    min-height: 315px;
  }
}

/* R2.1 keeps the ring phase locked to the video instead of a CSS clock. */
.hero-motion-r21 {
  aspect-ratio: 1;
  contain: layout;
  display: grid;
  isolation: isolate;
  min-height: 0;
  place-items: center;
  position: relative;
  width: min(520px, 100%);
}

.hero-motion-r21 > * {
  grid-area: 1 / 1;
}

.hero-motion-r21 .r8-ring {
  animation: none;
}

.hero-motion-r21__glow {
  background: radial-gradient(circle, rgba(142, 255, 151, 0.28) 0%, rgba(142, 255, 151, 0.12) 38%, transparent 70%);
  border-radius: 50%;
  height: min(500px, 88vw);
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.94);
  transform-origin: center;
  width: min(500px, 88vw);
  will-change: opacity, transform;
  z-index: 0;
}

.hero-motion-r21__ring {
  height: min(480px, 84vw);
  transform: scale(0.88);
  transform-origin: center;
  width: min(480px, 84vw);
  will-change: opacity, transform;
}

.hero-motion-r21__ring.r8-ring-back {
  opacity: 0.58;
  z-index: 1;
}

.hero-motion-r21__poster,
.hero-motion-r21__video {
  display: block;
  height: clamp(320px, 31vw, 380px);
  max-height: 74vw;
  max-width: 74vw;
  object-fit: contain;
  pointer-events: none;
  width: clamp(320px, 31vw, 380px);
  z-index: 3;
}

.hero-motion-r21__poster {
  opacity: 1;
  transition: opacity 100ms linear;
}

.hero-motion-r21__poster.is-hidden {
  opacity: 0;
}

.hero-motion-r21__video {
  opacity: 0;
  transition: opacity 100ms linear;
}

.hero-motion-r21__video.is-ready {
  opacity: 1;
}

.hero-motion-r21__ring.r8-ring-front {
  opacity: 0.28;
  z-index: 4;
}

/* R2.3: a primeira dobra assume a viewport e a navegação deixa de ocupar uma barra inteira. */
:root {
  --floating-nav-height: 68px;
  --floating-nav-offset: 16px;
}

.r7-site .site-header.r6-header {
  -webkit-backdrop-filter: blur(12px) saturate(115%);
  backdrop-filter: blur(12px) saturate(115%);
  background: rgba(4, 10, 7, 0.56);
  background-clip: padding-box;
  border: 1px solid rgba(220, 255, 217, 0.09);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  left: 0;
  margin-inline: auto;
  opacity: 1;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 0;
  top: var(--floating-nav-offset);
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  width: min(1180px, calc(100% - 32px));
  will-change: transform, opacity;
  z-index: 50;
}

.r7-site .site-header.r6-header.is-nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - var(--floating-nav-offset) - 12px));
}

.r7-site .site-header .r6-nav {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  gap: 20px;
  min-height: var(--floating-nav-height);
  padding: 8px 14px 8px 18px;
}

.r7-site .site-header .r6-nav-links {
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.r7-site .site-header .r6-nav-links a {
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 12px;
}

.r7-site .site-header .r6-nav-links a[aria-current="page"] {
  background: rgba(142, 255, 151, 0.12);
  color: #e9ffe7;
}

.r7-site .site-header .r6-nav-links a:focus-visible,
.nav-menu-toggle:focus-visible {
  outline: 2px solid rgba(142, 255, 151, 0.88);
  outline-offset: 3px;
}

.nav-menu-toggle {
  display: none;
}

.r7-site .r8-hero {
  align-items: center;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: clamp(54px, 7vh, 92px);
  padding-top: calc(var(--floating-nav-height) + var(--floating-nav-offset) + 32px);
}

.r7-site .r8-hero .r6-hero-grid {
  align-items: center;
  margin-inline: auto;
  width: min(1120px, calc(100% - 32px));
}

.hero-motion-r21::before {
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 68%);
  border-radius: 50%;
  content: "";
  grid-area: 1 / 1;
  height: 58%;
  pointer-events: none;
  transform: translateY(23%);
  width: 65%;
  z-index: 2;
}

.hero-motion-r21__poster,
.hero-motion-r21__video {
  transform: translateY(-2px);
}

@media (max-height: 720px) and (min-width: 701px) {
  .r7-site .r8-hero {
    padding-bottom: 42px;
    padding-top: calc(var(--floating-nav-height) + var(--floating-nav-offset) + 20px);
  }
}

@media (max-width: 840px) {
  :root {
    --floating-nav-height: 62px;
    --floating-nav-offset: 12px;
  }

  .r7-site .site-header.r6-header {
    overflow: visible;
    width: calc(100% - 24px);
  }

  .r7-site .site-header .r6-nav {
    gap: 12px;
    min-height: var(--floating-nav-height);
    padding: 7px 10px 7px 15px;
    position: relative;
  }

  .nav-menu-toggle {
    appearance: none;
    background: rgba(142, 255, 151, 0.08);
    border: 1px solid rgba(220, 255, 217, 0.12);
    border-radius: 14px;
    color: inherit;
    height: 42px;
    margin-left: auto;
    padding: 0;
    place-content: center;
    width: 42px;
  }

  .site-header.js-nav-ready .nav-menu-toggle {
    display: grid;
  }

  .nav-menu-toggle span {
    background: #e9ffe7;
    border-radius: 99px;
    display: block;
    height: 2px;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 18px;
  }

  .nav-menu-toggle span + span {
    margin-top: 4px;
  }

  .site-header.is-menu-open .nav-menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .r7-site .site-header .r6-nav-links {
    align-items: stretch;
    background: rgba(4, 10, 7, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 255, 217, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 2px;
    left: 0;
    margin: 0;
    opacity: 1;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    transform: translateY(0);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .r7-site .site-header .r6-nav-links a {
    padding: 11px 12px;
  }

  .site-header.js-nav-ready .r6-nav-links {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
  }

  .site-header.js-nav-ready.is-menu-open .r6-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .r7-site .r8-hero {
    display: block;
    min-height: 0;
    padding-bottom: 78px;
    padding-top: calc(var(--floating-nav-height) + var(--floating-nav-offset) + 46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .r7-site .site-header.r6-header {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-motion-r21 {
    width: min(460px, 100%);
  }

  .hero-motion-r21__ring {
    height: min(430px, 86vw);
    width: min(430px, 86vw);
  }

  .hero-motion-r21__poster,
  .hero-motion-r21__video {
    height: min(68vw, 330px);
    width: min(68vw, 330px);
  }
}

/* DL-043 — public surface for the free BloomMode Extension Beta. */
.beta-site {
  --beta-bg: #040806;
  --beta-surface: #09130d;
  --beta-surface-strong: #0d1d13;
  --beta-text: #f4fff3;
  --beta-muted: #b7c7b9;
  --beta-green: #8eff97;
  --beta-green-strong: #4bf573;
  --beta-line: rgba(218, 255, 219, 0.14);
  background:
    radial-gradient(circle at 82% 8%, rgba(75, 245, 115, 0.13), transparent 30rem),
    linear-gradient(180deg, #040806 0%, #071009 46%, #040806 100%);
  color: var(--beta-text);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  min-width: 0;
  overflow-x: hidden;
}

.beta-site [hidden] {
  display: none !important;
}

.beta-site h1,
.beta-site h2,
.beta-site h3,
.beta-site .brand {
  font-family: "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.beta-site h1,
.beta-site h2,
.beta-site h3,
.beta-site p {
  overflow-wrap: anywhere;
}

.beta-site h2 {
  font-size: 2.65rem;
  line-height: 1.08;
  margin: 0;
}

.beta-site h3 {
  line-height: 1.2;
}

.beta-site p {
  color: var(--beta-muted);
}

.beta-site a {
  color: inherit;
}

.beta-site .wrap {
  margin-inline: auto;
  width: min(1120px, calc(100% - 32px));
}

.beta-header {
  -webkit-backdrop-filter: blur(12px) saturate(115%);
  backdrop-filter: blur(12px) saturate(115%);
  background: rgba(4, 10, 7, 0.58);
  background-clip: padding-box;
  border: 1px solid rgba(220, 255, 217, 0.1);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  left: 0;
  margin-inline: auto;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 16px;
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  width: min(1180px, calc(100% - 32px));
  will-change: transform, opacity;
  z-index: 50;
}

.beta-header.is-nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 28px));
}

.beta-nav {
  background: transparent;
  gap: 18px;
  min-height: 66px;
  padding: 8px 14px 8px 18px;
  width: 100%;
}

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

.beta-brand span {
  font-size: 1rem;
}

.beta-brand .brand-logo {
  filter: drop-shadow(0 0 12px rgba(142, 255, 151, 0.35));
}

.beta-nav-links {
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  margin-left: auto;
}

.beta-nav-links a {
  border-radius: 8px;
  color: rgba(244, 255, 243, 0.76);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 40px;
  padding: 10px 9px;
  text-decoration: none;
  white-space: nowrap;
}

.beta-nav-links a:hover,
.beta-nav-links a:focus-visible,
.beta-nav-links a[aria-current="page"] {
  background: rgba(142, 255, 151, 0.1);
  color: var(--beta-text);
}

.beta-nav-tools {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.beta-nav-tools .nav-install {
  align-items: center;
  background: var(--beta-green);
  border-radius: 8px;
  color: #031008;
  cursor: not-allowed;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 40px;
  opacity: 0.64;
  padding: 9px 12px;
  white-space: nowrap;
}

.locale-picker {
  position: relative;
}

.locale-trigger {
  align-items: center;
  appearance: none;
  background: rgba(142, 255, 151, 0.065);
  border: 1px solid rgba(142, 255, 151, 0.2);
  border-radius: 8px;
  color: var(--beta-text);
  cursor: pointer;
  display: inline-flex;
  font: 800 0.74rem/1 "Manrope", sans-serif;
  gap: 7px;
  justify-content: center;
  min-height: 40px;
  min-width: 68px;
  padding: 8px 10px;
}

.locale-trigger:hover,
.locale-trigger[aria-expanded="true"] {
  background: rgba(142, 255, 151, 0.12);
  border-color: rgba(142, 255, 151, 0.42);
}

.globe-icon {
  border: 1.5px solid var(--beta-green);
  border-radius: 50%;
  display: inline-block;
  height: 16px;
  position: relative;
  width: 16px;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.globe-icon::before {
  border-left: 1px solid var(--beta-green);
  border-right: 1px solid var(--beta-green);
  border-radius: 50%;
  height: 13px;
  width: 6px;
}

.globe-icon::after {
  border-top: 1px solid var(--beta-green);
  width: 12px;
}

.locale-menu {
  background: rgba(5, 13, 8, 0.98);
  border: 1px solid rgba(142, 255, 151, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  color: var(--beta-text);
  gap: 4px;
  inset: auto var(--locale-menu-right, 16px) auto auto;
  margin: 0;
  min-width: 230px;
  padding: 7px;
  position: fixed;
  top: var(--locale-menu-top, 80px);
  z-index: 100;
}

.locale-menu:popover-open {
  display: grid;
}

.locale-menu[hidden] {
  display: none;
}

.locale-menu button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: 700 0.84rem/1.25 "Manrope", sans-serif;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 10px;
  text-align: left;
  width: 100%;
}

.locale-menu button:hover,
.locale-menu button:focus-visible,
.locale-menu button[aria-current="true"] {
  background: rgba(142, 255, 151, 0.1);
}

.locale-menu button[aria-current="true"] {
  color: var(--beta-green);
}

.locale-menu small {
  color: var(--beta-muted);
  font-size: 0.68rem;
}

.beta-site .nav-menu-toggle {
  display: none;
}

.beta-hero {
  align-items: center;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 118px 0 68px;
  position: relative;
}

.beta-hero::before {
  background:
    radial-gradient(circle at 74% 48%, rgba(142, 255, 151, 0.14), transparent 23rem),
    linear-gradient(135deg, rgba(142, 255, 151, 0.045), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.beta-hero-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  position: relative;
}

.beta-hero-copy {
  max-width: 650px;
}

.beta-hero .eyebrow,
.beta-site .kicker {
  color: var(--beta-green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.beta-hero h1 {
  color: var(--beta-text);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.beta-hero .brandline {
  color: var(--beta-green);
  font-family: "Sora", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 20px 0 0;
}

.beta-hero .lead {
  color: rgba(239, 250, 239, 0.88);
  font-size: 1.2rem;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 620px;
}

.beta-notice {
  border-left: 2px solid rgba(142, 255, 151, 0.55);
  font-size: 0.9rem;
  margin: 22px 0 0;
  max-width: 570px;
  padding-left: 14px;
}

.beta-site .actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.beta-site .button {
  align-items: center;
  background: var(--beta-green);
  border: 1px solid transparent;
  border-radius: 8px;
  color: #031008;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.beta-site .button:not(.is-disabled):hover {
  background: #a6ffac;
  transform: translateY(-2px);
}

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

.beta-site .button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.beta-site .hero-visual {
  display: grid;
  min-width: 0;
  place-items: center;
}

.beta-site .hero-motion-r21 {
  width: min(480px, 100%);
}

.beta-site .hero-motion-r21__poster,
.beta-site .hero-motion-r21__video {
  height: 350px;
  max-height: 70vw;
  max-width: 70vw;
  width: 350px;
}

.beta-site .hero-motion-r21__ring {
  height: min(440px, 82vw);
  width: min(440px, 82vw);
}

.beta-site .hero-motion-r21__glow {
  height: min(465px, 86vw);
  width: min(465px, 86vw);
}

.beta-section {
  padding: 108px 0;
  position: relative;
}

.beta-section + .beta-section {
  border-top: 1px solid rgba(218, 255, 219, 0.06);
}

.split-intro,
.install-grid,
.donate-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.split-intro > div:last-child > p {
  font-size: 1.12rem;
  line-height: 1.75;
  margin-top: 0;
}

.clean-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.clean-list li {
  align-items: center;
  color: var(--beta-text);
  display: flex;
  gap: 10px;
}

.clean-list li::before {
  background: var(--beta-green);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.modes-beta-section {
  background: linear-gradient(180deg, rgba(13, 29, 19, 0.56), rgba(4, 8, 6, 0.12));
}

.section-header.compact {
  max-width: 720px;
}

.section-header.compact > p:last-child {
  font-size: 1.03rem;
  line-height: 1.7;
  margin-top: 20px;
}

.beta-mode-list {
  border-top: 1px solid var(--beta-line);
  margin-top: 58px;
}

.beta-mode {
  align-items: start;
  border-bottom: 1px solid var(--beta-line);
  display: grid;
  gap: 32px;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 32px 4px;
}

.beta-mode-featured {
  background: linear-gradient(90deg, rgba(142, 255, 151, 0.075), transparent 65%);
}

.mode-index {
  color: rgba(142, 255, 151, 0.58);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  padding-top: 7px;
}

.beta-mode h3 {
  font-size: 1.65rem;
  margin: 0;
}

.mode-suffix {
  color: var(--beta-green);
  font-size: 0.82em;
  font-weight: 500;
}

.beta-mode p {
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 850px;
}

.beta-mode .mode-detail {
  color: rgba(231, 245, 231, 0.82);
}

.install-section {
  background:
    radial-gradient(circle at 15% 40%, rgba(75, 245, 115, 0.08), transparent 22rem),
    #050b07;
}

.install-heading {
  position: sticky;
  top: 120px;
}

.install-heading > p:not(.kicker) {
  line-height: 1.7;
}

.availability-label {
  border: 1px solid rgba(142, 255, 151, 0.25);
  border-radius: 8px;
  color: var(--beta-green);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 18px;
  padding: 8px 11px;
}

.install-steps {
  counter-reset: none;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.install-steps li {
  align-items: center;
  border-bottom: 1px solid var(--beta-line);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 19px 0;
}

.install-steps li:first-child {
  border-top: 1px solid var(--beta-line);
}

.install-steps span {
  align-items: center;
  border: 1px solid rgba(142, 255, 151, 0.25);
  border-radius: 50%;
  color: var(--beta-green);
  display: flex;
  font-size: 0.8rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.install-steps p {
  color: var(--beta-text);
  margin: 0;
}

.future-app-card {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(142, 255, 151, 0.08), transparent 52%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid var(--beta-line);
  border-radius: 8px;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr);
  padding: 56px;
}

.future-app-card > img {
  height: auto;
  max-width: 100%;
}

.future-app-card p {
  line-height: 1.7;
}

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

.community-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--beta-line);
  border-radius: 8px;
  padding: 30px;
}

.community-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.community-card p {
  line-height: 1.7;
}

.community-card .fine-print {
  font-size: 0.84rem;
}

.stacked-links {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.stacked-links a,
.social-links a {
  color: var(--beta-green);
  font-weight: 700;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.donate-section {
  background: linear-gradient(180deg, rgba(142, 255, 151, 0.04), rgba(4, 8, 6, 0));
}

.donate-grid {
  align-items: center;
}

.donate-grid > div:first-child > p:not(.kicker) {
  font-size: 1.05rem;
  line-height: 1.72;
}

.donation-rule {
  border-left: 2px solid rgba(142, 255, 151, 0.45);
  font-size: 0.88rem !important;
  padding-left: 14px;
}

.donation-options {
  display: grid;
  gap: 12px;
}

.pix-placeholder {
  align-items: center;
  background: rgba(255, 255, 255, 0.022);
  border: 1px dashed rgba(142, 255, 151, 0.32);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  min-height: 280px;
  padding: 36px;
  text-align: center;
}

.payment-badge {
  background: var(--beta-green);
  border-radius: 6px;
  color: #031008;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 5px 9px;
}

.regional-support-note,
.paypal-placeholder {
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid var(--beta-line);
  border-radius: 8px;
  padding: 20px;
}

.regional-support-note p {
  margin-top: 0;
}

.paypal-placeholder {
  color: var(--beta-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.email-copy-row,
.footer-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-copy-row {
  margin: 20px 0 16px;
}

.email-copy-row span,
.footer-contact span {
  color: var(--beta-text);
  font-weight: 700;
}

.email-copy-row button,
.footer-contact button,
.footer-copy-button,
.support-email-panel button {
  appearance: none;
  background: rgba(142, 255, 151, 0.08);
  border: 1px solid rgba(142, 255, 151, 0.2);
  border-radius: 7px;
  color: var(--beta-green);
  cursor: pointer;
  font: 800 0.76rem/1 "Manrope", sans-serif;
  min-height: 36px;
  padding: 8px 11px;
}

.support-email-panel {
  align-items: center;
  background: rgba(142, 255, 151, 0.05);
  border: 1px solid var(--beta-line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin: 30px 0 44px;
  padding: 20px;
}

.support-email-panel > span {
  color: var(--beta-text);
  font-weight: 800;
}

.footer-copy-button {
  justify-self: start;
}

.instagram-link {
  align-items: center;
  display: inline-flex !important;
  gap: 8px;
}

.instagram-icon {
  border: 1.5px solid var(--beta-green);
  border-radius: 5px;
  display: inline-block;
  height: 17px;
  position: relative;
  width: 17px;
}

.instagram-icon::before {
  border: 1.5px solid var(--beta-green);
  border-radius: 50%;
  content: "";
  height: 5px;
  inset: 4.5px;
  position: absolute;
  width: 5px;
}

.instagram-icon::after {
  background: var(--beta-green);
  border-radius: 50%;
  content: "";
  height: 2px;
  position: absolute;
  right: 2.5px;
  top: 2.5px;
  width: 2px;
}

.hash-alias {
  display: block;
  height: 0;
  position: relative;
  top: -96px;
  visibility: hidden;
}

.copy-status {
  background: #102419;
  border: 1px solid rgba(142, 255, 151, 0.32);
  border-radius: 8px;
  bottom: 18px;
  color: var(--beta-text);
  font-size: 0.82rem;
  left: 50%;
  opacity: 0;
  padding: 10px 14px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 12px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 120;
}

.copy-status.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.pix-placeholder .pix-qr {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 0;
  filter: none;
  height: auto;
  margin-bottom: 18px;
  max-width: 100%;
  object-fit: contain;
  width: min(320px, 100%);
}

.pix-placeholder strong {
  font-family: "Sora", sans-serif;
}

.pix-placeholder p {
  font-size: 0.88rem;
  max-width: 360px;
}

.beta-footer {
  background: #030604;
  border-top: 1px solid var(--beta-line);
  padding: 48px 0;
}

.beta-footer-grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr) minmax(190px, 0.55fr);
}

.beta-footer p {
  font-size: 0.82rem;
  margin: 8px 0 0;
}

.beta-footer .footer-links {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.beta-footer .footer-links a {
  color: var(--beta-muted);
  font-size: 0.82rem;
}

.beta-legal-main {
  min-height: calc(100vh - 180px);
  padding: 150px 0 96px;
}

.beta-legal-shell {
  max-width: 820px;
}

.beta-legal-shell > h1 {
  font-size: 3.25rem;
  line-height: 1.08;
  margin: 0;
}

.beta-legal-shell .page-lead {
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 24px 0 58px;
}

.beta-legal-shell section {
  border-top: 1px solid var(--beta-line);
  padding: 30px 0;
}

.beta-legal-shell section h2 {
  font-size: 1.35rem;
}

.beta-legal-shell section p {
  line-height: 1.75;
}

.beta-legal-shell section a {
  color: var(--beta-green);
}

.support-action-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 58px;
}

.support-action-grid > a {
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--beta-line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 19px 20px;
  text-decoration: none;
}

.support-action-grid > a:hover,
.support-action-grid > a:focus-visible {
  border-color: rgba(142, 255, 151, 0.48);
}

.support-action-grid span {
  color: var(--beta-muted);
  font-size: 0.82rem;
}

.beta-site :focus-visible {
  outline: 2px solid var(--beta-green);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .beta-nav-links a {
    font-size: 0.74rem;
    padding-inline: 7px;
  }

  .beta-nav-tools .nav-install {
    font-size: 0.7rem;
    padding-inline: 9px;
  }

  .beta-hero-grid {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
  }

  .beta-hero h1 {
    font-size: 3.6rem;
  }

  .beta-site h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 840px) {
  .beta-header {
    overflow: visible;
    top: 12px;
    width: calc(100% - 24px);
  }

  .beta-nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 60px;
    padding: 7px 10px 7px 14px;
    position: relative;
  }

  .beta-nav-tools {
    gap: 7px;
    margin-left: auto;
  }

  .beta-nav-tools .nav-install {
    display: none;
  }

  .beta-site .nav-menu-toggle {
    appearance: none;
    background: rgba(142, 255, 151, 0.08);
    border: 1px solid var(--beta-line);
    border-radius: 8px;
    color: inherit;
    height: 42px;
    margin-left: 0;
    padding: 0;
    place-content: center;
    width: 42px;
  }

  .beta-header.js-nav-ready .nav-menu-toggle {
    display: grid;
  }

  .beta-site .nav-menu-toggle span {
    background: var(--beta-text);
    border-radius: 2px;
    display: block;
    height: 2px;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 18px;
  }

  .beta-site .nav-menu-toggle span + span {
    margin-top: 4px;
  }

  .beta-header.is-menu-open .nav-menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .beta-header.is-menu-open .nav-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .beta-header.is-menu-open .nav-menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .beta-nav-links {
    align-items: stretch;
    background: rgba(4, 10, 7, 0.97);
    border: 1px solid var(--beta-line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    gap: 2px;
    left: 0;
    margin: 0;
    opacity: 1;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    transform: translateY(0);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .beta-nav-links a {
    font-size: 0.86rem;
    margin: 0;
    padding: 11px 12px;
    white-space: normal;
  }

  .beta-header.js-nav-ready .beta-nav-links {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
  }

  .beta-header.js-nav-ready.is-menu-open .beta-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .beta-hero {
    min-height: 0;
    padding: 128px 0 80px;
  }

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

  .beta-site .hero-visual {
    margin-top: 12px;
  }

  .split-intro,
  .install-grid,
  .donate-grid,
  .future-app-card,
  .beta-footer-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .install-heading {
    position: static;
  }

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

  .future-app-card {
    padding: 38px;
  }
}

@media (max-width: 560px) {
  .beta-site .wrap {
    width: min(100% - 24px, 1120px);
  }

  .beta-hero h1 {
    font-size: 3rem;
  }

  .beta-hero .brandline {
    font-size: 1.12rem;
  }

  .beta-hero .lead {
    font-size: 1.04rem;
  }

  .beta-site h2,
  .beta-legal-shell > h1 {
    font-size: 2rem;
  }

  .beta-section {
    padding: 78px 0;
  }

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

  .beta-mode {
    gap: 12px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .beta-mode h3 {
    font-size: 1.35rem;
  }

  .future-app-card,
  .community-card,
  .pix-placeholder {
    padding: 24px;
  }

  .beta-brand span {
    display: none;
  }

  .locale-trigger {
    min-width: 66px;
    padding-inline: 8px;
  }

  .support-action-grid > a {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .beta-header,
  .beta-site *,
  .beta-site *::before,
  .beta-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
