:root {
  color-scheme: dark;
  --ink: #050505;
  --ink-soft: #090a0b;
  --surface: #101113;
  --surface-strong: #151619;
  --surface-raised: #191a1e;
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.065);
  --text: #f8f4ee;
  --muted: #b7afa5;
  --quiet: #8f8880;
  --amber: #ffb657;
  --orange: #ff7a3e;
  --coral: #ff684f;
  --gold: #ffd36f;
  --teal: #58d9c5;
  --blue: #71a8ff;
  --pink: #ff759f;
  --violet: #a98aff;
  --success: #72dda1;
  --cta: linear-gradient(105deg, #ffc565 0%, #ff914e 48%, #ff6e3d 100%);
  --warm-text: linear-gradient(105deg, #ffd579 0%, #ff9b52 52%, #ff6a3d 100%);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell: 1200px;
  --nav-height: 76px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 7%, rgba(62, 149, 141, 0.08), transparent 25rem),
    radial-gradient(circle at 20% 16%, rgba(255, 120, 56, 0.07), transparent 28rem),
    var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 182, 87, 0.78);
  outline-offset: 4px;
}

::selection {
  color: #140b04;
  background: var(--amber);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  padding-right: var(--safe-right);
  padding-left: var(--safe-left);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--text);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: calc(var(--nav-height) + var(--safe-top));
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 5, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.site-nav .shell,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  background: var(--cta);
  clip-path: polygon(50% 0, 60% 36%, 100% 50%, 61% 60%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 12px rgba(255, 127, 58, 0.38));
}

.brand-mark::after {
  position: absolute;
  inset: 8px;
  content: "";
  border-radius: 50%;
  background: #fff1d4;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(255, 177, 91, 0.24);
  border-radius: 9px;
  background: rgba(255, 126, 61, 0.15);
  color: #ffb25f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 630;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 14px;
  font-weight: 730;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(255, 182, 87, 0.34);
  background: rgba(255, 182, 87, 0.10);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--nav-height) + var(--safe-top) + 104px) 0 72px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--ink));
}

.hero-aurora {
  position: absolute;
  top: 40px;
  left: 50%;
  width: min(1100px, 90vw);
  height: 760px;
  pointer-events: none;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 70% 42%, rgba(62, 203, 190, 0.12), transparent 37%),
    radial-gradient(ellipse at 30% 35%, rgba(255, 127, 56, 0.12), transparent 38%);
  filter: blur(24px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  position: relative;
  z-index: 8;
  max-width: 630px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8c7b2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 181, 87, 0.64);
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0 24px;
  color: var(--text);
  font-size: clamp(3.5rem, 6.1vw, 5.65rem);
  font-weight: 790;
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  padding-bottom: 0.09em;
  background: var(--warm-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 615px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(255, 195, 98, 0.72);
  background: var(--cta);
  color: #1a0d05;
  box-shadow: 0 14px 40px rgba(255, 110, 54, 0.20), inset 0 1px rgba(255, 255, 255, 0.56);
}

.button-primary:hover {
  border-color: rgba(255, 215, 150, 0.92);
  background: linear-gradient(105deg, #ffd17f, #ff9d5a 48%, #ff7a48);
  box-shadow: 0 18px 48px rgba(255, 110, 54, 0.28), inset 0 1px rgba(255, 255, 255, 0.62);
}

.button-secondary {
  background: #111214;
}

.launch-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  color: var(--text);
}

.launch-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 183, 84, 0.22);
  border-radius: 13px;
  background: rgba(255, 160, 65, 0.10);
  color: var(--amber);
  font-size: 17px;
}

.launch-line > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.launch-line strong {
  font-size: 14px;
  font-weight: 740;
}

.launch-line small {
  color: var(--quiet);
  font-size: 12px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  color: #a79f96;
  font-size: 12px;
  font-weight: 650;
}

.hero-product {
  position: relative;
  min-height: 730px;
  isolation: isolate;
}

.hero-halo {
  position: absolute;
  top: 11%;
  left: 50%;
  width: 480px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 133, 62, 0.18), rgba(60, 198, 185, 0.08) 44%, transparent 72%);
  filter: blur(14px);
  transform: translateX(-50%);
}

.device {
  position: relative;
  margin: 0;
  aspect-ratio: 1206 / 2622;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 52px;
  background: linear-gradient(145deg, #37383b 0%, #09090a 22%, #060607 76%, #2b2c2f 100%);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.80), inset 0 1px 1px rgba(255, 255, 255, 0.20);
}

.device::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055), inset 0 -20px 35px rgba(0, 0, 0, 0.14);
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 45px;
  background: #000;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-hero {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 5;
  width: 320px;
  transform: translateX(-50%) rotate(-1.4deg);
}

.device-peek {
  position: absolute;
  top: 130px;
  z-index: 2;
  width: 252px;
  opacity: 0.72;
  filter: saturate(0.86) brightness(0.76);
}

.device-peek-left {
  left: -8px;
  transform: rotate(-7deg);
}

.device-peek-right {
  right: -6px;
  transform: rotate(7deg);
}

.floating-proof {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 194px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.floating-proof > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 151, 69, 0.14);
  color: var(--amber);
  font-size: 17px;
  font-weight: 850;
}

.floating-proof div {
  display: flex;
  flex-direction: column;
}

.floating-proof strong {
  font-size: 12px;
  line-height: 1.25;
}

.floating-proof small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 10px;
}

.floating-proof-top {
  top: 83px;
  right: -14px;
}

.floating-proof-bottom {
  bottom: 64px;
  left: 2px;
}

.signal-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 0 24px;
  border-right: 1px solid var(--line-soft);
}

.signal-grid > div:first-child {
  padding-left: 0;
}

.signal-grid > div:last-child {
  border-right: 0;
}

.signal-grid strong {
  color: #6f6962;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.signal-grid span {
  color: #d8d1c9;
  font-size: 13px;
  font-weight: 680;
}

.section {
  position: relative;
  padding: 132px 0;
}

section[id] {
  scroll-margin-top: var(--nav-height);
}

.modes-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 1280px;
}

.workflow-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 950px;
}

.features-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 1650px;
}

.control-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 620px;
}

.pricing-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 1290px;
}

.privacy-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.final-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 705px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.section-heading.centered {
  display: flex;
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.section-heading > div:not(.eyebrow) {
  max-width: 720px;
}

.section-heading h2,
.workflow-copy h2,
.control-copy h2,
.privacy-copy h2,
.final-card h2,
.legal-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.section-heading > p,
.section-heading.centered > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.mode-showcase {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  min-height: 720px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 145, 76, 0.07), transparent 33%),
    #0c0d0f;
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, 0.035);
}

.mode-tabs {
  display: flex;
  min-width: 0;
  padding: 10px;
  flex-direction: column;
  gap: 9px;
}

.mode-tab {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 122px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 25px;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mode-tab:hover {
  background: rgba(255, 255, 255, 0.035);
}

.mode-tab.is-active {
  border-color: rgba(255, 165, 75, 0.20);
  background: linear-gradient(100deg, rgba(255, 138, 54, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.mode-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 15px;
  font-size: 21px;
  font-weight: 820;
}

.mode-icon-amber { color: var(--orange); background: rgba(255, 121, 58, 0.11); }
.mode-icon-gold { color: var(--gold); background: rgba(255, 203, 95, 0.10); }
.mode-icon-teal { color: var(--teal); background: rgba(77, 216, 194, 0.10); }
.mode-icon-blue { color: var(--blue); background: rgba(106, 160, 255, 0.10); }

.mode-tab > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.mode-tab strong {
  font-size: 17px;
  font-weight: 740;
  letter-spacing: -0.02em;
}

.mode-tab small {
  overflow: hidden;
  color: var(--quiet);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mode-arrow {
  color: #77716a;
  font-size: 18px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.mode-tab.is-active .mode-arrow {
  color: var(--amber);
  transform: translateX(2px);
}

.mode-visual {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 29px;
  grid-template-columns: minmax(260px, 0.88fr) minmax(260px, 1.12fr);
  align-items: center;
  gap: 30px;
  background: #08090a;
}

.mode-glow {
  position: absolute;
  top: 50%;
  left: 27%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 68, 0.16), transparent 66%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  transition: background 220ms ease;
}

.device-mode {
  z-index: 2;
  width: 278px;
  justify-self: end;
  transform: translateY(58px) rotate(-2.2deg);
  transition: opacity 150ms ease, transform 220ms ease;
}

.mode-visual.is-changing .device-mode {
  opacity: 0.3;
  transform: translateY(66px) rotate(-2.2deg) scale(0.98);
}

.mode-detail {
  position: relative;
  z-index: 3;
  max-width: 360px;
  padding: 30px 34px 30px 0;
}

.mode-label,
.bento-kicker {
  color: var(--amber);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-detail h3 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 740;
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.mode-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.mode-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.mode-detail li {
  padding: 7px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #aaa299;
  font-size: 11px;
  font-weight: 650;
}

.workflow-section {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 139, 65, 0.09), transparent 31rem),
    #08090a;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  align-items: center;
  gap: 80px;
}

.workflow-copy h2 {
  max-width: 560px;
}

.workflow-copy > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.step-list {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.step-list li > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border: 1px solid rgba(255, 178, 84, 0.18);
  border-radius: 12px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 850;
}

.step-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-list strong {
  font-size: 14px;
  font-weight: 730;
}

.step-list small {
  color: var(--quiet);
  font-size: 12px;
}

.share-scene {
  position: relative;
  min-height: 680px;
}

.share-scene::before {
  position: absolute;
  top: 7%;
  left: 48%;
  width: 460px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 157, 70, 0.11), transparent 68%);
  transform: translateX(-50%);
}

.device-share {
  position: absolute;
  top: 0;
  left: 50%;
  width: 298px;
  transform: translateX(-50%) rotate(1.7deg);
}

.recent-shot-card {
  position: absolute;
  right: 0;
  bottom: 132px;
  z-index: 5;
  display: grid;
  width: 310px;
  min-height: 78px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  background: rgba(20, 20, 22, 0.84);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.recent-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 13px;
  background: #000;
}

.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.recent-shot-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.recent-shot-card small {
  color: var(--quiet);
  font-size: 10px;
}

.recent-shot-card strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-action {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 153, 73, 0.13);
  color: var(--amber);
  font-size: 10px;
  font-weight: 770;
}

.privacy-note {
  position: absolute;
  bottom: 58px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #0b0c0e;
  color: #aaa39b;
  font-size: 11px;
  font-weight: 640;
}

.privacy-note span {
  color: var(--teal);
  font-size: 16px;
}

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

.bento-card {
  position: relative;
  grid-column: span 5;
  min-height: 370px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #101113;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.bento-card::before {
  position: absolute;
  top: -130px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, var(--tone-glow, rgba(255, 148, 61, 0.10)), transparent 70%);
}

.bento-wide {
  grid-column: span 7;
}

.bento-card:nth-child(5),
.bento-card:nth-child(6) {
  grid-column: span 6;
}

.tone-amber { --tone: var(--orange); --tone-glow: rgba(255, 125, 56, 0.14); }
.tone-gold { --tone: var(--gold); --tone-glow: rgba(255, 207, 104, 0.11); }
.tone-teal { --tone: var(--teal); --tone-glow: rgba(77, 216, 194, 0.10); }
.tone-violet { --tone: var(--violet); --tone-glow: rgba(167, 134, 255, 0.12); }
.tone-coral { --tone: var(--coral); --tone-glow: rgba(255, 102, 74, 0.12); }
.tone-pink { --tone: var(--pink); --tone-glow: rgba(255, 112, 157, 0.11); }

.bento-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--tone, var(--amber)) 32%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--tone, var(--amber)) 10%, transparent);
  color: var(--tone, var(--amber));
  font-size: 21px;
  font-weight: 800;
}

.bento-kicker {
  position: relative;
  z-index: 2;
  color: var(--tone, var(--amber));
}

.bento-card h3 {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 11px 0 13px;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 730;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bento-card > p,
.bento-copy > p {
  position: relative;
  z-index: 2;
  max-width: 555px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.64;
}

.reply-options-mini {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.reply-options-mini span {
  display: flex;
  min-width: 0;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 140, 62, 0.18);
  border-radius: 16px;
  align-items: center;
  gap: 9px;
  background: #171514;
  color: #d5cec6;
  font-size: 12px;
  font-weight: 690;
}

.reply-options-mini i {
  color: var(--amber);
  font-size: 9px;
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.share-path-mini {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.share-path-mini span {
  display: inline-flex;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 211, 111, 0.16);
  border-radius: 999px;
  align-items: center;
  background: rgba(255, 211, 111, 0.06);
  color: #ded0a6;
  font-size: 11px;
  font-weight: 720;
}

.share-path-mini i {
  color: var(--gold);
  font-style: normal;
}

.tone-pills {
  position: absolute;
  right: 28px;
  bottom: 29px;
  left: 28px;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.tone-pills li {
  padding: 7px 10px;
  border: 1px solid rgba(88, 217, 197, 0.14);
  border-radius: 999px;
  background: rgba(88, 217, 197, 0.06);
  color: #a8c9c2;
  font-size: 10px;
  font-weight: 690;
}

.sessions-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 1.1fr);
  gap: 24px;
}

.session-list {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: center;
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  flex-direction: column;
  gap: 7px;
  background: #0c0d0f;
}

.session-list > div {
  display: grid;
  min-height: 70px;
  padding: 9px 12px;
  border-radius: 17px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.session-glyph {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}

.session-glyph.amber { color: var(--orange); background: rgba(255, 120, 55, 0.09); }
.session-glyph.teal { color: var(--teal); background: rgba(79, 216, 195, 0.09); }
.session-glyph.blue { color: var(--blue); background: rgba(104, 161, 255, 0.09); }

.session-list p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.session-list strong {
  font-size: 11px;
}

.session-list small {
  overflow: hidden;
  color: var(--quiet);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.session-list b {
  color: #6f6964;
  font-size: 20px;
  font-weight: 400;
}

.week-row {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}

.week-row span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--quiet);
  font-size: 10px;
  font-weight: 750;
}

.week-row span.lit {
  border-color: rgba(255, 108, 70, 0.26);
  background: rgba(255, 103, 72, 0.11);
  color: #ff9a71;
  box-shadow: 0 0 18px rgba(255, 91, 55, 0.10);
}

.bloom-mini {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 7px;
}

.bloom-mini i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 118, 158, 0.18);
  border-radius: 50%;
  background: rgba(255, 112, 157, 0.07);
  color: #eaa2bb;
  font-style: normal;
}

.bloom-mini span {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 113, 158, 0.25), rgba(255, 196, 103, 0.18));
}

.control-section {
  padding-top: 24px;
}

.control-panel {
  position: relative;
  display: grid;
  min-height: 460px;
  padding: 60px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 85% 45%, rgba(76, 210, 191, 0.10), transparent 35%),
    radial-gradient(circle at 10% 10%, rgba(255, 149, 67, 0.08), transparent 29%),
    #0d0e10;
}

.control-copy > p {
  max-width: 500px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.control-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
  list-style: none;
}

.control-steps > li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 155px;
  padding: 21px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.028);
}

.control-steps > li > span {
  margin-bottom: auto;
  color: var(--teal);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.control-steps strong {
  font-size: 14px;
}

.control-steps small {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.35;
}

.control-steps > li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -21px;
  content: "→";
  color: #68635d;
  transform: translateY(-50%);
}

.pricing-section {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 133, 62, 0.075), transparent 32rem),
    #08090a;
}

.plans {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  gap: 16px;
}

.plan-sync-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  flex-direction: column;
  background: #101113;
}

.plan-pro {
  border-color: rgba(255, 155, 70, 0.28);
  background: linear-gradient(145deg, rgba(255, 132, 54, 0.08), transparent 40%), #111214;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.05);
}

.pro-light {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 132, 54, 0.16), transparent 68%);
}

.plan-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.plan-top > div > span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-top h3 {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.plan-badge {
  display: inline-flex;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  align-items: center;
  color: #aaa29a;
  font-size: 10px;
  font-weight: 720;
  white-space: nowrap;
}

.pro-badge {
  border-color: rgba(255, 178, 82, 0.22);
  background: rgba(255, 150, 64, 0.10);
  color: var(--amber);
}

.plan-price {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 102px;
  margin: 34px 0 25px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  flex-direction: column;
  justify-content: end;
}

.plan-price strong {
  font-size: clamp(3rem, 5.5vw, 4.4rem);
  font-weight: 730;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.plan-price span {
  margin-top: 9px;
  color: var(--quiet);
  font-size: 12px;
}

.plan-list {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 0 0 30px;
  padding: 0;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  color: #c8c0b7;
  font-size: 13px;
  line-height: 1.5;
}

.plan-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  color: var(--success);
  content: "✓";
  font-size: 12px;
  font-weight: 850;
}

.plan-list b {
  color: var(--text);
}

.limit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.limit-grid > div {
  display: flex;
  min-height: 83px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.026);
}

.limit-grid strong {
  color: var(--amber);
  font-size: 21px;
  line-height: 1;
}

.limit-grid span {
  color: #aaa299;
  font-size: 10px;
  line-height: 1.3;
}

.plan-list.compact {
  gap: 10px;
}

.plan-button {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
}

.button.is-disabled {
  cursor: default;
}

.button.is-disabled:hover {
  transform: none;
}

.price-note {
  position: relative;
  z-index: 2;
  margin: 14px 2px 0;
  color: #77716a;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.privacy-section {
  padding-bottom: 70px;
}

.privacy-panel {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 18%, rgba(80, 215, 194, 0.08), transparent 26rem),
    #0d0e10;
}

.privacy-copy {
  display: flex;
  max-width: 810px;
  align-items: start;
  gap: 24px;
}

.privacy-lock {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid rgba(82, 216, 195, 0.18);
  border-radius: 18px;
  background: rgba(82, 216, 195, 0.07);
  color: var(--teal);
  font-size: 25px;
}

.privacy-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.privacy-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: var(--line-soft);
}

.privacy-grid > div {
  display: flex;
  min-height: 154px;
  padding: 22px;
  flex-direction: column;
  gap: 9px;
  background: #101113;
}

.privacy-grid strong {
  font-size: 13px;
  line-height: 1.35;
}

.privacy-grid span {
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.5;
}

.privacy-fine {
  max-width: 850px;
  margin: 22px 0 0;
  color: #79736c;
  font-size: 11px;
  line-height: 1.6;
}

.privacy-fine a,
.doc-card a,
.support-card a {
  color: #eeb36a;
  text-decoration: underline;
  text-decoration-color: rgba(238, 179, 106, 0.35);
  text-underline-offset: 3px;
}

.final-cta {
  padding: 72px 0 132px;
}

.final-card {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 70px 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 70, 0.18);
  border-radius: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 118, 51, 0.06), transparent 45%),
    #0d0e0f;
  text-align: center;
}

.final-card::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 28px;
  pointer-events: none;
  content: "";
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 55, 0.15), rgba(255, 190, 95, 0.05) 35%, transparent 69%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
}

.final-card > *:not(.final-glow) {
  position: relative;
  z-index: 2;
}

.final-card h2 {
  max-width: 740px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.final-card > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.footer {
  padding: 58px 0 calc(28px + var(--safe-bottom));
  border-top: 1px solid var(--line-soft);
  background: #070708;
  color: var(--quiet);
}

.footer-main,
.footer > .shell:not(.footer-bottom):not(.footer-main) {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-size: 12px;
  font-weight: 620;
}

.footer-bottom {
  display: flex;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  justify-content: space-between;
  gap: 20px;
  color: var(--quiet);
  font-size: 11px;
}

/* Legal and support pages */

.legal-hero {
  padding: calc(var(--nav-height) + var(--safe-top) + 86px) 0 64px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 131, 59, 0.11), transparent 25rem),
    #08090a;
}

.legal-hero h1 {
  max-width: 870px;
  margin-top: 16px;
}

.updated {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 13px;
}

.doc-layout {
  display: grid;
  padding-top: 64px;
  padding-bottom: 110px;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: start;
  gap: 30px;
}

.doc-card,
.support-card {
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #101113;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.doc-card h2,
.support-card h2,
.support-heading h2 {
  margin: 42px 0 13px;
  color: var(--text);
  font-size: 23px;
  font-weight: 730;
  letter-spacing: -0.03em;
}

.doc-card h2:first-child,
.support-card h2:first-child {
  margin-top: 0;
}

.doc-card p,
.doc-card li,
.support-card p,
.faq-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.doc-card ul {
  padding-left: 22px;
}

.doc-aside {
  position: sticky;
  top: calc(var(--nav-height) + var(--safe-top) + 24px);
  display: flex;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  flex-direction: column;
  gap: 5px;
  background: #0c0d0f;
}

.doc-aside strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-aside a {
  padding: 8px 0;
  color: var(--quiet);
  font-size: 12px;
}

.doc-aside a:hover {
  color: var(--text);
}

.callout {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(255, 169, 77, 0.15);
  border-radius: 18px;
  background: rgba(255, 145, 52, 0.055);
}

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

.support-grid > .support-card {
  grid-column: 1 / -1;
}

.support-heading {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-bottom: 18px;
}

.support-heading h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.support-card .hero-actions {
  margin-top: 26px;
}

.faq-list {
  grid-column: 1 / -1;
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #0d0e10;
}

.faq-item h3 {
  margin: 0 0 9px;
  font-size: 16px;
}

.faq-item p {
  margin: 0;
  font-size: 13px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
    gap: 28px;
  }

  .hero-product {
    min-height: 690px;
  }

  .device-hero {
    width: 298px;
  }

  .device-peek {
    width: 226px;
  }

  .device-peek-left {
    left: -22px;
  }

  .device-peek-right {
    right: -22px;
  }

  .floating-proof-top {
    right: -8px;
  }

  .mode-showcase {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .mode-visual {
    grid-template-columns: minmax(230px, 0.9fr) minmax(230px, 1.1fr);
    gap: 20px;
  }

  .device-mode {
    width: 250px;
  }

  .workflow-grid {
    gap: 42px;
  }

  .control-panel {
    padding: 48px;
    gap: 42px;
  }
}

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

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--safe-top) + 82px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .proof-list {
    justify-content: center;
  }

  .launch-line {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero-product {
    width: min(100%, 680px);
    min-height: 720px;
    margin-inline: auto;
  }

  .device-hero {
    width: 314px;
  }

  .device-peek {
    width: 245px;
  }

  .device-peek-left {
    left: 0;
  }

  .device-peek-right {
    right: 0;
  }

  .floating-proof-top {
    right: 20px;
  }

  .floating-proof-bottom {
    left: 24px;
  }

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

  .signal-grid > div:first-child {
    padding-left: 24px;
  }

  .signal-grid > div:nth-child(2) {
    border-right: 0;
  }

  .signal-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

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

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

  .mode-tab {
    min-height: 108px;
  }

  .mode-visual {
    min-height: 620px;
  }

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

  .workflow-copy {
    max-width: 680px;
  }

  .share-scene {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .bento-card,
  .bento-wide,
  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    grid-column: span 6;
  }

  .sessions-card {
    display: block;
  }

  .session-list {
    margin-top: 24px;
  }

  .control-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --nav-height: 68px;
  }

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

  .site-nav {
    height: var(--nav-height);
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .ai-pill {
    min-height: 23px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .nav-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--safe-top) + 62px);
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.1rem, 13.5vw, 4.8rem);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-product {
    min-height: 660px;
  }

  .device {
    border-radius: 46px;
  }

  .device-screen {
    border-radius: 39px;
  }

  .device-hero {
    width: 288px;
  }

  .device-peek {
    top: 110px;
    width: 215px;
  }

  .device-peek-left {
    left: -54px;
  }

  .device-peek-right {
    right: -54px;
  }

  .floating-proof-top {
    display: none;
  }

  .floating-proof-bottom {
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section {
    padding: 94px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .control-copy h2,
  .privacy-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .mode-showcase {
    padding: 9px;
    border-radius: 29px;
  }

  .mode-tabs {
    grid-template-columns: 1fr;
    padding: 4px;
  }

  .mode-tab {
    min-height: 92px;
    padding: 14px;
    border-radius: 21px;
  }

  .mode-visual {
    min-height: auto;
    padding: 42px 20px 0;
    border-radius: 23px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .device-mode {
    width: min(268px, 78vw);
    justify-self: center;
    order: 2;
    transform: translateY(50px) rotate(-1.5deg);
  }

  .mode-detail {
    max-width: 570px;
    padding: 0;
    order: 1;
    text-align: center;
  }

  .mode-detail ul {
    justify-content: center;
  }

  .workflow-grid {
    gap: 48px;
  }

  .share-scene {
    min-height: 640px;
  }

  .device-share {
    width: 276px;
  }

  .recent-shot-card {
    right: -3px;
    bottom: 115px;
    width: min(310px, 82vw);
  }

  .privacy-note {
    bottom: 48px;
    left: 3px;
  }

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

  .bento-card,
  .bento-wide,
  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    grid-column: 1;
    min-height: 350px;
    padding: 26px;
  }

  .reply-options-mini,
  .tone-pills,
  .week-row {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .control-panel {
    padding: 34px 24px;
    border-radius: 29px;
    gap: 36px;
  }

  .control-steps {
    grid-template-columns: 1fr;
  }

  .control-steps > li {
    min-height: 110px;
  }

  .control-steps > li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -24px;
    content: "↓";
    transform: translateX(50%);
  }

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

  .plan-card {
    padding: 27px;
    border-radius: 26px;
  }

  .privacy-panel {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .privacy-copy {
    display: block;
  }

  .privacy-lock {
    margin-bottom: 22px;
  }

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

  .privacy-grid > div {
    min-height: 120px;
  }

  .final-cta {
    padding: 42px 0 92px;
  }

  .final-card {
    min-height: 470px;
    padding: 54px 24px;
    border-radius: 32px;
  }

  .final-card::after {
    inset: 13px;
    border-radius: 23px;
  }

  .final-card h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .footer-main,
  .footer > .shell:not(.footer-bottom):not(.footer-main),
  .footer-bottom {
    flex-direction: column;
  }

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

  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-aside {
    position: static;
    order: -1;
  }

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

@media (max-width: 480px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--safe-top) + 50px);
  }

  .hero-layout {
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

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

  .hero-copy .hero-actions .button-secondary {
    display: none;
  }

  .button {
    width: 100%;
  }

  .launch-line {
    margin-top: 23px;
  }

  .proof-list {
    display: none;
  }

  .hero-product {
    min-height: 570px;
  }

  .device-hero {
    width: min(262px, 76vw);
  }

  .device-peek {
    width: 178px;
  }

  .floating-proof-bottom {
    min-width: 184px;
    padding: 10px 12px;
  }

  .signal-grid > div {
    min-height: 68px;
    padding: 0 14px;
    gap: 9px;
  }

  .signal-grid > div:first-child {
    padding-left: 14px;
  }

  .signal-grid span {
    font-size: 11px;
  }

  .section-heading.centered {
    align-items: flex-start;
    text-align: left;
  }

  .mode-tab small {
    font-size: 12px;
  }

  .mode-detail h3 {
    font-size: 2.15rem;
  }

  .share-scene {
    min-height: 600px;
  }

  .device-share {
    width: 250px;
  }

  .recent-shot-card {
    bottom: 100px;
  }

  .privacy-note {
    max-width: calc(100% - 6px);
    white-space: normal;
  }

  .bento-card,
  .bento-wide,
  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    min-height: 370px;
  }

  .sessions-card {
    min-height: 550px;
  }

  .tone-pills li {
    font-size: 9px;
  }

  .week-row {
    gap: 4px;
  }

  .bloom-mini {
    right: 24px;
    left: 24px;
    gap: 4px;
  }

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

  .plan-top {
    display: block;
  }

  .plan-badge {
    margin-top: 14px;
  }

  .legal-hero {
    padding-top: calc(var(--nav-height) + var(--safe-top) + 60px);
  }

  .doc-card,
  .support-card {
    padding: 24px 20px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .floating-proof,
  .recent-shot-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #101113;
  }
}

/* Compact product landing — July 2026 */

.home-v3 {
  background:
    radial-gradient(circle at 78% 5%, rgba(67, 197, 187, 0.075), transparent 28rem),
    radial-gradient(circle at 18% 13%, rgba(255, 124, 56, 0.075), transparent 30rem),
    #050505;
}

.home-v3 ::selection {
  color: inherit;
  background: rgba(255, 154, 78, 0.32);
}

.home-v3 main {
  overflow: clip;
}

.home-v3 .site-nav {
  background: rgba(5, 5, 5, 0.78);
}

.screen-trigger,
.product-shot {
  appearance: none;
  -webkit-appearance: none;
  cursor: zoom-in;
}

.screen-trigger {
  color: inherit;
}

.screen-trigger .device-screen {
  display: block;
}

.screen-trigger:hover {
  border-color: rgba(255, 186, 104, 0.48);
}

.home-v3 .hero-v3 {
  min-height: 790px;
  padding: calc(var(--nav-height) + var(--safe-top) + 58px) 0 42px;
}

.home-v3 .hero-v3::after {
  height: 88px;
}

.home-v3 .hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(490px, 1.04fr);
  gap: 40px;
}

.home-v3 .hero-copy {
  max-width: 610px;
}

.home-v3 .hero h1 {
  margin: 21px 0 20px;
  font-size: clamp(3.45rem, 5.55vw, 5.2rem);
}

.home-v3 .hero-lead {
  max-width: 585px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.56;
}

.home-v3 .hero-actions {
  margin-top: 28px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-facts span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  color: var(--quiet);
  font-size: 11px;
  font-weight: 620;
}

.hero-facts b {
  color: #ded6cc;
}

.home-v3 .hero-product {
  min-height: 620px;
}

.home-v3 .hero-halo {
  top: 8%;
  width: 430px;
  height: 470px;
}

.home-v3 .device-hero {
  top: 0;
  width: 282px;
  transform: translateX(-50%) rotate(-1deg);
}

.home-v3 .device-peek {
  top: 84px;
  width: 216px;
  opacity: 0.62;
}

.home-v3 .device-peek-left {
  left: 0;
  transform: rotate(-6deg);
}

.home-v3 .device-peek-right {
  right: 0;
  transform: rotate(6deg);
}

.expand-hint {
  position: absolute;
  right: 0;
  bottom: 22px;
  z-index: 9;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.78);
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.expand-hint span {
  color: var(--amber);
  font-size: 15px;
}

.landing-section {
  position: relative;
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.landing-heading {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 40px;
}

.landing-heading-centered {
  display: flex;
  max-width: 840px;
  margin: 0 auto 34px;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.landing-heading h2 {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  font-weight: 780;
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.landing-heading > p,
.landing-heading-centered > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.landing-heading-centered > p {
  margin-top: 16px;
}

.mode-showcase-v3 {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 38%, rgba(61, 194, 183, 0.075), transparent 28rem),
    radial-gradient(circle at 22% 62%, rgba(255, 122, 58, 0.075), transparent 25rem),
    #0d0e10;
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, 0.035);
}

.mode-tabs-v3 {
  display: grid;
  padding: 5px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.mode-tab-v3 {
  display: grid;
  min-width: 0;
  min-height: 67px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 19px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.mode-tab-v3:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mode-tab-v3.is-active {
  border-color: rgba(255, 255, 255, 0.105);
  background: linear-gradient(135deg, rgba(255, 137, 62, 0.14), rgba(255, 255, 255, 0.045));
  color: var(--text);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.mode-tab-v3 .mode-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: 17px;
}

.mode-tab-v3 > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mode-tab-v3 strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mode-tab-v3 small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--quiet);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mode-panel-v3 {
  position: relative;
  display: grid;
  min-height: 495px;
  padding: 34px 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  grid-template-columns: minmax(0, 1fr) 222px;
  align-items: center;
  gap: 64px;
  background:
    radial-gradient(circle at 82% 45%, rgba(83, 210, 194, 0.12), transparent 20rem),
    radial-gradient(circle at 16% 70%, rgba(255, 131, 56, 0.10), transparent 24rem),
    #090a0c;
}

.mode-copy-v3 {
  max-width: 620px;
}

.mode-copy-v3 h3 {
  max-width: 610px;
  margin: 15px 0 15px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 770;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.mode-copy-v3 > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.mode-copy-v3 > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.mode-copy-v3 > ul li,
.tone-line span {
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c9c1b7;
  font-size: 10px;
  font-weight: 680;
}

.tone-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line-soft);
}

.tone-line span {
  min-height: 27px;
  padding-block: 4px;
  color: var(--quiet);
  font-size: 9px;
}

.device-mode-v3 {
  position: relative;
  z-index: 2;
  width: 216px;
  justify-self: end;
  transform: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.mode-panel-v3.is-changing .device-mode-v3 {
  opacity: 0.55;
  transform: scale(0.985);
}

.workflow-v3 {
  background: rgba(255, 255, 255, 0.012);
}

.workflow-card-v3 {
  display: grid;
  min-height: 580px;
  padding: 48px 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 68px;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 130, 57, 0.12), transparent 26rem),
    radial-gradient(circle at 84% 74%, rgba(82, 214, 196, 0.085), transparent 22rem),
    #0d0e10;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.workflow-copy-v3 h2 {
  max-width: 700px;
  margin: 14px 0 14px;
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.057em;
}

.workflow-copy-v3 > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.steps-v3 {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.steps-v3 li {
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.027);
}

.steps-v3 li > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 144, 65, 0.13);
  color: var(--amber);
  font-size: 10px;
  font-weight: 850;
}

.steps-v3 li div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.steps-v3 strong {
  font-size: 11px;
  line-height: 1.3;
}

.steps-v3 small {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.35;
}

.recent-explainer {
  display: grid;
  max-width: 510px;
  min-height: 76px;
  margin-top: 16px;
  padding: 9px 15px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  background: rgba(18, 19, 22, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.recent-mini-thumb {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #050505;
}

.recent-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-explainer > span:last-child {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0 12px;
}

.recent-explainer small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 790;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recent-explainer strong {
  justify-self: end;
  color: var(--text);
  font-size: 11px;
}

.recent-explainer em {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: var(--quiet);
  font-size: 10px;
  font-style: normal;
}

.workflow-screen-v3 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.device-workflow-v3 {
  width: 224px;
  transform: rotate(1deg);
}

.screen-caption {
  display: inline-flex;
  min-height: 30px;
  margin-top: 13px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 650;
}

.feature-heading-v3 {
  margin-bottom: 28px;
}

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

.product-card-v3 {
  position: relative;
  display: flex;
  min-width: 0;
  height: 435px;
  padding: 26px 26px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  flex-direction: column;
  background: #101113;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.sessions-product-v3 {
  background: radial-gradient(circle at 80% 86%, rgba(157, 122, 255, 0.13), transparent 17rem), #101113;
}

.streak-product-v3 {
  background: radial-gradient(circle at 76% 84%, rgba(255, 108, 69, 0.13), transparent 17rem), #101113;
}

.bloom-product-v3 {
  background: radial-gradient(circle at 50% 88%, rgba(255, 117, 159, 0.13), transparent 18rem), #101113;
}

.product-card-copy {
  position: relative;
  z-index: 2;
}

.product-kicker {
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-kicker-violet { color: #b49bff; }
.product-kicker-coral { color: #ff8067; }
.product-kicker-pink { color: #ff7aa6; }

.product-card-v3 h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-card-v3 p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.52;
}

.product-shot {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 214px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: #050505;
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.04);
}

.product-shot img {
  width: 100%;
  height: auto;
  transform: translateY(-34px);
  transition: transform 190ms ease, filter 190ms ease;
}

.product-shot-streak img {
  transform: translateY(-48px);
}

.product-shot:hover img {
  filter: brightness(1.06);
  transform: translateY(-38px) scale(1.012);
}

.product-shot-streak:hover img {
  transform: translateY(-52px) scale(1.012);
}

.product-shot > span {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(8, 8, 9, 0.70);
  color: var(--text);
  font-size: 13px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.bloom-path-v3 {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: flex;
  height: 220px;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  isolation: isolate;
}

.bloom-path-v3::before {
  position: absolute;
  right: 18px;
  bottom: 64px;
  left: 18px;
  z-index: -1;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(106, 199, 146, 0.36), rgba(255, 181, 77, 0.42), rgba(255, 117, 159, 0.38), rgba(154, 132, 255, 0.38));
}

.bloom-path-v3 > span {
  position: relative;
  display: flex;
  width: 38px;
  height: 90px;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.55;
  filter: saturate(0.72) brightness(0.83);
}

.bloom-path-v3 > span img {
  width: 49px;
  max-width: none;
  height: auto;
}

.bloom-path-v3 > span.is-current {
  width: 104px;
  height: 196px;
  padding-bottom: 30px;
  opacity: 1;
  filter: none;
}

.bloom-path-v3 > span.is-current::before {
  position: absolute;
  inset: 2px -1px 20px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(133, 168, 255, 0.26);
  border-radius: 28px;
  background: rgba(96, 128, 203, 0.06);
  box-shadow: 0 18px 42px rgba(54, 95, 187, 0.15), inset 0 1px rgba(255, 255, 255, 0.04);
}

.bloom-path-v3 > span.is-current img {
  width: 113px;
}

.bloom-path-v3 b,
.bloom-path-v3 small {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  text-align: center;
}

.bloom-path-v3 b {
  font-size: 12px;
}

.bloom-path-v3 small {
  bottom: 5px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
}

.trust-strip-v3 {
  display: grid;
  margin-top: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 19px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.018);
}

.trust-strip-v3 span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 13px;
  border-right: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 10px;
  text-align: center;
}

.trust-strip-v3 span:last-child {
  border-right: 0;
}

.trust-strip-v3 b {
  color: #d7d0c7;
}

.pricing-v3 {
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 50% 75%, rgba(255, 127, 57, 0.07), transparent 30rem),
    rgba(255, 255, 255, 0.012);
}

.pricing-heading-v3 {
  max-width: 780px;
}

.plans-v3 {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 12px;
}

.plan-v3 {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 500px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 29px;
  flex-direction: column;
  background: #101113;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.plan-free-v3 {
  justify-content: space-between;
}

.plan-pro-v3 {
  border-color: rgba(255, 164, 78, 0.25);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 105, 56, 0.12), transparent 19rem),
    radial-gradient(circle at 15% 87%, rgba(255, 194, 90, 0.08), transparent 20rem),
    #111113;
}

.plan-glow-v3 {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255, 125, 61, 0.11);
  filter: blur(38px);
}

.plan-heading-v3 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.plan-heading-v3 > div > span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-heading-v3 h3 {
  margin: 5px 0 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.plan-v3 .plan-badge {
  margin: 0;
  white-space: nowrap;
}

.price-v3 {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 23px 0 20px;
  align-items: baseline;
  gap: 10px;
}

.price-v3 strong {
  font-size: clamp(2.9rem, 5vw, 4.3rem);
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-v3 span {
  color: var(--quiet);
  font-size: 12px;
}

.plan-v3 > ul {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.plan-v3 > ul li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.plan-v3 > ul li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--success);
  content: "✓";
  font-size: 12px;
  font-weight: 850;
}

.plan-v3 > ul b {
  color: var(--text);
}

.plan-v3 .button {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
}

.daily-limit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.daily-limit-grid > div {
  display: flex;
  min-height: 83px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.025);
}

.daily-limit-grid strong {
  color: #ffe0ae;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.daily-limit-grid span {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.35;
}

.pro-includes {
  position: relative;
  z-index: 2;
  margin: 15px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-align: center;
}

.pro-includes span {
  margin: 0 4px;
  color: #625e59;
}

.plan-v3 .price-note {
  position: relative;
  z-index: 2;
  margin: 11px 0 0;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.privacy-row-v3 {
  display: grid;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 21px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  background: #0c0d0f;
}

.privacy-row-v3 > span,
.privacy-row-v3 > a {
  display: flex;
  min-height: 58px;
  padding: 8px 15px;
  align-items: center;
  border-right: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.45;
}

.privacy-row-v3 > span {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.privacy-row-v3 b {
  margin-bottom: 2px;
  color: #d7d0c8;
  font-size: 10px;
}

.privacy-row-v3 > a {
  justify-content: center;
  gap: 8px;
  border-right: 0;
  color: var(--amber);
  font-weight: 750;
  white-space: nowrap;
}

.footer-v3 {
  padding-top: 44px;
}

.screen-dialog {
  width: min(1000px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: #0b0c0e;
  color: var(--text);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.78);
}

.screen-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.screen-dialog-frame {
  display: flex;
  max-height: calc(100dvh - 24px);
  flex-direction: column;
}

.screen-dialog-bar {
  display: flex;
  min-height: 62px;
  padding: 9px 10px 9px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.screen-dialog-bar p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen-dialog-bar button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.screen-dialog-canvas {
  display: grid;
  min-height: 0;
  padding: 14px;
  overflow: auto;
  place-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 127, 56, 0.08), transparent 24rem),
    radial-gradient(circle at 82% 90%, rgba(74, 205, 190, 0.075), transparent 24rem),
    #050506;
}

.screen-dialog-canvas img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 115px);
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

body.has-dialog {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .home-v3 .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 22px;
  }

  .home-v3 .hero-product {
    min-height: 590px;
  }

  .home-v3 .device-hero {
    width: 268px;
  }

  .home-v3 .device-peek {
    width: 196px;
  }

  .mode-panel-v3 {
    padding-inline: 42px;
    gap: 44px;
  }

  .workflow-card-v3 {
    padding-inline: 44px;
    gap: 44px;
  }
}

@media (max-width: 960px) {
  .home-v3 .hero-v3 {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--safe-top) + 62px);
  }

  .home-v3 .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-v3 .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

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

  .home-v3 .hero-product {
    width: min(100%, 630px);
    min-height: 570px;
    margin-inline: auto;
  }

  .home-v3 .device-hero {
    width: 260px;
  }

  .home-v3 .device-peek {
    width: 195px;
  }

  .home-v3 .device-peek-left { left: 26px; }
  .home-v3 .device-peek-right { right: 26px; }

  .expand-hint {
    right: 16px;
  }

  .landing-heading {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.6fr);
    gap: 24px;
  }

  .mode-tab-v3 {
    grid-template-columns: 36px minmax(0, 1fr);
    padding-inline: 9px;
    gap: 7px;
  }

  .mode-tab-v3 .mode-icon {
    width: 36px;
    height: 36px;
  }

  .mode-tab-v3 small {
    display: none;
  }

  .workflow-card-v3 {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .device-workflow-v3 {
    width: 210px;
  }

  .product-card-v3 {
    height: 420px;
    padding-inline: 22px;
  }

  .product-card-v3 p {
    font-size: 11px;
  }

  .bloom-path-v3 > span {
    width: 31px;
  }

  .bloom-path-v3 > span img {
    width: 42px;
  }

  .bloom-path-v3 > span.is-current {
    width: 92px;
  }

  .bloom-path-v3 > span.is-current img {
    width: 102px;
  }

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

  .privacy-row-v3 > a {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 760px) {
  .home-v3 .hero-v3 {
    padding-top: calc(var(--nav-height) + var(--safe-top) + 45px);
    padding-bottom: 28px;
  }

  .home-v3 .hero h1 {
    margin-top: 17px;
    font-size: clamp(2.9rem, 13vw, 4.25rem);
  }

  .home-v3 .hero-lead {
    font-size: 16px;
  }

  .home-v3 .hero-product {
    min-height: 520px;
  }

  .home-v3 .device-hero {
    width: 236px;
  }

  .home-v3 .device-peek {
    top: 70px;
    width: 168px;
  }

  .home-v3 .device-peek-left { left: max(-30px, calc(50% - 250px)); }
  .home-v3 .device-peek-right { right: max(-30px, calc(50% - 250px)); }

  .expand-hint {
    right: 50%;
    bottom: 4px;
    transform: translateX(50%);
    white-space: nowrap;
  }

  .landing-section {
    padding: 58px 0;
  }

  .landing-heading,
  .landing-heading-centered {
    display: block;
    margin-bottom: 27px;
    text-align: left;
  }

  .landing-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .landing-heading > p,
  .landing-heading-centered > p {
    margin-top: 14px;
    font-size: 14px;
  }

  .mode-showcase-v3 {
    border-radius: 26px;
  }

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

  .mode-tab-v3 {
    min-height: 64px;
  }

  .mode-panel-v3 {
    min-height: auto;
    padding: 30px 22px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

  .mode-copy-v3 {
    text-align: center;
  }

  .mode-copy-v3 h3 {
    margin-top: 12px;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mode-copy-v3 > p {
    font-size: 14px;
  }

  .mode-copy-v3 > ul,
  .tone-line {
    justify-content: center;
  }

  .device-mode-v3 {
    width: 194px;
    justify-self: center;
  }

  .workflow-card-v3 {
    min-height: auto;
    padding: 30px 22px;
    border-radius: 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .workflow-copy-v3 h2 {
    font-size: clamp(2.15rem, 9.4vw, 3.2rem);
  }

  .workflow-copy-v3 > p {
    font-size: 14px;
  }

  .steps-v3 {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .steps-v3 li {
    min-height: 68px;
    padding: 12px;
    align-items: center;
  }

  .device-workflow-v3 {
    width: 194px;
  }

  .feature-heading-v3 {
    margin-bottom: 22px;
  }

  .feature-carousel {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-carousel::-webkit-scrollbar {
    display: none;
  }

  .product-card-v3 {
    width: min(84vw, 350px);
    height: 420px;
    flex: 0 0 min(84vw, 350px);
    scroll-snap-align: start;
  }

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

  .trust-strip-v3 span:nth-child(2) {
    border-right: 0;
  }

  .trust-strip-v3 span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .plans-v3 {
    grid-template-columns: 1fr;
  }

  .plan-v3 {
    min-height: auto;
    padding: 26px;
  }

  .plan-free-v3 .button {
    margin-top: 10px;
  }

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

  .privacy-row-v3 > span,
  .privacy-row-v3 > a {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .privacy-row-v3 > a {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .home-v3 .hero-layout {
    gap: 20px;
  }

  .home-v3 .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  .home-v3 .hero-actions {
    display: grid;
  }

  .home-v3 .hero-copy .hero-actions .button-secondary {
    display: none;
  }

  .hero-facts {
    gap: 6px;
  }

  .hero-facts span {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .home-v3 .hero-product {
    min-height: 496px;
  }

  .home-v3 .device-hero {
    width: 226px;
  }

  .home-v3 .device-peek {
    width: 148px;
  }

  .expand-hint {
    min-height: 34px;
    font-size: 10px;
  }

  .mode-tab-v3 {
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .mode-tab-v3 .mode-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .mode-tab-v3 strong {
    font-size: 11px;
  }

  .mode-panel-v3 {
    padding-inline: 17px;
  }

  .mode-copy-v3 > ul li {
    font-size: 9px;
  }

  .tone-line {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tone-line::-webkit-scrollbar {
    display: none;
  }

  .tone-line span {
    flex: 0 0 auto;
  }

  .workflow-card-v3 {
    padding-inline: 17px;
  }

  .recent-explainer > span:last-child {
    display: flex;
    flex-direction: column;
  }

  .recent-explainer strong {
    order: -1;
  }

  .recent-explainer em {
    margin-top: 2px;
  }

  .product-card-v3 {
    width: 86vw;
    flex-basis: 86vw;
  }

  .trust-strip-v3 span {
    min-height: 60px;
    flex-direction: column;
    gap: 0;
  }

  .plan-heading-v3 {
    display: flex;
  }

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

  .daily-limit-grid > div {
    min-height: 91px;
    padding: 12px;
  }

  .daily-limit-grid strong {
    font-size: 15px;
  }

  .screen-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .screen-dialog-frame {
    height: 100dvh;
    max-height: none;
  }

  .screen-dialog-bar {
    padding-top: calc(9px + var(--safe-top));
  }

  .screen-dialog-canvas {
    padding: 10px 10px calc(10px + var(--safe-bottom));
  }

  .screen-dialog-canvas img {
    max-height: calc(100dvh - 92px - var(--safe-top) - var(--safe-bottom));
    border-radius: 18px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .expand-hint,
  .screen-dialog::backdrop {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
