:root {
  --charcoal: #151515;
  --graphite: #2a2a2a;
  --bone: #f4efe7;
  --chalk: #fffdf8;
  --tan: #d8c7ae;
  --soft-tan: #e8dccb;
  --red: #c3402e;
  --olive: #6d7652;
  --line: rgba(21, 21, 21, 0.12);
  --line-strong: rgba(21, 21, 21, 0.22);
  --muted: rgba(21, 21, 21, 0.62);
  --faint: rgba(21, 21, 21, 0.42);
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.14);
  --max: 1376px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--chalk), var(--bone) 42%, var(--chalk));
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.45), transparent);
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 72px;
  margin: 0;
  padding: 0 max(32px, calc((100vw - 1504px) / 2 + 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(21, 21, 21, 0.06);
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}

.brand span span,
.brand > span:not(:first-child) {
  color: var(--red);
}

.brand-title span {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  color: rgba(21, 21, 21, 0.74);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--charcoal);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-trigger,
.primary-btn,
.secondary-btn {
  border: 1px solid var(--red);
  border-radius: 7px;
  background: var(--red);
  color: var(--chalk);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  padding: 13px 18px;
  box-shadow: inset 0 -10px 20px rgba(105, 24, 14, 0.12);
}

.secondary-btn {
  display: inline-flex;
  color: var(--red);
  background: transparent;
  box-shadow: none;
}

.download-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 245px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  box-shadow: var(--shadow);
}

.download-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.download-menu a:hover {
  background: rgba(195, 64, 46, 0.09);
}

.menu-trigger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
}

.menu-trigger span {
  width: 18px;
  height: 2px;
  background: var(--charcoal);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 50%;
  z-index: 29;
  width: min(calc(100% - 48px), 1504px);
  margin: 8px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.mobile-nav a {
  display: block;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

main {
  width: 100%;
  margin: 0 auto;
  padding-top: 72px;
}

.page {
  display: none;
  min-height: 70vh;
  background: transparent;
}

.page.is-active {
  display: block;
}

.page-band,
.split-section,
.practice-gallery,
.how-preview,
.scenario-feature,
.seo-faq,
.download-cta,
.inner-hero,
.steps-stack,
.small-reps,
.scenario-grid,
.explore-box,
.blog-grid,
.newsletter,
.about-page,
.values-grid,
.support-page,
.download-page,
.legal-page,
.article-page,
.not-found {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(580px, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 48px;
  padding: 88px 48px 70px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(56px, 6.2vw, 88px);
  line-height: 0.94;
  font-weight: 930;
  letter-spacing: 0;
}

h1 span,
.hero h1 span {
  color: var(--red);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.14;
  font-weight: 900;
}

.lead {
  max-width: 630px;
  margin-bottom: 24px;
  color: rgba(21, 21, 21, 0.76);
  font-size: 20px;
  line-height: 1.48;
}

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

.store-badge {
  min-width: 178px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px 0 14px;
  border-radius: 8px;
  color: #fff;
  background: #050505;
  position: relative;
  box-shadow:
    0 10px 22px rgba(21, 21, 21, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.store-badge:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(21, 21, 21, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.store-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.app-store .store-icon svg {
  fill: #fff;
}

.store-copy {
  display: grid;
  gap: 1px;
}

.store-badge small {
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  opacity: 0.82;
}

.store-badge strong {
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 850;
}

.text-link span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  min-height: 468px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.phone {
  width: 244px;
  min-height: 486px;
  padding: 24px 18px;
  border: 7px solid #111;
  border-radius: 36px;
  background: linear-gradient(180deg, #fffdf8, #f4efe7);
  color: var(--charcoal);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 28px 42px rgba(21, 21, 21, 0.24);
  position: relative;
  overflow: hidden;
}

.phone::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 72px;
  height: 19px;
  content: "";
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #111;
  z-index: 2;
}

.tilt-left {
  transform: rotate(-2deg);
}

.tilt-right {
  transform: rotate(2deg) translateY(18px);
}

.phone-top {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 900;
}

.phone-top i {
  display: block;
  width: 30px;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--charcoal) 33%, transparent 33% 48%, var(--charcoal) 48% 72%, transparent 72% 82%, var(--charcoal) 82%);
  opacity: 0.8;
}

.phone h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.rep {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.center {
  text-align: center;
}

.score-ring {
  position: relative;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 32px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 303deg, rgba(21, 21, 21, 0.11) 303deg 360deg);
  box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.04);
}

.score-ring::before {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--chalk);
  content: "";
}

.score-ring b {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 50px;
  line-height: 0.9;
  font-weight: 900;
}

.score-ring span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.phone-note {
  max-width: 170px;
  margin: 0 auto 22px;
  color: rgba(21, 21, 21, 0.78);
  text-align: center;
  font-size: 12px;
  line-height: 1.38;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.score-strip span {
  color: var(--faint);
  text-align: center;
  font-size: 9px;
  line-height: 1.3;
}

.score-strip b {
  display: block;
  color: var(--charcoal);
  font-size: 18px;
}

.timer {
  margin: 54px 0 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.waveform {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 28px 0;
}

.waveform span {
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
}

.waveform span:nth-child(2n) { height: 58px; opacity: 0.72; }
.waveform span:nth-child(3n) { height: 22px; opacity: 0.45; }
.waveform span:nth-child(5n) { height: 48px; background: var(--tan); }

.record-dot {
  width: 58px;
  height: 58px;
  display: block;
  margin: 20px auto;
  border: 12px solid rgba(216, 199, 174, 0.45);
  border-radius: 999px;
  background: var(--red);
  box-shadow: inset 0 0 0 12px var(--red);
}

.bottom-note {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
}

.audience-strip {
  width: min(100%, var(--max));
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
}

.audience-strip span {
  color: var(--faint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-strip b {
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 70px 48px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-list article {
  display: flex;
  gap: 16px;
}

.feature-list h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.feature-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(195, 64, 46, 0.22);
  border-radius: 999px;
  background: rgba(195, 64, 46, 0.08);
  color: var(--red);
}

.feature-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.editorial-card {
  align-self: end;
  margin: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--tan);
}

.editorial-card img {
  height: 430px;
  object-fit: cover;
}

.practice-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 48px 70px;
  border-bottom: 1px solid var(--line);
}

.practice-gallery figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--tan);
}

.practice-gallery img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.practice-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.72);
  color: var(--chalk);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.how-preview {
  padding: 56px 48px 62px;
  border-bottom: 1px solid var(--line);
}

.section-heading.centered {
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-weight: 600;
}

.process-line {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.process-line article {
  text-align: center;
}

.process-line article span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chalk);
  font-weight: 900;
}

.process-line h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.process-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.process-line i {
  width: 100%;
  height: 1px;
  margin-top: 28px;
  background: var(--line-strong);
}

.scenario-feature {
  padding: 64px 48px;
  border-bottom: 1px solid var(--line);
}

.seo-faq {
  padding: 60px 48px;
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.faq-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

.faq-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.tab-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.tab,
.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  padding: 10px 16px;
}

.tab.is-active,
.chips span:first-child {
  border-color: rgba(195, 64, 46, 0.28);
  background: rgba(195, 64, 46, 0.1);
  color: var(--red);
}

.scenario-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 220, 203, 0.42), rgba(255, 253, 248, 0.88));
  overflow: hidden;
}

.scenario-panel ul {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.scenario-panel li {
  display: flex;
  gap: 10px;
  color: rgba(21, 21, 21, 0.75);
  font-weight: 700;
}

.scenario-panel li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.question-phone {
  justify-self: center;
  transform: translateY(44px);
}

.phone-question {
  margin: 32px 0 26px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 900;
}

.mini-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(216, 199, 174, 0.42);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.download-cta {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  min-height: 310px;
  padding: 52px 48px 0;
  overflow: hidden;
}

.download-cta p {
  color: var(--muted);
  font-size: 18px;
}

.cropped {
  transform: translateY(82px);
}

.big-score {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.big-score span {
  color: var(--muted);
  font-size: 18px;
}

.chart {
  height: 100px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 24px;
}

.chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 0 0;
  background: var(--tan);
}

.chart span:nth-child(2) { height: 44%; }
.chart span:nth-child(3) { height: 58%; background: var(--red); }
.chart span:nth-child(4) { height: 36%; }
.chart span:nth-child(5) { height: 68%; background: var(--red); }
.chart span:nth-child(6) { height: 82%; }
.chart span:nth-child(1) { height: 30%; }

.inner-hero {
  padding: 86px 48px 46px;
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(46px, 5.5vw, 76px);
}

.inner-hero p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.work-hero {
  padding-bottom: 34px;
}

.work-hero .eyebrow {
  margin-bottom: 18px;
}

.workflow-stage {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 58px 48px 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
  color: var(--charcoal);
  overflow: hidden;
}

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

.workflow-copy h2 {
  font-size: clamp(34px, 4.6vw, 58px);
}

.workflow-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.workflow-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.workflow-stats span {
  min-height: 94px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.8);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.workflow-stats b {
  color: var(--charcoal);
  font-size: 34px;
  line-height: 1;
}

.workflow-device-stack {
  position: relative;
  min-height: 520px;
}

.app-phone {
  width: 222px;
  min-height: 430px;
  border-width: 7px;
  box-shadow: 0 30px 60px rgba(21, 21, 21, 0.16);
}

.choose-phone {
  position: absolute;
  left: 0;
  top: 28px;
  transform: rotate(-3deg);
}

.speak-phone {
  position: absolute;
  right: 16px;
  bottom: 12px;
  transform: rotate(3deg);
}

.room-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.room-list span {
  display: block;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  color: rgba(21, 21, 21, 0.7);
  font-size: 13px;
  font-weight: 850;
}

.feedback-sheet {
  position: absolute;
  left: 28%;
  top: 96px;
  z-index: 3;
  width: 318px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  color: var(--charcoal);
  box-shadow: 0 32px 70px rgba(21, 21, 21, 0.14);
}

.feedback-sheet .eyebrow {
  margin-bottom: 12px;
}

.feedback-sheet h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.feedback-bars {
  display: grid;
  gap: 12px;
}

.feedback-bars span {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.feedback-bars span::after {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red) 0 var(--bar), rgba(21, 21, 21, 0.1) var(--bar) 100%);
  content: "";
}

.compact-wave {
  height: 72px;
  margin: 22px 0;
}

.small-record {
  width: 48px;
  height: 48px;
  border-width: 10px;
}

.workflow-steps {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
  padding: 52px 48px;
  border-bottom: 1px solid var(--line);
}

.workflow-steps article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.workflow-steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.workflow-steps h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.workflow-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.practice-proof {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 54px 48px;
  border-bottom: 1px solid var(--line);
}

.practice-proof figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.practice-proof img {
  height: 420px;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.proof-list article {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.proof-list b {
  font-size: 18px;
}

.proof-list span {
  color: var(--muted);
  line-height: 1.45;
}

.steps-stack {
  display: grid;
  gap: 14px;
  padding: 0 48px 46px;
}

.step-card {
  display: grid;
  grid-template-columns: 40px 1fr 240px;
  align-items: center;
  gap: 24px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  overflow: hidden;
}

.step-number {
  font-size: 22px;
  font-weight: 900;
}

.step-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-phone {
  width: 180px;
  min-height: 238px;
  padding-top: 36px;
  transform: translateY(44px);
}

.mini-phone h3 {
  font-size: 14px;
}

.mini-phone p {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.78);
  font-size: 12px;
}

.small-reps,
.explore-box,
.newsletter {
  padding: 38px 48px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 220, 203, 0.74), rgba(255, 253, 248, 0.88));
}

.small-reps {
  margin-bottom: 42px;
}

.centered-row {
  justify-content: center;
}

.scenario-grid,
.blog-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 48px 44px;
}

.scenario-grid article,
.values-grid article,
.support-topics article {
  min-height: 198px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.scenario-grid article,
.values-grid article,
.support-topics article {
  padding: 26px;
}

.scenario-grid article {
  overflow: hidden;
  padding: 0;
}

.scenario-photo {
  height: 178px;
  object-fit: cover;
}

.scenario-grid h2,
.values-grid h2 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.scenario-grid p,
.values-grid p,
.support-topics p {
  color: var(--muted);
  line-height: 1.5;
}

.scenario-grid a,
.scenario-grid h2,
.scenario-grid p,
.scenario-grid .card-icon {
  margin-left: 22px;
  margin-right: 22px;
}

.scenario-grid a {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.card-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  border-radius: 8px;
  background: rgba(195, 64, 46, 0.1);
  color: var(--red);
  font-weight: 900;
}

.explore-box {
  margin-bottom: 42px;
}

.chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.blog-grid img {
  height: 216px;
  object-fit: cover;
}

.blog-grid h2 {
  margin: 18px 18px 10px;
  font-size: 20px;
  line-height: 1.15;
}

.blog-grid p {
  margin: 0 18px 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.newsletter {
  margin-bottom: 42px;
}

.newsletter a {
  color: var(--red);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.about-page,
.support-page,
.download-page,
.not-found {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 54px;
  align-items: center;
  padding: 86px 48px 54px;
}

.about-page h1,
.support-page h1,
.download-page h1,
.not-found h1,
.article-page h1,
.legal-page h1 {
  font-size: clamp(44px, 5.4vw, 76px);
}

.about-page p,
.support-page p,
.download-page p,
.article-page p,
.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.about-page figure,
.not-found figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-page img,
.not-found img {
  height: 380px;
  object-fit: cover;
}

.support-page {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: 70px;
}

.support-copy {
  max-width: 720px;
}

.support-copy .eyebrow {
  margin-bottom: 18px;
}

.support-copy h1 {
  margin-bottom: 16px;
}

.support-copy > p {
  max-width: 580px;
  margin-bottom: 42px;
}

.support-copy h2 {
  margin-bottom: 18px;
}

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

.support-topics article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.84);
}

.support-topics h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-mails {
  display: grid;
  gap: 13px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.08);
}

.contact-mails h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.contact-mails a {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  transition: transform 150ms ease, border-color 150ms ease;
}

.contact-mails a:hover {
  border-color: rgba(195, 64, 46, 0.32);
  transform: translateY(-1px);
}

.contact-mails span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-mails strong {
  color: var(--charcoal);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.download-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 210px));
  gap: 12px;
  margin-top: 28px;
}

.download-notes article {
  min-height: 96px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

.download-notes span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.download-notes strong {
  font-size: 18px;
  line-height: 1.15;
}

.large-phone {
  justify-self: center;
}

.download-phone {
  width: 282px;
  min-height: 560px;
}

.legal-page {
  max-width: 860px;
  padding: 86px 48px 64px;
}

details {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

summary {
  display: block; /* Removes default list-item behavior (including the triangle) in Chrome/Firefox */
  pointer-events: none;
  padding: 18px 22px;
  font-weight: 900;
}

summary::marker,
summary::-webkit-details-marker {
  display: none !important; /* Forces hiding the triangle in Safari, Chrome and Firefox */
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.legal-updated {
  color: var(--faint);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-page a {
  color: var(--red);
  font-weight: 850;
}

.legal-page ul {
  margin: -8px 0 20px;
  padding: 0 22px 0 42px;
  color: var(--muted);
  line-height: 1.55;
}

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

.article-page {
  max-width: 850px;
  padding: 86px 48px 64px;
}

.article-page img {
  height: 390px;
  object-fit: cover;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 2.2fr repeat(5, 1fr);
  gap: 30px;
  padding: 48px max(48px, calc((100vw - var(--max)) / 2 + 48px)) 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-brand p {
  max-width: 230px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

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

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

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

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

  .menu-trigger {
    display: flex;
  }

  .site-header {
    padding: 0 16px;
  }

  .hero,
  .split-section,
  .practice-gallery,
  .workflow-stage,
  .practice-proof,
  .download-cta,
  .about-page,
  .support-page,
  .download-page,
  .not-found {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 390px;
    transform: scale(0.88);
  }

  .audience-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 24px;
  }

  .audience-strip span {
    grid-column: 1 / -1;
  }

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

  .process-line i {
    display: none;
  }

  .scenario-panel,
  .step-card {
    grid-template-columns: 1fr;
  }

  .question-phone,
  .mini-phone {
    transform: none;
  }

  .scenario-grid,
  .blog-grid,
  .values-grid,
  .practice-gallery,
  .faq-grid,
  .workflow-steps,
  .support-topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-stage,
  .practice-proof {
    grid-template-columns: 1fr;
  }

  .workflow-device-stack {
    min-height: 500px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100%;
  }

  .mobile-nav {
    width: calc(100% - 16px);
  }

  .brand {
    font-size: 23px;
  }

  .download-trigger {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  .hero,
  .split-section,
  .practice-gallery,
  .how-preview,
  .scenario-feature,
  .seo-faq,
  .download-cta,
  .inner-hero,
  .workflow-steps,
  .steps-stack,
  .scenario-grid,
  .blog-grid,
  .about-page,
  .values-grid,
  .support-page,
  .download-page,
  .legal-page,
  .article-page,
  .not-found {
    padding-left: 18px;
    padding-right: 18px;
  }

  main {
    padding-top: 66px;
  }

  .site-header {
    top: 0;
    height: 66px;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero-visual {
    width: 100%;
    min-width: 0;
    min-height: 340px;
    justify-content: center;
    gap: 6px;
    transform: none;
    transform-origin: center;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-visual .phone {
    width: min(42vw, 156px);
    min-height: 318px;
    padding: 17px 10px;
    border-width: 5px;
    border-radius: 28px;
  }

  .hero-visual .phone::before {
    top: 7px;
    width: 48px;
    height: 13px;
    border-radius: 0 0 9px 9px;
  }

  .hero-visual .phone-top {
    height: 18px;
    margin-bottom: 16px;
    font-size: 8px;
  }

  .hero-visual .phone-top i {
    width: 22px;
    height: 6px;
  }

  .hero-visual .phone h3 {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .hero-visual .rep,
  .hero-visual .small,
  .hero-visual .phone-note {
    font-size: 10px;
  }

  .hero-visual .score-ring {
    width: 94px;
    height: 94px;
    margin: 19px auto 12px;
  }

  .hero-visual .score-ring::before {
    inset: 12px;
  }

  .hero-visual .score-ring b {
    font-size: 34px;
  }

  .hero-visual .score-ring span {
    font-size: 11px;
  }

  .hero-visual .phone-note {
    max-width: 122px;
    margin-bottom: 12px;
  }

  .hero-visual .score-strip {
    gap: 3px;
    padding-top: 9px;
  }

  .hero-visual .score-strip span {
    font-size: 7px;
  }

  .hero-visual .score-strip b {
    font-size: 13px;
  }

  .hero-visual .timer {
    margin-top: 34px;
    font-size: 34px;
  }

  .hero-visual .waveform {
    height: 58px;
    gap: 3px;
    margin: 18px 0;
  }

  .hero-visual .waveform span {
    width: 3px;
    height: 24px;
  }

  .hero-visual .waveform span:nth-child(2n) {
    height: 38px;
  }

  .hero-visual .waveform span:nth-child(3n) {
    height: 16px;
  }

  .hero-visual .waveform span:nth-child(5n) {
    height: 32px;
  }

  .hero-visual .record-dot {
    width: 42px;
    height: 42px;
    margin: 12px auto;
    border-width: 9px;
    box-shadow: inset 0 0 0 9px var(--red);
  }

  .hero-visual .bottom-note {
    bottom: 17px;
  }

  .page {
    overflow: hidden;
  }

  .store-row {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge {
    width: 100%;
  }

  .scenario-grid,
  .blog-grid,
  .values-grid,
  .practice-gallery,
  .faq-grid,
  .workflow-steps,
  .support-topics,
  .process-line {
    grid-template-columns: 1fr;
  }

  .workflow-stage {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 18px;
  }

  .workflow-stats,
  .download-notes {
    grid-template-columns: 1fr;
  }

  .workflow-device-stack {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .choose-phone,
  .speak-phone,
  .feedback-sheet {
    position: relative;
    inset: auto;
    width: min(100%, 300px);
    margin: 0 auto;
    transform: none;
  }

  .practice-proof {
    grid-template-columns: 1fr;
  }

  .scenario-panel {
    padding: 20px;
  }

  .blog-grid img {
    height: 210px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom {
    display: grid;
  }

}
