:root {
  --bg: #041a14;
  --deep: #061f18;
  --panel: rgba(34, 47, 41, .9);
  --panel-soft: rgba(255, 255, 255, .065);
  --line: rgba(255, 255, 255, .13);
  --text: #f5f7ef;
  --muted: #9daf9f;
  --green: #77f7ab;
  --green-2: #35de82;
  --teal: #08715f;
  --gold: #efd67a;
  --chat: #eee7db;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 5%, rgba(24, 107, 72, .47), transparent 520px),
    radial-gradient(circle at 20% 0%, rgba(119, 108, 49, .23), transparent 480px),
    linear-gradient(180deg, #112418 0%, #062119 30%, #041911 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, .045) 42.2% 42.7%, transparent 42.9%),
    linear-gradient(118deg, transparent 0 53%, rgba(255, 255, 255, .023) 53.2% 53.7%, transparent 53.9%);
  opacity: .8;
}

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

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

p,
small {
  color: var(--muted);
  line-height: 1.45;
}

.page {
  position: relative;
  overflow: hidden;
}

.wrap {
  width: 710px;
  margin: 0 auto;
}

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
}

.brand-badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #172119;
  font-size: 11px;
}

.brand small {
  display: block;
  margin-top: 1px;
  font-size: 7px;
  font-weight: 900;
  color: #a7b6a9;
}

.nav-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #55f09a, #2bd477);
  color: #052115;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(43, 212, 119, .22);
  animation: ctaPulse 1.65s ease-in-out infinite;
}

.nav-cta {
  min-height: 27px;
  padding: 0 13px;
  font-size: 9px;
}

.primary-btn {
  min-height: 34px;
  padding: 0 19px;
  font-size: 11px;
}

.nav-cta span,
.primary-btn span {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a3b25;
  color: #8cffb8;
  font-size: 7px;
}

@keyframes ctaPulse {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 12px 30px rgba(43, 212, 119, .22);
    transform: translateY(0) scale(1);
  }
  50% {
    filter: brightness(1.13);
    box-shadow: 0 18px 42px rgba(80, 245, 154, .46);
    transform: translateY(-1px) scale(1.018);
  }
}

.hero {
  height: 688px;
  display: grid;
  grid-template-columns: 315px 360px;
  gap: 35px;
  align-items: center;
  padding-top: 48px;
}

.eyebrow {
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 320px;
  color: var(--text);
  font-size: 50px;
  font-weight: 950;
  line-height: .98;
}

.lead {
  max-width: 310px;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 650;
}

.note-card {
  width: 310px;
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(44, 55, 48, .9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}

.note-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 10px;
}

.note-card p {
  font-size: 9px;
  font-weight: 750;
}

.note-card b {
  color: var(--green);
}

.hero-copy .primary-btn {
  margin-top: 15px;
}

.caption {
  margin-top: 9px;
  font-size: 8px;
  font-weight: 700;
  color: #829589;
}

.hero-visual {
  position: relative;
  height: 395px;
}

.green-block {
  position: absolute;
  left: 8px;
  top: 42px;
  width: 342px;
  height: 248px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .04);
  background: linear-gradient(135deg, rgba(114, 245, 168, .18), rgba(255, 255, 255, .03));
}

.result-pop {
  position: absolute;
  top: 22px;
  right: 0;
  z-index: 3;
  width: 220px;
  padding: 14px 15px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(31, 42, 38, .96);
  box-shadow: var(--shadow);
}

.panel-label {
  color: #a6b5aa;
  font-size: 8px;
  font-weight: 950;
  text-transform: uppercase;
}

.return-number {
  display: block;
  color: var(--green);
  font-size: 36px;
  font-weight: 950;
  line-height: .98;
}

.money {
  display: block;
  color: var(--gold);
  font-size: 17px;
  line-height: 1.1;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 0 11px;
}

.status-line span,
.status-line em {
  font-size: 7px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.status-line span {
  color: var(--green);
}

.status-line em {
  padding: 5px 8px;
  border-radius: 999px;
  background: #dff7b2;
  color: #24401f;
}

.bar-set {
  height: 39px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: end;
}

.bar-set i {
  display: block;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #9aff91, #22c96d 68%, #0a7345);
}

.bar-set i:nth-child(1) { height: 18px; }
.bar-set i:nth-child(2) { height: 22px; }
.bar-set i:nth-child(3) { height: 27px; }
.bar-set i:nth-child(4) { height: 34px; }
.bar-set i:nth-child(5) { height: 39px; }

.bar-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
  color: #dce8de;
  font-size: 7px;
  font-weight: 850;
}

.bar-captions span {
  color: #dce8de;
}

.bottom {
  margin-top: 8px;
}

.phone-card {
  overflow: hidden;
  border: 3px solid #e8efeb;
  border-radius: 8px;
  background: var(--chat);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
}

.hero-phone {
  position: absolute;
  left: 2px;
  bottom: 0;
  z-index: 2;
  width: 236px;
  border-radius: 18px;
}

.phone-head {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  background: var(--teal);
  color: #fff;
}

.back-mark {
  color: #d6fff2;
  font-size: 11px;
  font-weight: 900;
}

.avatar {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #48bd82;
  color: #fff;
  font-size: 8px;
  font-weight: 950;
}

.photo.p1 { background: linear-gradient(135deg, #805349, #da8f78); }
.photo.p2 { background: linear-gradient(135deg, #6ec7d3, #f3d06e); }
.photo.p3 { background: linear-gradient(135deg, #c5d9dc, #759e92); }

.phone-head strong {
  display: block;
  min-width: 0;
  font-size: 9px;
  line-height: 1.08;
}

.phone-head small {
  display: block;
  color: #d9fff1;
  font-size: 6px;
}

.head-icons {
  margin-left: auto;
  color: #d7fff1;
  font-size: 9px;
  font-weight: 900;
}

.chat-area {
  min-height: 202px;
  padding: 15px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .45) 1px, transparent 1.2px) 0 0 / 15px 15px,
    var(--chat);
}

.day-pill {
  width: max-content;
  margin: 0 auto 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #d2e4df;
  color: #477167;
  font-size: 7px;
  font-weight: 950;
  text-transform: uppercase;
}

.bubble {
  max-width: 170px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #25342d;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.28;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .08);
}

.bubble.sent {
  margin-left: auto;
  background: #caffbd;
}

.bubble.received {
  background: #fff;
}

.bubble small {
  display: block;
  margin-top: 5px;
  color: #719087;
  text-align: right;
  font-size: 6px;
  font-weight: 900;
}

.compact-section {
  padding-top: 82px;
}

.returns-card,
.weekly-card,
.final-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
}

.returns-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: center;
  padding: 27px 17px;
}

.returns-left {
  padding-left: 2px;
}

.returns-left .return-number {
  font-size: 44px;
}

.mini-table {
  display: grid;
  gap: 8px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.2fr .72fr .72fr .78fr;
  gap: 10px;
  align-items: center;
}

.table-head {
  padding: 0 9px;
  color: #9db0a5;
  font-size: 7px;
  font-weight: 950;
  text-transform: uppercase;
}

.table-row {
  min-height: 36px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  color: #e8eee7;
  font-size: 8px;
  font-weight: 850;
}

.table-row small {
  display: block;
  margin-top: 2px;
  color: #8d9e94;
  font-size: 6px;
  font-weight: 700;
}

.table-row b {
  color: var(--green);
  font-size: 8px;
}

.proof-section {
  padding-top: 40px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  color: var(--text);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
}

.section-title p:last-child {
  margin-top: 10px;
  font-size: 10px;
}

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

.proof-card {
  border-radius: 14px;
}

.proof-card .phone-head {
  height: 45px;
}

.proof-card .phone-head strong {
  font-size: 9px;
}

.proof-card .chat-area {
  min-height: 304px;
  padding: 14px;
}

.proof-card .bubble {
  max-width: 150px;
  font-size: 8px;
}

.weekly-section {
  padding-top: 42px;
}

.weekly-card {
  width: 500px;
  margin: 0 auto;
  padding: 18px 15px 15px;
}

.weekly-card h3 {
  margin: 4px 0 15px;
  color: var(--text);
  font-size: 25px;
  line-height: 1.05;
}

.blueprint-section {
  padding-top: 66px;
}

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

.feature-card {
  min-height: 142px;
  padding: 18px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
}

.feature-card span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--gold);
  color: #172219;
  font-size: 9px;
  font-weight: 950;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1;
}

.feature-card p {
  font-size: 9px;
  font-weight: 650;
}

.cta-section {
  padding-top: 44px;
}

.final-card {
  padding: 36px 24px;
  text-align: center;
}

.final-card h2 {
  color: var(--text);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.final-card > p:not(.eyebrow):not(.caption) {
  max-width: 610px;
  margin: 14px auto 20px;
  font-size: 10px;
}

.final-card .caption {
  margin-top: 10px;
}

.site-footer {
  padding: 20px 0 52px;
  text-align: center;
}

.site-footer p {
  color: #5f7168;
  font-size: 7px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-links a {
  color: #8da197;
  font-size: 9px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  padding: 30px 0 56px;
}

.legal-card {
  width: min(100% - 32px, 760px);
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: none;
  font-size: 36px;
}

.legal-card h2 {
  margin-top: 24px;
  color: var(--text);
  font-size: 18px;
}

.legal-card p,
.legal-card li {
  color: #c2cec5;
  font-size: 13px;
  line-height: 1.65;
}

.legal-card p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card .back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 78% 0%, rgba(24, 107, 72, .52), transparent 360px),
      radial-gradient(circle at 0% 0%, rgba(119, 108, 49, .18), transparent 300px),
      linear-gradient(180deg, #102318 0%, #061d16 35%, #04140f 100%);
  }

  .wrap {
    width: min(100% - 28px, 430px);
  }

  .site-header {
    height: 58px;
  }

  .brand {
    font-size: 9px;
  }

  .brand-badge {
    width: 28px;
    height: 28px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: auto;
    display: block;
    padding-top: 18px;
  }

  .eyebrow {
    font-size: 8px;
    text-align: left;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    max-width: 320px;
    margin: 0;
    font-size: 34px;
    line-height: 1.02;
  }

  .lead {
    max-width: 300px;
    margin: 10px 0 0;
    font-size: 10px;
  }

  .note-card {
    width: 100%;
    margin-top: 13px;
    padding: 11px 13px;
    text-align: left;
  }

  .hero-copy .primary-btn {
    width: min(100%, 250px);
    min-height: 35px;
    margin-top: 13px;
  }

  .hero-visual {
    height: 395px;
    margin-top: 22px;
  }

  .green-block {
    left: 50%;
    top: 44px;
    width: min(100%, 318px);
    height: 198px;
    transform: translateX(-50%);
  }

  .result-pop {
    top: 0;
    left: 50%;
    right: auto;
    width: min(100%, 270px);
    padding: 12px 13px 9px;
    transform: translateX(-50%);
  }

  .return-number {
    font-size: 34px;
  }

  .money {
    font-size: 15px;
  }

  .bar-set {
    height: 32px;
  }

  .bar-set i:nth-child(1) { height: 14px; }
  .bar-set i:nth-child(2) { height: 17px; }
  .bar-set i:nth-child(3) { height: 22px; }
  .bar-set i:nth-child(4) { height: 28px; }
  .bar-set i:nth-child(5) { height: 32px; }

  .hero-phone {
    left: 50%;
    bottom: 0;
    width: min(100%, 278px);
    transform: translateX(-50%);
  }

  .phone-head {
    height: 40px;
    padding: 0 11px;
  }

  .phone-head strong {
    font-size: 10px;
  }

  .phone-head small {
    font-size: 7px;
  }

  .chat-area {
    min-height: 178px;
    padding: 12px;
  }

  .bubble {
    max-width: 198px;
    padding: 7px 9px;
    font-size: 8px;
  }

  .compact-section {
    padding-top: 34px;
  }

  .returns-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 18px 12px;
  }

  .returns-left {
    text-align: center;
  }

  .returns-left .return-number {
    font-size: 42px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1.4fr .75fr .75fr .75fr;
    gap: 6px;
  }

  .table-head {
    font-size: 6px;
  }

  .table-row {
    min-height: 34px;
    padding: 6px 7px;
    font-size: 7px;
  }

  .proof-section {
    padding-top: 38px;
  }

  .section-title h2 {
    font-size: 27px;
  }

  .section-title p:last-child {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 292px);
    margin-left: auto;
    margin-right: auto;
  }

  .proof-card .chat-area {
    min-height: 226px;
    padding: 12px;
  }

  .proof-card .bubble {
    max-width: 214px;
    font-size: 8px;
  }

  .weekly-card {
    width: 100%;
    padding: 15px 11px 12px;
  }

  .weekly-card h3 {
    font-size: 21px;
  }

  .blueprint-section {
    padding-top: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-card {
    min-height: 0;
    padding: 14px;
  }

  .feature-card span {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 13px;
  }

  .feature-card p {
    font-size: 9px;
  }

  .final-card {
    padding: 24px 14px;
  }

  .final-card h2 {
    font-size: 25px;
  }

  .final-card .primary-btn {
    width: min(100%, 292px);
    min-height: 37px;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 380px) {
  .wrap {
    width: min(100% - 22px, 430px);
  }

  h1 {
    font-size: 32px;
  }

  .hero-visual {
    height: 386px;
  }

  .result-pop {
    width: 266px;
  }

  .hero-phone,
  .proof-grid {
    width: 278px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1.25fr .65fr .65fr .7fr;
  }

  .table-row {
    padding: 7px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 420px);
  }

  .site-header {
    height: 52px;
  }

  .brand-badge {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    font-size: 10px;
  }

  .brand small {
    font-size: 6px;
  }

  .hero {
    padding-top: 12px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 7px;
  }

  h1 {
    max-width: 335px;
    font-size: 31px;
    line-height: 1;
  }

  .lead {
    max-width: 330px;
    margin-top: 9px;
    font-size: 10px;
    line-height: 1.4;
  }

  .note-card {
    margin-top: 11px;
    padding: 10px 11px;
  }

  .note-card strong {
    font-size: 9px;
  }

  .note-card p {
    font-size: 8px;
  }

  .hero-copy .primary-btn,
  .final-card .primary-btn {
    width: min(100%, 260px);
    min-height: 34px;
    font-size: 10px;
  }

  .caption {
    margin-top: 7px;
    font-size: 7px;
  }

  .hero-visual {
    height: 348px;
    margin-top: 16px;
  }

  .green-block {
    top: 37px;
    width: min(100%, 304px);
    height: 160px;
  }

  .result-pop {
    width: min(100%, 252px);
    padding: 10px 11px 8px;
  }

  .return-number {
    font-size: 29px;
  }

  .money {
    font-size: 13px;
  }

  .status-line {
    margin: 8px 0 7px;
  }

  .status-line em {
    padding: 4px 7px;
  }

  .bar-set {
    height: 27px;
    gap: 5px;
  }

  .bar-set i:nth-child(1) { height: 12px; }
  .bar-set i:nth-child(2) { height: 15px; }
  .bar-set i:nth-child(3) { height: 19px; }
  .bar-set i:nth-child(4) { height: 23px; }
  .bar-set i:nth-child(5) { height: 27px; }

  .hero-phone {
    width: min(100%, 254px);
    border-width: 2px;
    border-radius: 15px;
  }

  .phone-head {
    height: 36px;
  }

  .avatar {
    width: 21px;
    height: 21px;
    font-size: 7px;
  }

  .chat-area {
    min-height: 150px;
    padding: 10px;
  }

  .day-pill {
    margin-bottom: 8px;
    padding: 3px 9px;
    font-size: 6px;
  }

  .bubble {
    max-width: 185px;
    margin-bottom: 8px;
    padding: 6px 8px;
    font-size: 7px;
    line-height: 1.25;
  }

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

  .returns-card,
  .weekly-card,
  .final-card,
  .feature-card {
    border-radius: 8px;
  }

  .returns-card {
    gap: 12px;
    padding: 15px 10px;
  }

  .returns-left .return-number {
    font-size: 34px;
  }

  .table-head {
    padding: 0 6px;
    font-size: 5px;
  }

  .table-row {
    min-height: 31px;
    padding: 6px;
    gap: 5px;
    font-size: 6px;
  }

  .table-row small {
    font-size: 5px;
  }

  .table-row b {
    font-size: 6px;
  }

  .proof-section {
    padding-top: 30px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p:last-child {
    margin-top: 7px;
    font-size: 8px;
    line-height: 1.35;
  }

  .proof-grid {
    width: min(100%, 270px);
    gap: 12px;
    margin-top: 16px;
  }

  .proof-card {
    border-width: 2px;
    border-radius: 13px;
  }

  .proof-card .phone-head {
    height: 36px;
  }

  .proof-card .chat-area {
    min-height: 188px;
    padding: 10px;
  }

  .proof-card .bubble {
    max-width: 198px;
    font-size: 7px;
  }

  .weekly-section {
    padding-top: 28px;
  }

  .weekly-card {
    padding: 13px 10px 10px;
  }

  .weekly-card h3 {
    margin-bottom: 11px;
    font-size: 19px;
  }

  .blueprint-section {
    padding-top: 30px;
  }

  .feature-grid {
    gap: 9px;
    margin-top: 14px;
  }

  .feature-card {
    padding: 12px;
  }

  .feature-card span {
    width: 25px;
    height: 25px;
    margin-bottom: 9px;
    font-size: 8px;
  }

  .feature-card h3 {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .feature-card p {
    font-size: 8px;
    line-height: 1.4;
  }

  .cta-section {
    padding-top: 28px;
  }

  .final-card {
    padding: 20px 12px;
  }

  .final-card h2 {
    font-size: 23px;
  }

  .final-card > p:not(.eyebrow):not(.caption) {
    margin: 10px auto 14px;
    font-size: 8px;
  }

  .site-footer {
    padding: 16px 0 28px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 29px;
  }

  .hero-visual {
    height: 338px;
  }

  .result-pop {
    width: 244px;
  }

  .hero-phone,
  .proof-grid {
    width: 250px;
  }
}

@media (max-width: 760px) {
  .proof-grid {
    width: min(100%, 248px);
    gap: 10px;
  }

  .proof-card {
    border-width: 2px;
    border-radius: 12px;
  }

  .proof-card .phone-head {
    height: 32px;
    padding: 0 9px;
  }

  .proof-card .avatar {
    width: 20px;
    height: 20px;
    font-size: 7px;
  }

  .proof-card .phone-head strong {
    font-size: 8px;
  }

  .proof-card .phone-head small {
    font-size: 6px;
  }

  .proof-card .head-icons {
    font-size: 8px;
  }

  .proof-card .chat-area {
    min-height: 172px;
    padding: 9px;
  }

  .proof-card .day-pill {
    margin-bottom: 7px;
    padding: 3px 8px;
    font-size: 6px;
  }

  .proof-card .bubble {
    max-width: 178px;
    margin-bottom: 7px;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 7px;
    line-height: 1.22;
  }

  .proof-card .bubble small {
    margin-top: 4px;
    font-size: 6px;
  }
}

@media (max-width: 380px) {
  .proof-grid {
    width: min(100%, 238px);
  }

  .proof-card .chat-area {
    min-height: 160px;
    padding: 8px;
  }

  .proof-card .bubble {
    max-width: 170px;
    margin-bottom: 6px;
    padding: 5px 7px;
    font-size: 6.8px;
  }
}

.section-title .eyebrow,
.weekly-card .eyebrow,
.final-card .eyebrow {
  text-align: center;
}
