:root {
  --ultra-violet: #5f3dc4;
  --violet-700: #4b2fa4;
  --violet-100: #efe9ff;
  --violet-050: #faf7ff;
  --ink: #081636;
  --muted: #5d6480;
  --line: #e4ddf5;
  --white: #ffffff;
  --blue: #315f9d;
  --mint: #2f8f83;
  --coral: #ce6560;
  --shadow: 0 22px 70px rgba(47, 31, 96, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(95, 61, 196, 0.11), transparent 31rem),
    radial-gradient(circle at 80% 28%, rgba(47, 143, 131, 0.11), transparent 30rem),
    linear-gradient(180deg, #fffaff 0%, #fbf9ff 54%, #ffffff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: max-content;
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}

.brand img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 10px;
}

.wordmark {
  display: inline-flex;
}

.brand-says {
  color: var(--ultra-violet);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.primary-nav a {
  padding: 0;
  border-radius: 0;
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a:last-child {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ultra-violet);
}

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

.menu-toggle {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(95, 61, 196, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 16px 0 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ultra-violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 5.9vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-text,
.showcase-copy p,
.cta p,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--ultra-violet);
  box-shadow: 0 16px 34px rgba(95, 61, 196, 0.26);
}

.button.secondary {
  color: var(--ultra-violet);
  border-color: rgba(95, 61, 196, 0.26);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
  min-height: clamp(550px, 61vw, 690px);
}

.main-shot {
  position: absolute;
  right: clamp(0px, 3vw, 34px);
  top: 0;
  z-index: 2;
}

.phone-shot {
  position: absolute;
  width: clamp(300px, 34vw, 380px);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.quote-band {
  padding: 40px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.quote-band p {
  width: min(880px, 100%);
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

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

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.feature-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(47, 31, 96, 0.08);
}

.feature-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 52px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.feature-card.violet .icon-badge {
  background: var(--ultra-violet);
}

.feature-card.blue .icon-badge {
  background: var(--blue);
}

.feature-card.mint .icon-badge {
  background: var(--mint);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.screen-stack img {
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #343c5f;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--mint);
  font-weight: 900;
}

.lines-section {
  padding: 104px 20px;
  background: linear-gradient(135deg, var(--violet-050), #ffffff 58%, #eff9f6);
}

.line-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.line-cards article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(47, 31, 96, 0.08);
}

.line-cards p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.18;
}

.line-cards span {
  display: block;
  margin-bottom: 10px;
  color: var(--ultra-violet);
  font-size: 0.9rem;
  font-weight: 800;
}

.cta {
  width: min(980px, calc(100% - 40px));
  margin: 96px auto 96px;
  padding: clamp(36px, 7vw, 76px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 233, 255, 0.8)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta img {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 18px;
}

.cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.app-store-button {
  margin-top: 18px;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-social-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.copyright {
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-copy {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #4e5570;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a {
  color: inherit;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 0;
}

.footer-social svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-fill svg {
  fill: currentColor;
  stroke: none;
}

.footer-links button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.legal-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.legal-document {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-document h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.legal-document p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-document a {
  color: var(--ultra-violet);
  font-weight: 800;
}

.legal-date {
  margin-bottom: 34px;
  font-weight: 800;
}

.support-lede {
  max-width: 720px;
  margin-bottom: 34px;
}

.support-contact {
  padding: 24px;
  border: 1px solid rgba(95, 61, 196, 0.18);
  border-radius: 8px;
  background: rgba(239, 233, 255, 0.42);
}

.support-contact h2,
.support-grid h2 {
  margin-top: 0;
}

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

.support-grid section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.about-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.about-hero {
  max-width: 950px;
  padding: clamp(12px, 4vw, 40px) 0 32px;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
}

.about-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.about-story {
  max-width: 760px;
  margin-bottom: 88px;
}

.about-story-copy {
  padding: 0;
}

.about-story-copy p {
  margin-bottom: 24px;
  color: #343c5f;
  font-size: clamp(1.06rem, 1.45vw, 1.18rem);
  line-height: 1.78;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

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

.about-pillars p,
.about-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 96px;
}

.about-pillars article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(47, 31, 96, 0.08);
}

.about-pillars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ultra-violet);
  font-weight: 800;
}

.about-pillars h3 {
  margin-bottom: 12px;
}

.about-pillars p {
  margin-bottom: 0;
}

.about-cta {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-cta h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.about-cta p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
}

.hub-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.hub-hero {
  max-width: 940px;
  padding: clamp(12px, 4vw, 40px) 0 70px;
}

.hub-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 6.1vw, 5.3rem);
}

.hub-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.blog-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 104px;
}

.blog-hero {
  padding: clamp(18px, 5vw, 64px) 0 42px;
}

.blog-hero h1 {
  margin-bottom: 42px;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: 0.98;
}

.blog-hero-article {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.blog-hero-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(95, 61, 196, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #f1ecff, #ffffff);
}

.blog-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.blog-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.blog-hero-title {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.3vw, 4.15rem);
  font-weight: 800;
  line-height: 0.96;
}

.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 54px;
}

.blog-category-nav button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #4e5570;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
}

.blog-category-nav button.is-active {
  border-color: var(--ultra-violet);
  color: var(--white);
  background: var(--ultra-violet);
}

.blog-feed h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

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

.blog-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 8px;
  min-width: 0;
}

.blog-card-image {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(95, 61, 196, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #f1ecff, #ffffff);
}

.blog-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.blog-card-image span {
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: 24px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.95;
}

.blog-card-image-screens {
  background:
    linear-gradient(135deg, rgba(8, 22, 54, 0.1), transparent),
    linear-gradient(145deg, #315f9d 0%, #5f3dc4 100%);
}

.blog-card-image-siblings {
  background:
    linear-gradient(135deg, rgba(8, 22, 54, 0.09), transparent),
    linear-gradient(145deg, #2f8f83 0%, #5f3dc4 100%);
}

.blog-card-image-fairness {
  background:
    linear-gradient(135deg, rgba(8, 22, 54, 0.08), transparent),
    linear-gradient(145deg, #ce6560 0%, #5f3dc4 100%);
}

.blog-card-image-feelings {
  background:
    linear-gradient(135deg, rgba(8, 22, 54, 0.08), transparent),
    linear-gradient(145deg, #081636 0%, #6f4ef0 100%);
}

.blog-card-image-story {
  background: linear-gradient(135deg, #f5f1ff, #ffffff);
}

.blog-card-meta {
  color: var(--ultra-violet);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.blog-card-date {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.blog-card-title {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-weight: 800;
  line-height: 1.08;
}

.blog-card-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.hub-grid,
.blog-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 96px;
}

.hub-grid article,
.blog-plan article,
.scenario-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 42px rgba(47, 31, 96, 0.08);
}

.scenario-category-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ultra-violet);
  font-weight: 800;
}

.hub-grid article h3,
.blog-plan article h3,
.scenario-list article h3 {
  margin-bottom: 10px;
}

.hub-grid article p,
.blog-plan article p,
.scenario-list article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.scenario-preview {
  margin-bottom: 96px;
}

.scenario-library {
  margin-bottom: 96px;
}

.scenario-library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.scenario-library-grid section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 42px rgba(47, 31, 96, 0.08);
}

.scenario-library-grid h3 {
  margin-bottom: 18px;
}

.scenario-library-grid a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #343c5f;
  font-weight: 800;
  line-height: 1.35;
}

.scenario-list {
  display: grid;
  gap: 18px;
}

.scenario-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
}

.scenario-list span {
  color: var(--ultra-violet);
  font-size: 0.9rem;
  font-weight: 800;
}

.hub-cta {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 233, 255, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.hub-cta h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.hub-cta p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}

.scenario-page {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.scenario-article {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(95, 61, 196, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--ultra-violet);
  font-size: 0.9rem;
  font-weight: 800;
}

.scenario-article h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
}

.scenario-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.scenario-section {
  margin-top: 56px;
}

.scenario-section h2,
.related-scenarios h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.scenario-section p,
.practice-flow li {
  color: #343c5f;
  font-size: 1.05rem;
  line-height: 1.75;
}

.script-callout {
  margin-top: 56px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(95, 61, 196, 0.2);
  border-radius: 8px;
  background: rgba(239, 233, 255, 0.56);
}

.script-callout h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.pushback-grid {
  display: grid;
  gap: 14px;
}

.pushback-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pushback-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--ultra-violet);
  font-weight: 800;
}

.pushback-grid p {
  margin-bottom: 0;
}

.practice-flow ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  margin-bottom: 0;
}

.related-scenarios {
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.related-scenarios div {
  display: grid;
  gap: 12px;
}

.related-scenarios a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #343c5f;
  font-weight: 800;
  line-height: 1.35;
}

.related-scenarios span {
  color: var(--ultra-violet);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(760px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(95, 61, 196, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(47, 31, 96, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner h2 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 44px;
  padding: 0 16px;
  cursor: pointer;
}

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

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px max(14px, calc((100vw - 1180px) / 2));
  }

  .mobile-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-left: auto;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--white);
    background: var(--ultra-violet);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    max-width: none;
    margin-left: 0;
    padding: 10px max(14px, calc((100vw - 1180px) / 2)) 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 255, 0.98);
    box-shadow: 0 22px 46px rgba(47, 31, 96, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow-x: visible;
  }

  .site-header.is-menu-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav a:first-child {
    border-top: 0;
  }

  .primary-nav a:last-child {
    width: auto;
    margin-top: 10px;
    padding: 10px 16px;
  }

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

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

  .blog-hero-image {
    min-height: 360px;
  }

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

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

  .phone-shot {
    width: min(66vw, 340px);
  }

  .main-shot {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .feature-grid,
  .line-cards,
  .about-pillars,
  .hub-grid,
  .blog-plan,
  .scenario-library-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 240px;
  }

  .icon-badge {
    margin-bottom: 32px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    justify-items: start;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .primary-nav {
    padding: 10px 14px 16px;
  }

  .hero,
  .feature-grid,
  .showcase,
  .about-main,
  .hub-main,
  .blog-main,
  .scenario-page,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .blog-main {
    padding-top: 44px;
    padding-bottom: 72px;
  }

  .blog-hero {
    padding-top: 16px;
    padding-bottom: 34px;
  }

  .blog-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(2.65rem, 12vw, 3rem);
  }

  .blog-hero-image {
    min-height: 300px;
  }

  .blog-hero-title {
    margin-top: 12px;
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .blog-category-nav {
    gap: 10px;
    margin-bottom: 40px;
  }

  .blog-category-nav button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .blog-card-grid {
    gap: 34px;
  }

  .blog-card-image {
    min-height: 260px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 12vw, 3rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

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

  .phone-shot {
    width: clamp(230px, 68vw, 300px);
  }

  .main-shot {
    left: 50%;
    transform: translateX(-50%);
  }

  .quote-band {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .feature-grid,
  .showcase,
  .lines-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .about-main {
    padding-top: 44px;
    padding-bottom: 72px;
  }

  .hub-main {
    padding-top: 44px;
    padding-bottom: 72px;
  }

  .about-story,
  .about-pillars,
  .hub-grid,
  .blog-plan,
  .scenario-preview {
    margin-bottom: 72px;
  }

  .scenario-list article {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }
}
