:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --paper: #fbfbf8;
  --surface: #ffffff;
  --ink: #141514;
  --muted: #626a70;
  --quiet: #8a9298;
  --line: #d9ded8;
  --blue: #007aff;
  --blue-press: #0064d2;
  --green: #148044;
  --green-soft: #e9f6ee;
  --amber: #bf6d00;
  --amber-soft: #fff3dd;
  --red: #cf2f27;
  --steel: #e9eef0;
  --shadow: 0 20px 54px rgba(20, 21, 20, 0.14);
  --max: 1160px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Yu Gothic UI", Meiryo, system-ui, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.nobr {
  white-space: nowrap;
}

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

button,
input,
select,
textarea {
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: calc(12px + var(--safe-top)) max(20px, calc((100vw - var(--max)) / 2)) 12px;
  border-bottom: 1px solid rgba(217, 222, 216, 0.78);
  background: rgba(246, 247, 244, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand span {
  font-size: 17px;
}

.brand small {
  display: inline-grid;
  place-items: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.header-nav a {
  padding: 8px 0;
}

.header-cta {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 48px max(20px, calc((100vw - var(--max)) / 2)) 34px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background:
    repeating-linear-gradient(90deg, rgba(20, 21, 20, 0.05) 0 1px, transparent 1px 52px),
    #eef1ed;
}

.shelf,
.note-strip {
  position: absolute;
  display: grid;
  gap: 4px;
  width: 180px;
  min-height: 74px;
  border: 1px solid rgba(20, 21, 20, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(20, 21, 20, 0.08);
}

.shelf span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.shelf strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.shelf-left {
  left: max(18px, calc((100vw - var(--max)) / 2 + 8px));
  bottom: -8px;
  transform: rotate(-2deg);
}

.shelf-right {
  right: max(18px, calc((100vw - var(--max)) / 2 + 360px));
  top: 112px;
  transform: rotate(2deg);
}

.note-strip {
  width: auto;
  min-height: 0;
  padding: 9px 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.note-a {
  right: max(26px, calc((100vw - var(--max)) / 2 + 260px));
  bottom: 112px;
  background: var(--amber-soft);
}

.note-b {
  right: max(16px, calc((100vw - var(--max)) / 2 + 18px));
  top: 190px;
  background: var(--green-soft);
}

.phone-mock {
  position: absolute;
  right: max(46px, calc((100vw - var(--max)) / 2 + 46px));
  bottom: -112px;
  width: clamp(286px, 27vw, 366px);
  aspect-ratio: 0.49;
  border: 10px solid #171817;
  border-radius: 38px;
  background: #171817;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-top {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #171817;
  transform: translateX(-50%);
}

.app-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  padding: 32px 14px 16px;
  background: #f5f5f7;
}

.screen-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.screen-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.screen-head strong {
  font-size: 18px;
}

.scan-pane,
.decision-panel,
.proof-row > div,
.tool-row {
  border: 1px solid #dde2e5;
  border-radius: 8px;
  background: #fff;
}

.scan-pane {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 184px;
  padding: 18px;
  overflow: hidden;
}

.scan-pane::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(0, 122, 255, 0.75);
  border-radius: 8px;
}

.scan-line {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 122, 255, 0.42);
}

.barcode {
  display: flex;
  align-items: stretch;
  gap: 5px;
  height: 78px;
}

.barcode i {
  display: block;
  width: 6px;
  background: #1e2326;
}

.barcode i:nth-child(2),
.barcode i:nth-child(5) {
  width: 13px;
}

.barcode i:nth-child(4),
.barcode i:nth-child(7) {
  width: 3px;
}

.scan-pane p {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.decision-panel {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 13px;
}

.badge {
  justify-self: start;
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.badge.check {
  background: var(--green-soft);
  color: var(--green);
}

.decision-panel h2 {
  font-size: 20px;
  line-height: 1.2;
}

.decision-panel p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.proof-row > div {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.proof-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.proof-row strong {
  font-size: 14px;
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  background: #dfe4e7;
}

.tool-row span {
  display: grid;
  place-items: center;
  min-height: 40px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 600px;
  margin-top: 22px;
  color: #3d4449;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-link {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 122, 255, 0.23);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: var(--blue-press);
}

.secondary-link {
  border: 1px solid rgba(20, 21, 20, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(20, 21, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 16px;
}

.hero-proof div {
  display: grid;
  gap: 5px;
  min-height: 66px;
  align-content: center;
  border: 1px solid rgba(20, 21, 20, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 26px rgba(20, 21, 20, 0.07);
}

.hero-proof span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.hero-proof strong {
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: 100px max(20px, calc((100vw - var(--max)) / 2));
}

section[id] {
  scroll-margin-top: 86px;
}

.decision-section {
  padding-bottom: 88px;
}

.screen-section {
  padding-top: 88px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.two-column,
.answer-grid,
.fit-layout,
.faq-layout,
.beta-layout,
.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.section h2 {
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.14;
}

.two-column h2,
.answer-grid h2,
.fit-layout h2,
.beta-layout h2,
.faq-layout h2,
.apply-layout h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
}

.section h3 {
  font-size: 18px;
  line-height: 1.3;
}

.line {
  display: inline;
}

.section p {
  color: var(--muted);
  line-height: 1.75;
}

.pain-section {
  background: var(--bg);
}

.pain-list,
.feature-grid,
.beta-points,
.notice-grid {
  display: grid;
  gap: 12px;
}

.pain-list {
  grid-template-columns: 1fr 1fr;
}

.pain-list article,
.feature-grid article,
.beta-points article {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.pain-list article {
  background: #fff;
}

.answer-section,
.decision-section,
.screen-section,
.walkthrough-section,
.apply-section {
  background: var(--paper);
}

.answer-grid > div:first-child p,
.beta-layout > div:first-child p,
.apply-copy p {
  margin-top: 20px;
  max-width: 620px;
  font-weight: 700;
}

.flow-panel {
  display: grid;
  gap: 12px;
}

.flow-panel div {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.flow-panel span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.flow-panel strong {
  align-self: end;
  font-size: 20px;
}

.flow-panel p {
  align-self: start;
  font-size: 14px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading p {
  font-weight: 700;
}

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

.feature-grid article span,
.decision-card span,
.fit-grid article span,
.beta-points article span,
.walkthrough article span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.feature-grid article p,
.pain-list article p,
.decision-card p,
.fit-grid article p,
.beta-points article p,
.walkthrough article p,
.notice-grid p {
  font-size: 14px;
}

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

.decision-card {
  display: grid;
  gap: 12px;
  min-height: 218px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.decision-card span {
  justify-self: start;
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
}

.decision-card.buy span {
  background: var(--green-soft);
  color: var(--green);
}

.decision-card.review span {
  background: var(--amber-soft);
  color: var(--amber);
}

.decision-card.skip span {
  background: #f0f2f4;
  color: #58616a;
}

.screen-section {
  overflow: hidden;
  background: #fff;
}

.screen-heading {
  max-width: 820px;
}

.screen-heading h2 .line,
.screen-proof-copy h3 .line {
  display: block;
}

.screen-proof-grid {
  display: grid;
  gap: 18px;
}

.screen-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(217, 222, 216, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.88)),
    var(--surface);
  box-shadow: 0 24px 60px rgba(20, 21, 20, 0.08);
}

.screen-proof-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.proof-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.screen-proof-copy h3 {
  max-width: 580px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.14;
}

.screen-proof-copy p {
  max-width: 620px;
  font-weight: 700;
}

.screen-points {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.screen-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.screen-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.screen-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(217, 222, 216, 0.96);
  border-radius: 8px;
  background: #edf6ff;
  box-shadow: 0 18px 46px rgba(20, 21, 20, 0.14);
}

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

.result-proof .screen-media img {
  object-position: 50% 75%;
}

.rules-proof .screen-media {
  order: -1;
}

.rules-proof .screen-media img {
  object-position: 50% 74%;
}

.walkthrough {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.walkthrough article {
  display: grid;
  gap: 10px;
  min-height: 236px;
  align-content: start;
  padding: 18px;
  border-top: 3px solid var(--ink);
  background: #fff;
}

.fit-section {
  background: #fff;
}

.fit-layout > div:first-child p {
  margin-top: 20px;
  max-width: 620px;
  font-weight: 700;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fit-grid article {
  display: grid;
  gap: 10px;
  min-height: 164px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.beta-section {
  background: #edf1f0;
}

.beta-points article {
  min-height: 154px;
}

.beta-points strong {
  font-size: 18px;
  line-height: 1.35;
}

.trust-section {
  background: var(--bg);
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 18px;
  font-size: 14px;
}

.notice-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.notice-grid p {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #495158;
  font-weight: 700;
}

.apply-layout {
  align-items: start;
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
}

.apply-card,
.apply-checklist div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.apply-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
}

.apply-card span,
.apply-checklist span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.apply-card h3 {
  font-size: 26px;
}

.apply-card .primary-link {
  justify-self: start;
  margin-top: 4px;
}

.link-note {
  color: var(--quiet);
  font-size: 12px;
}

.apply-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.apply-checklist div {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
}

.apply-checklist strong {
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(20px, calc((100vw - var(--max)) / 2)) calc(26px + var(--safe-bottom));
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    align-items: start;
    padding-top: 42px;
  }

  .hero-content {
    width: min(600px, 100%);
  }

  .phone-mock {
    right: 8px;
    bottom: -164px;
    width: 276px;
  }

  .shelf-right {
    right: 182px;
  }

  .two-column,
  .answer-grid,
  .fit-layout,
  .faq-layout,
  .beta-layout,
  .apply-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .screen-proof-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rules-proof .screen-media {
    order: 0;
  }

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

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

@media (min-width: 721px) {
  .section h2,
  .screen-proof-copy h3 {
    text-wrap: balance;
  }

  .section h2 .line,
  .screen-proof-copy h3 .line {
    display: block;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    min-height: calc(80svh - var(--safe-top));
    padding: 34px 18px 28px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: clamp(36px, 10vw, 44px);
  }

  .hero-copy {
    max-width: 430px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .primary-link,
  .secondary-link {
    min-height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero-facts {
    max-width: 270px;
    margin-top: 16px;
  }

  .hero-facts li {
    min-height: 29px;
    font-size: 11px;
  }

  .hero-facts li:last-child {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .phone-mock {
    right: -18px;
    bottom: -190px;
    width: 232px;
    border-width: 8px;
    border-radius: 30px;
  }

  .app-screen {
    border-radius: 22px;
    padding: 28px 10px 12px;
  }

  .scan-pane {
    min-height: 144px;
  }

  .decision-panel h2 {
    font-size: 16px;
  }

  .proof-row,
  .tool-row {
    display: none;
  }

  .shelf-left {
    left: 18px;
    bottom: 44px;
    width: 142px;
  }

  .shelf-left strong {
    font-size: 24px;
  }

  .shelf-right,
  .note-a,
  .note-b {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .section h2 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.16;
  }

  .flow-panel div {
    min-height: 100px;
  }

  .flow-panel strong {
    font-size: 18px;
  }

  .screen-section {
    padding-top: 68px;
  }

  .screen-proof-card {
    gap: 18px;
    padding: 22px;
  }

  .screen-proof-copy {
    gap: 12px;
  }

  .screen-proof-copy h3 {
    font-size: clamp(25px, 7.6vw, 31px);
    line-height: 1.15;
  }

  .screen-proof-copy p {
    font-size: 14px;
    line-height: 1.68;
  }

  .screen-points {
    gap: 8px;
  }

  .screen-points li {
    font-size: 13px;
  }

  .pain-list,
  .feature-grid,
  .fit-grid,
  .walkthrough {
    grid-template-columns: 1fr;
  }

  .pain-list article,
  .feature-grid article,
  .decision-card,
  .fit-grid article,
  .beta-points article {
    min-height: 0;
    padding: 18px;
  }

  .walkthrough article {
    min-height: 0;
  }

  .apply-panel,
  .apply-checklist {
    grid-template-columns: 1fr;
  }

  .apply-card .primary-link {
    justify-self: stretch;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 380px), (max-height: 720px) and (max-width: 720px) {
  .hero {
    min-height: calc(78svh - var(--safe-top));
    padding-top: 24px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-facts {
    display: none;
  }

  .phone-mock {
    width: 208px;
    bottom: -184px;
  }
}

/* Studio-inspired visual direction: dark hero, crisp white sections, blue proof blocks. */
:root {
  --studio-ink: #07101f;
  --studio-deep: #061b3d;
  --studio-blue: #0766f4;
  --studio-blue-dark: #004cc9;
  --studio-white: #ffffff;
  --studio-cloud: #f4f6f8;
  --studio-line: #dfe5ea;
}

body {
  background: var(--studio-white);
}

.site-header {
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 16, 31, 0.86);
  color: #fff;
  box-shadow: 0 18px 42px rgba(2, 8, 23, 0.18);
}

.brand span {
  color: #fff;
}

.brand small {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.68);
}

.header-nav {
  color: rgba(255, 255, 255, 0.72);
}

.header-cta {
  background: var(--studio-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 102, 244, 0.28);
}

.hero {
  min-height: 820px;
  padding-top: 76px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(74, 152, 255, 0.46), transparent 24%),
    radial-gradient(circle at 50% 96%, rgba(7, 102, 244, 0.52), transparent 34%),
    linear-gradient(160deg, #051126 0%, #061b3d 48%, #07101f 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.hero-scene::before {
  height: 28%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 58px),
    rgba(255, 255, 255, 0.06);
}

.hero-content {
  width: min(690px, 100%);
}

.hero .eyebrow {
  color: #7db5ff;
}

.hero h1 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.primary-link {
  border-color: var(--studio-blue);
  background: var(--studio-blue);
  box-shadow: 0 14px 34px rgba(7, 102, 244, 0.35);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: var(--studio-blue-dark);
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-facts li,
.hero-proof div,
.shelf,
.note-strip {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  backdrop-filter: blur(18px);
}

.hero-facts li,
.hero-proof strong,
.shelf span,
.shelf strong,
.note-strip {
  color: #fff;
}

.hero-proof span {
  color: #7db5ff;
}

.note-a {
  background: rgba(255, 255, 255, 0.16);
}

.note-b {
  background: rgba(20, 128, 68, 0.28);
}

.shelf-left {
  bottom: 20px;
}

.phone-mock {
  right: max(36px, calc((100vw - var(--max)) / 2 + 18px));
  bottom: -62px;
  width: clamp(320px, 29vw, 410px);
  border-color: #0d1117;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.phone-mock::before {
  content: "";
  position: absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 56px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  padding-top: 116px;
  padding-bottom: 116px;
}

.pain-section,
.feature-section,
.trust-section,
.faq-section {
  background: #fff;
}

.answer-section,
.decision-section,
.screen-section,
.walkthrough-section,
.apply-section {
  background: var(--studio-cloud);
}

.beta-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(7, 102, 244, 0.44), transparent 38%),
    linear-gradient(155deg, #061126 0%, #06295d 54%, #0766f4 100%);
  color: #fff;
}

.beta-section .eyebrow,
.beta-section .beta-points article span {
  color: #9cc7ff;
}

.beta-section p {
  color: rgba(255, 255, 255, 0.72);
}

.beta-points article {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.eyebrow,
.proof-kicker,
.feature-grid article span,
.fit-grid article span,
.walkthrough article span,
.apply-card span,
.apply-checklist span {
  color: var(--studio-blue);
}

.section h2 {
  max-width: 880px;
  letter-spacing: 0;
}

.two-column h2,
.answer-grid h2,
.fit-layout h2,
.beta-layout h2,
.faq-layout h2,
.apply-layout h2 {
  max-width: 560px;
}

.pain-list article,
.feature-grid article,
.fit-grid article,
.decision-card,
.flow-panel div,
.notice-grid p,
.apply-card,
.apply-checklist div,
.faq-list details {
  border-color: var(--studio-line);
  background: #fff;
  box-shadow: none;
}

.pain-list article,
.feature-grid article,
.fit-grid article,
.decision-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pain-list article:hover,
.feature-grid article:hover,
.fit-grid article:hover,
.decision-card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 102, 244, 0.28);
  box-shadow: 0 18px 44px rgba(6, 16, 31, 0.08);
}

.decision-section {
  background: #fff;
}

.decision-grid {
  margin-top: 28px;
}

.screen-section {
  background: var(--studio-cloud);
}

.screen-proof-card {
  border-color: rgba(7, 102, 244, 0.12);
  background:
    radial-gradient(circle at 88% 16%, rgba(7, 102, 244, 0.12), transparent 22%),
    linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: 0 22px 70px rgba(6, 16, 31, 0.1);
}

.screen-media {
  border-color: #cdddeb;
  background: #eaf5ff;
}

.walkthrough article {
  border-top-color: var(--studio-blue);
  background: #fff;
}

.apply-section {
  background: #fff;
}

.apply-card {
  border-color: rgba(7, 102, 244, 0.2);
  box-shadow: 0 24px 70px rgba(6, 16, 31, 0.08);
}

.site-footer {
  background: #050b16;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .phone-mock {
    right: -8px;
    bottom: -134px;
    width: 292px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
  }

  .hero {
    min-height: 690px;
    padding-top: 44px;
    background:
      radial-gradient(circle at 85% 24%, rgba(74, 152, 255, 0.38), transparent 30%),
      linear-gradient(160deg, #051126 0%, #06295d 58%, #07101f 100%);
  }

  .hero h1 {
    font-size: clamp(37px, 10vw, 45px);
    line-height: 1.02;
  }

  .hero-copy {
    color: rgba(255, 255, 255, 0.76);
  }

  .secondary-link {
    background: rgba(255, 255, 255, 0.08);
  }

  .phone-mock {
    right: -26px;
    bottom: -188px;
    width: 228px;
  }

  .phone-mock::before {
    inset: -20px;
    border-radius: 40px;
  }

  .shelf-left {
    bottom: 38px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section h2 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .two-column h2,
  .answer-grid h2,
  .fit-layout h2,
  .beta-layout h2,
  .faq-layout h2,
  .apply-layout h2 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .pain-list article:hover,
  .feature-grid article:hover,
  .fit-grid article:hover,
  .decision-card:hover {
    transform: none;
    box-shadow: none;
  }

  .screen-proof-card {
    box-shadow: 0 18px 44px rgba(6, 16, 31, 0.08);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 31px;
    line-height: 1.05;
  }

  .hero-copy {
    font-size: 14px;
  }

  .primary-link,
  .secondary-link {
    padding: 0 12px;
    font-size: 13px;
  }
}

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

/* Redesign pass: make the hero a product-grade app showcase, not a recolored page. */
:root {
  --hero-navy: #06101f;
  --hero-blue: #086ff7;
  --hero-cyan: #5cd6ff;
  --hero-card: rgba(255, 255, 255, 0.12);
  --hero-line: rgba(255, 255, 255, 0.18);
}

.site-header {
  min-height: 64px;
  background: rgba(7, 12, 24, 0.84);
  color: #fff;
}

.brand span {
  color: #fff;
}

.brand small,
.header-nav {
  color: rgba(255, 255, 255, 0.72);
}

.header-cta {
  background: var(--hero-blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(8, 111, 247, 0.28);
}

.hero {
  display: block;
  min-height: calc(100svh - 64px);
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 151, 255, 0.42), transparent 25%),
    radial-gradient(circle at 36% 108%, rgba(8, 111, 247, 0.48), transparent 34%),
    linear-gradient(150deg, #050814 0%, #07162b 48%, #051f46 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 31%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 58px 100%;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - 64px);
  padding: 70px 0 62px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.hero .eyebrow {
  color: #89bdff;
}

.hero h1 {
  max-width: 690px;
  color: #fff;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.86;
}

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

.primary-link {
  min-height: 54px;
  padding: 0 24px;
  border-color: var(--hero-blue);
  background: var(--hero-blue);
  box-shadow: 0 16px 38px rgba(8, 111, 247, 0.36);
}

.secondary-link {
  min-height: 54px;
  padding: 0 22px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-outcome {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(640px, 100%);
  margin-top: 26px;
}

.hero-outcome div {
  display: grid;
  gap: 7px;
  min-height: 84px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid var(--hero-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-outcome span {
  color: #89bdff;
  font-size: 11px;
  font-weight: 900;
}

.hero-outcome strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.hero-facts li {
  border-color: var(--hero-line);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
}

.hero-proof,
.hero-scene {
  display: none;
}

.hero-visual {
  position: relative;
  height: min(720px, calc(100svh - 112px));
  min-height: 650px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 54px 20px 44px;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 62% 18%, rgba(92, 214, 255, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.phone-mock {
  position: absolute;
  top: 50%;
  right: 48px;
  bottom: auto;
  width: min(390px, 88%);
  aspect-ratio: 0.49;
  border: 11px solid #111723;
  border-radius: 44px;
  background: #111723;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.5),
    0 0 0 8px rgba(255, 255, 255, 0.08);
  transform: translateY(-50%) rotate(-2.4deg);
}

.phone-mock::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: 58px;
  background: linear-gradient(145deg, rgba(111, 170, 255, 0.28), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.phone-top {
  top: 14px;
  width: 92px;
  height: 27px;
  background: #05070b;
}

.app-screen {
  height: 100%;
  border-radius: 32px;
  padding: 43px 15px 15px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}

.screen-head {
  margin-bottom: 10px;
  align-items: center;
}

.screen-head span {
  color: #5c6670;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.screen-head strong {
  color: rgba(7, 16, 31, 0.16);
  font-size: 22px;
}

.scan-pane,
.product-panel,
.decision-panel,
.proof-row > div,
.fee-panel,
.tool-row {
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(6, 16, 31, 0.04);
}

.scan-pane {
  min-height: 118px;
  padding: 14px;
  gap: 7px;
}

.scan-pane::before {
  inset: 12px;
  border-width: 2px;
}

.scan-line {
  left: 24px;
  right: 24px;
  height: 3px;
}

.barcode {
  gap: 4px;
  height: 48px;
}

.barcode i {
  width: 5px;
}

.barcode i:nth-child(2),
.barcode i:nth-child(5) {
  width: 11px;
}

.scan-pane p {
  font-size: 11px;
}

.product-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 9px;
  align-items: center;
  margin-top: 10px;
  padding: 11px;
}

.product-panel strong {
  color: #111827;
  font-size: 13px;
  line-height: 1.35;
}

.product-panel small {
  grid-column: 2;
  color: #73808b;
  font-size: 10px;
  font-weight: 800;
}

.badge.review {
  grid-row: span 2;
  background: var(--amber-soft);
  color: #a45a00;
}

.decision-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
}

.decision-panel div {
  display: grid;
  gap: 5px;
}

.decision-panel span {
  color: #74808b;
  font-size: 10px;
  font-weight: 900;
}

.decision-panel strong {
  color: #111827;
  font-size: 13px;
  line-height: 1.35;
}

.decision-panel em {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: #fff5dd;
  color: #a45a00;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.proof-row > div {
  min-height: 58px;
  padding: 8px;
}

.proof-row span {
  font-size: 9px;
}

.proof-row strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.1;
}

.fee-panel {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding: 11px;
}

.fee-panel span {
  color: #74808b;
  font-size: 10px;
  font-weight: 900;
}

.fee-panel strong {
  color: #111827;
  font-size: 12px;
  line-height: 1.35;
}

.tool-row {
  margin-top: 10px;
  border-radius: 8px;
}

.tool-row span {
  min-height: 38px;
  color: var(--hero-blue);
  font-size: 12px;
}

.store-rack,
.scan-ticket,
.result-callout {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--hero-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.store-rack {
  left: 8px;
  bottom: 38px;
  display: grid;
  gap: 5px;
  width: 178px;
  padding: 14px;
  transform: rotate(-2deg);
}

.store-rack span,
.scan-ticket span,
.result-callout span {
  color: #a9d2ff;
  font-size: 11px;
  font-weight: 900;
}

.store-rack strong {
  font-size: 34px;
  line-height: 1;
}

.store-rack small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
}

.scan-ticket {
  top: 74px;
  left: 26px;
  display: grid;
  gap: 4px;
  min-width: 198px;
  padding: 12px 14px;
  transform: rotate(2deg);
}

.scan-ticket strong {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.result-callout {
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 12px 14px;
}

.result-callout strong {
  font-size: 18px;
  line-height: 1.15;
}

.callout-profit {
  right: 0;
  top: 190px;
}

.callout-speed {
  left: 0;
  top: 260px;
}

.callout-note {
  right: 12px;
  bottom: 100px;
}

.section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.pain-section {
  background: #fff;
}

.pain-list article,
.feature-grid article,
.fit-grid article,
.decision-card,
.flow-panel div,
.apply-card,
.apply-checklist div,
.faq-list details {
  border-color: #e0e7ee;
  box-shadow: 0 18px 54px rgba(6, 16, 31, 0.04);
}

.screen-section,
.answer-section,
.walkthrough-section {
  background:
    linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
}

.screen-proof-card {
  border-color: #dce9f6;
  background:
    radial-gradient(circle at 85% 18%, rgba(8, 111, 247, 0.12), transparent 24%),
    #fff;
  box-shadow: 0 28px 90px rgba(6, 16, 31, 0.1);
}

.screen-media {
  border-color: #cfe1f2;
  box-shadow: 0 22px 70px rgba(6, 16, 31, 0.14);
}

@media (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .phone-mock {
    right: 20px;
    width: 350px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 0;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: 720px;
  }

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

  .phone-mock {
    right: 50%;
    width: min(344px, 78vw);
    transform: translate(50%, -50%) rotate(-1.4deg);
  }

  .scan-ticket {
    left: 24px;
    top: 54px;
  }

  .store-rack {
    left: 28px;
    bottom: 38px;
  }

  .callout-profit {
    right: 22px;
    top: 172px;
  }

  .callout-speed {
    display: none;
  }

  .callout-note {
    right: 28px;
    bottom: 82px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 0 18px;
  }

  .hero-shell {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 50px);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .primary-link,
  .secondary-link {
    min-height: 50px;
  }

  .hero-outcome {
    display: none;
  }

  .hero-facts {
    display: none;
  }

  .hero-visual {
    height: 500px;
    min-height: 500px;
    margin-top: 18px;
  }

  .hero-visual::before {
    inset: 44px -6px 22px;
  }

  .phone-mock {
    width: min(296px, 84vw);
  }

  .app-screen {
    padding: 40px 12px 13px;
  }

  .scan-pane {
    min-height: 96px;
  }

  .product-panel,
  .decision-panel,
  .fee-panel {
    padding: 9px;
  }

  .product-panel strong,
  .decision-panel strong {
    font-size: 11px;
  }

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

  .proof-row > div {
    min-height: 46px;
  }

  .proof-row strong {
    font-size: 13px;
  }

  .fee-panel,
  .tool-row {
    display: none;
  }

  .scan-ticket,
  .store-rack,
  .result-callout {
    display: none;
  }
}

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

  .hero-copy {
    font-size: 14px;
  }

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

  .phone-mock {
    width: 268px;
  }

  .scan-ticket,
  .callout-profit,
  .callout-note {
    display: none;
  }
}
