@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f6f2fb;
  --bg-strong: #ece4f7;
  --surface: rgba(255, 252, 255, 0.88);
  --surface-strong: #fffaff;
  --surface-dark: #162126;
  --surface-dark-2: #213038;
  --ink: #182126;
  --muted: #5f6a6c;
  --line: rgba(24, 33, 38, 0.1);
  --line-strong: rgba(24, 33, 38, 0.18);
  --accent: #d14fb5;
  --accent-deep: #9644b5;
  --accent-soft: rgba(209, 79, 181, 0.13);
  --sage: #b7c7d1;
  --sky: #e5ddfb;
  --violet: #8a73f6;
  --rose: #f37dca;
  --shadow-soft: 0 22px 60px rgba(40, 37, 31, 0.08);
  --shadow-card: 0 18px 45px rgba(31, 34, 36, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --heading-copy-gap-extra: 12px;
  --site-width: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(202, 226, 238, 0.8), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(243, 125, 202, 0.14), transparent 24%),
    radial-gradient(circle at 58% 34%, rgba(138, 115, 246, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf8ff 0%, var(--bg) 42%, #f6f1fc 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 72%);
  opacity: 0.24;
}

img {
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.15rem, 3.2vw, 3.2rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
  font-size: 1.3rem;
  line-height: 1.15;
}

:is(h1, h2, h3, h4) + :is(p, .section-prose, ul, ol) {
  margin-top: var(--heading-copy-gap-extra);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--surface-dark);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--site-width);
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.74);
  box-shadow: 0 16px 36px rgba(38, 35, 32, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(24, 33, 38, 0.14);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #455055;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(150, 68, 181, 0.1);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--surface-dark);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero,
.section,
.article-layout,
.page-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  min-height: calc(100vh - 148px);
  padding: 28px 0 24px;
}

.hero-copy {
  max-width: none;
  padding-top: 18px;
  width: 100%;
}

.hero-copy p {
  max-width: 68ch;
  font-size: 1rem;
}

.hero-trust-line {
  margin-top: 42px;
  color: #536067;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-home {
  min-height: 0;
  padding-bottom: 0;
}

.hero-home + .section {
  padding-top: 24px;
}

.hero-app + .section,
.hero-about + .section,
.hero-text-only + .section {
  padding-top: 24px;
}

.hero-home .hero-copy h1,
.hero-app .hero-copy h1,
.hero-about .hero-copy h1,
.hero-mindset .hero-copy h1,
.hero-contact .hero-copy h1 {
  font-size: clamp(2.25rem, 3.4vw, 3.15rem);
  line-height: 1.04;
}

.hero-home .hero-copy h1,
.hero-about .hero-copy h1 {
  max-width: 15ch;
}

.hero-app .hero-copy h1 {
  max-width: 18ch;
}

.hero-app {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.82fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
  min-height: 0;
  padding-bottom: 92px;
}

.hero-about {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.82fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
  min-height: 0;
  padding-bottom: 92px;
}

.hero-text-only {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.hero-text-only .hero-copy {
  max-width: 70ch;
}

.hero-mindset .hero-copy h1 {
  max-width: none;
}

.hero-mindset .hero-copy {
  max-width: none;
}

.hero-mindset .hero-copy p {
  max-width: none;
}

.hero-contact .hero-copy h1 {
  max-width: 15ch;
}

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

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 251, 255, 0.7);
  color: #445056;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-note {
  max-width: 70ch;
  margin-top: 22px;
}

.hero-note p {
  margin-bottom: 0.9rem;
  color: #536067;
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-note strong {
  color: var(--ink);
}

.section-prose {
  max-width: 72ch;
}

.section-prose p {
  color: #536067;
  font-size: 1rem;
  line-height: 1.78;
}

.section-prose p:last-child {
  margin-bottom: 0;
}

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

.section-prose + .grid,
.section-header + .grid,
.dark-band .grid {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  box-shadow: 0 16px 32px rgba(150, 68, 181, 0.26);
}

.button.secondary {
  background: rgba(255, 252, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.button.light {
  background: #fff7ff;
  color: var(--surface-dark);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  width: 100%;
}

.hero-visual-shot,
.hero-visual-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shot,
.hero-screen-card {
  position: relative;
  z-index: 1;
}

.hero-shot {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-shot-home {
  width: min(430px, 100%);
  filter: drop-shadow(0 32px 60px rgba(23, 28, 33, 0.22));
  transform: translateY(8px);
}

.hero-screen-card {
  width: min(390px, 100%);
  padding: 14px;
  border-radius: 40px;
  background: rgba(255, 252, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 60px rgba(50, 42, 82, 0.14);
  backdrop-filter: blur(18px);
}

.hero-shot-app {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 18px 36px rgba(39, 32, 56, 0.12);
}

.app-hero-screen {
  min-height: 0;
}

.screenshot-phone-frame {
  position: relative;
  width: min(300px, 100%);
  padding: 8px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #313840 0%, #11171d 100%);
  box-shadow: 0 28px 58px rgba(23, 28, 33, 0.18);
}

.screenshot-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.app-screenshot-frame,
.about-screenshot-frame {
  width: min(240px, 100%);
  margin: 0 auto;
  transform: perspective(900px) rotateY(-12deg) rotateZ(6deg) translateY(4px);
  transform-origin: center;
  box-shadow: 0 32px 68px rgba(23, 28, 33, 0.2);
}

.about-hero-screen {
  min-height: 0;
}

.phone-frame {
  position: relative;
  width: min(360px, 100%);
  margin: 0 0 0 auto;
  padding: 16px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, #2e343a 0%, #171c21 100%);
  box-shadow: 0 32px 60px rgba(23, 28, 33, 0.2);
}

.phone-screen {
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #fff7fd 0%, #eef3ff 100%);
  padding: 22px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  font-size: 0.95rem;
  font-weight: 800;
}

.app-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #516066;
  font-size: 0.74rem;
}

.daily-card,
.glass-card,
.article-card,
.feature-card,
.category-card,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.daily-card {
  padding: 24px;
}

.daily-card h3 {
  margin-bottom: 24px;
  font-size: 1.7rem;
}

.affirmation {
  color: var(--ink);
  font-weight: 800;
}

.prompt {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.mini-panel {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 255, 0.62);
}

.mini-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-panel strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.section {
  padding: 72px 0;
}

.home-benefits-section {
  padding-bottom: 48px;
}

.founder-note-section {
  padding: 16px 0;
}

.founder-note-section + .section {
  padding-top: 48px;
}

.page-shell.section {
  padding-top: 84px;
  padding-bottom: 24px;
}

.internal-page-hero.page-shell.section {
  padding-top: 44px;
  padding-bottom: 20px;
}

.internal-page-hero.page-shell > p:last-child {
  max-width: 100%;
}

.page-shell.section > h1 {
  max-width: 22ch;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.04;
}

.page-shell > p:last-child,
.section-header p {
  max-width: 62ch;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.feature-card,
.category-card,
.article-card a,
.glass-card {
  display: block;
  height: 100%;
  padding: 26px;
}

.home-paths-grid {
  align-items: stretch;
}

.path-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 0;
}

.path-card h3 {
  margin-bottom: 24px;
}

.path-card p {
  margin: 0;
}

.path-card .section-actions {
  margin-top: 28px;
  padding-top: 0;
}

.feature-card,
.category-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.dark-band {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(243, 125, 202, 0.12), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(138, 115, 246, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 255, 0.96), rgba(246, 241, 255, 0.94));
  border: 1px solid rgba(150, 68, 181, 0.1);
  box-shadow: var(--shadow-soft);
}

.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band .eyebrow {
  color: var(--ink);
}

.dark-band p {
  opacity: 1;
}

.dark-band .section-prose p {
  color: var(--ink);
}

.dark-band .eyebrow::before {
  background: currentColor;
}

.home-illustrated-panel {
  position: relative;
  overflow: hidden;
}

.home-illustrated-panel > :not(.section-orbit-graphic) {
  position: relative;
  z-index: 1;
}

.section-orbit-graphic {
  position: absolute;
  right: clamp(34px, 7vw, 110px);
  top: 50%;
  width: clamp(180px, 18vw, 280px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(-10deg);
  pointer-events: none;
  opacity: 0.64;
}

.section-orbit-graphic::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(150, 68, 181, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(138, 115, 246, 0.035),
    inset 0 0 42px rgba(209, 79, 181, 0.08);
}

.section-orbit-graphic::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 14%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(135deg, rgba(209, 79, 181, 0.24), rgba(138, 115, 246, 0.22));
  box-shadow:
    -118px 118px 0 -24px rgba(183, 199, 209, 0.32),
    -42px 142px 0 -30px rgba(209, 79, 181, 0.3);
}

.section-orbit-graphic span {
  position: absolute;
  left: 12%;
  bottom: 18%;
  width: 46%;
  height: 34%;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 255, 0.42)),
    linear-gradient(135deg, rgba(209, 79, 181, 0.1), rgba(138, 115, 246, 0.12));
  box-shadow: 0 18px 48px rgba(40, 37, 31, 0.08);
  transform: rotate(13deg);
}

.founder-note-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
}

.founder-note-graphic {
  right: clamp(28px, 8vw, 130px);
  width: clamp(170px, 17vw, 260px);
  aspect-ratio: 1.05;
  transform: translateY(-50%) rotate(4deg);
  opacity: 0.56;
}

.founder-note-graphic::before {
  inset: 12% 7% 16% 15%;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 255, 0.44)),
    linear-gradient(135deg, rgba(209, 79, 181, 0.1), rgba(138, 115, 246, 0.12));
  box-shadow:
    24px 24px 0 -8px rgba(183, 199, 209, 0.18),
    -22px -20px 0 -10px rgba(209, 79, 181, 0.12),
    0 18px 48px rgba(40, 37, 31, 0.08);
}

.founder-note-graphic::after {
  left: 27%;
  right: auto;
  top: 34%;
  width: 46%;
  height: 8px;
  aspect-ratio: auto;
  border-radius: 999px;
  background: rgba(150, 68, 181, 0.2);
  box-shadow:
    0 24px 0 rgba(138, 115, 246, 0.14),
    0 48px 0 rgba(183, 199, 209, 0.2);
}

.founder-note-graphic span {
  left: auto;
  right: 8%;
  bottom: 10%;
  width: 30%;
  height: 38%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 255, 0.34)),
    repeating-linear-gradient(180deg, rgba(150, 68, 181, 0.16) 0 2px, transparent 2px 12px);
  transform: rotate(-11deg);
}

@media (min-width: 901px) {
  .dark-band.home-illustrated-panel,
  .founder-note-card.home-illustrated-panel {
    padding-right: clamp(280px, 28vw, 420px);
  }
}

.about-illustrated-panel {
  position: relative;
  overflow: hidden;
}

.about-illustrated-panel > :not(.about-story-graphic) {
  position: relative;
  z-index: 1;
}

.about-founder-card,
.about-principle-card {
  padding: clamp(34px, 5vw, 56px);
}

.about-story-graphic {
  position: absolute;
  right: clamp(34px, 7vw, 112px);
  top: 50%;
  width: clamp(170px, 17vw, 260px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(-7deg);
  pointer-events: none;
  opacity: 0.62;
}

.about-story-graphic::before {
  content: "";
  position: absolute;
  inset: 14% 16% 12% 12%;
  border: 1px solid rgba(150, 68, 181, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 255, 0.38)),
    radial-gradient(circle at 78% 20%, rgba(243, 125, 202, 0.2), transparent 34%);
  box-shadow:
    26px 26px 0 -10px rgba(138, 115, 246, 0.1),
    -28px 22px 0 -14px rgba(183, 199, 209, 0.2),
    0 18px 48px rgba(40, 37, 31, 0.08);
}

.about-story-graphic::after {
  content: "";
  position: absolute;
  left: 31%;
  top: 28%;
  width: 38%;
  height: 38%;
  border: 1px solid rgba(150, 68, 181, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.72) 0 28%, transparent 29%),
    conic-gradient(from 20deg, rgba(209, 79, 181, 0.2), rgba(138, 115, 246, 0.18), rgba(183, 199, 209, 0.22), rgba(209, 79, 181, 0.2));
}

.about-story-graphic span {
  position: absolute;
  left: 12%;
  bottom: 18%;
  width: 52%;
  height: 2px;
  border-radius: 999px;
  background: rgba(150, 68, 181, 0.18);
  box-shadow:
    18px -34px 0 rgba(138, 115, 246, 0.14),
    48px -72px 0 rgba(209, 79, 181, 0.12),
    82px -28px 0 rgba(183, 199, 209, 0.22);
}

.about-founder-section {
  padding-bottom: 74px;
}

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

.about-principle-card h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

@media (min-width: 901px) {
  .about-founder-card {
    padding-right: clamp(280px, 28vw, 420px);
  }
}

.article-kicker,
.meta-line {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.text-link {
  color: var(--accent-deep);
  font-weight: 800;
}

.inline-link {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.dark-band .inline-link {
  color: #7a45b5;
}

.cta-band,
.social-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 251, 255, 0.9), rgba(249, 245, 255, 0.84));
  box-shadow: var(--shadow-soft);
}

.home-final-cta {
  align-items: end;
}

.store-cta-panel {
  display: grid;
  gap: 12px;
  justify-items: end;
  flex: 0 1 460px;
}

.store-caption {
  margin: 0;
  color: #756883;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  width: min(460px, 100%);
}

.store-button {
  flex: 1 1 210px;
  min-width: 0;
  max-width: 224px;
  width: auto;
}

.button-disabled {
  opacity: 1;
  color: #6b7681;
  background: rgba(255, 252, 255, 0.9);
  border-color: rgba(24, 33, 38, 0.12);
  cursor: default;
  box-shadow: none;
  pointer-events: none;
}

.store-button-muted {
  background: rgba(255, 252, 255, 0.96);
  border-color: rgba(150, 68, 181, 0.12);
  color: #4e5862;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.social-links button {
  padding: 10px 14px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 249, 255, 0.76);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.social-links.large a {
  padding: 13px 17px;
}

.share-card {
  padding: 24px;
}

.share-card .eyebrow {
  margin-bottom: 14px;
}

.share-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.share-links .share-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 33, 38, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 255, 0.9);
  box-shadow: 0 10px 22px rgba(31, 34, 36, 0.04);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.share-links .share-action-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff;
  box-shadow: 0 14px 28px rgba(150, 68, 181, 0.2);
}

.share-feedback {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 40px;
  padding: 56px 0 80px;
}

.internal-article-layout {
  padding-top: 32px;
  padding-bottom: 0;
}

.article-body {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.article-body h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.article-body h2 {
  margin: 36px 0 26px;
  font-size: 1.7rem;
}

.article-body p,
.article-body li {
  font-size: 1.04rem;
}

.toc {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: 18px;
  background: rgba(239, 234, 252, 0.82);
}

.toc a {
  display: block;
  margin: 9px 0;
  color: #5d4da6;
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.internal-page-hero .breadcrumbs,
.internal-article-layout .breadcrumbs {
  margin-bottom: 14px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq button {
  width: 100%;
  padding: 22px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.search-form {
  margin-top: 28px;
}

.search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-row .button {
  flex: 0 0 auto;
}

.search-summary,
.form-helper {
  margin-top: 14px;
  font-size: 0.95rem;
}

.form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-notice.success {
  background: rgba(85, 167, 124, 0.12);
  border: 1px solid rgba(85, 167, 124, 0.2);
  color: #255741;
}

.form-notice.error {
  background: rgba(209, 79, 181, 0.1);
  border: 1px solid rgba(209, 79, 181, 0.18);
  color: #7a2858;
}

.contact-status-notice {
  grid-column: 1 / -1;
  margin-bottom: 0;
  scroll-margin-top: 140px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-panel-section,
.mindset-final-section {
  padding-bottom: 0;
}

.mindset-content-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-mindset + .mindset-content-section {
  padding-top: 24px;
}

.mindset-content-section.mindset-final-section {
  padding-bottom: 0;
}

.internal-content-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.internal-page-hero + .internal-content-section {
  padding-top: 24px;
}

.internal-content-section.internal-final-section {
  padding-bottom: 0;
}

.field-label,
label {
  font-weight: 800;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(138, 115, 246, 0.32);
  outline-offset: 2px;
  border-color: rgba(138, 115, 246, 0.45);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.text-list li + li {
  margin-top: 10px;
}

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

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin-bottom: 26px;
  font-size: 1.5rem;
}

.empty-state {
  padding: 34px;
}

.site-footer {
  margin-top: 74px;
  padding: 0 20px 28px;
  color: white;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  background:
    radial-gradient(circle at top left, rgba(243, 125, 202, 0.12), transparent 30%),
    linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2) 58%, #2d2542);
}

.site-footer .eyebrow {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 34px clamp(24px, 5vw, 50px);
  border-radius: 30px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid .social-links a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: #172028;
  box-shadow: 0 12px 28px rgba(7, 13, 20, 0.2);
}

.footer-grid .social-links a:hover {
  background: #ffffff;
  color: #10191f;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-brand span,
.footer-title {
  color: white;
  font-weight: 800;
}

.copyright {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  color: #6d766f;
  text-align: center;
}

.footer-cookie-button {
  display: inline;
  margin-left: 0.7rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.footer-cookie-button:focus-visible,
.analytics-consent-button:focus-visible {
  outline: 3px solid rgba(209, 79, 181, 0.28);
  outline-offset: 3px;
}

.analytics-consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  width: min(720px, calc(100% - 2rem));
  padding: 1.05rem;
  border: 1px solid rgba(209, 79, 181, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(40, 37, 31, 0.14);
  backdrop-filter: blur(18px);
}

.analytics-consent-copy h2 {
  margin: 0 0 0.25rem;
  color: inherit;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.analytics-consent-copy p {
  margin: 0;
  max-width: 45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.analytics-consent-button {
  min-height: 2.55rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent-button--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

@media (max-width: 900px) {
  h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 8vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .site-header {
    align-items: flex-start;
    border-radius: 22px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    padding: 12px;
    border: 1px solid rgba(24, 33, 38, 0.08);
    border-radius: 18px;
    background: rgba(255, 251, 255, 0.96);
    box-shadow: var(--shadow-card);
  }

  .site-nav.open {
    display: grid;
  }

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

  .search-row,
  .cta-band,
  .social-section {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    min-height: 0;
    padding-top: 22px;
  }

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

  .hero-home .hero-copy h1,
  .hero-app .hero-copy h1,
  .hero-about .hero-copy h1,
  .hero-mindset .hero-copy h1,
  .hero-contact .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 8vw, 2.65rem);
  }

  .page-shell.section > h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .phone-frame {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .screenshot-phone-frame {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .app-screenshot-frame,
  .about-screenshot-frame {
    width: min(220px, 100%);
    transform: perspective(800px) rotateY(-7deg) rotateZ(4deg);
  }

  .hero-shot-home,
  .hero-screen-card {
    width: min(360px, 100%);
  }

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

  .section-orbit-graphic {
    display: none;
  }

  .about-story-graphic {
    display: none;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .about-principles-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .store-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .store-cta-panel {
    width: 100%;
    justify-items: stretch;
  }

  .store-button {
    width: 100%;
    max-width: none;
  }

  .section-header,
  .cta-band,
  .social-section {
    display: grid;
  }

  .sidebar {
    position: static;
  }

  .phone-screen {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .analytics-consent-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-consent-actions {
    justify-content: stretch;
  }

  .analytics-consent-button {
    flex: 1 1 10rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .article-card,
  .feature-card,
  .category-card,
  .button,
  .social-links a,
  .social-links button,
  .site-nav a {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  }

  .article-card:hover,
  .feature-card:hover,
  .category-card:hover,
  .button:hover,
  .social-links a:hover,
  .social-links button:hover {
    transform: translateY(-2px);
  }

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