:root {
  color-scheme: light;
  --bg: #fbf5e9;
  --bg-soft: #f6ead2;
  --surface: #ffffff;
  --surface-muted: #f7efe1;
  --ink: #3a2a10;
  --text: #6e5a37;
  --muted: #9c8a66;
  --line: rgba(107, 78, 30, 0.12);
  --green: #00796b;
  --green-deep: #0a5c50;
  --green-soft: #e3f0ed;
  --gold: #e8a33c;
  --gold-deep: #c9851c;
  --orange: #de5f28;
  --shadow: 0 22px 60px -34px rgba(60, 40, 12, 0.55);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body,
button,
a {
  letter-spacing: 0;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(107, 78, 30, 0.1);
  background: rgba(251, 245, 233, 0.88);
  backdrop-filter: saturate(1.4) blur(10px);
}

.site-nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 3px 8px rgba(90, 65, 20, 0.2);
}

.brand-name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a.button-primary {
  color: #fff;
}

.button,
.store-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.button-primary {
  background: var(--green);
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 6px 16px -4px rgba(0, 121, 107, 0.55);
}

.button-secondary {
  background: var(--green-soft);
  color: var(--green);
  padding: 11px 22px;
}

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

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 35% 35%, rgba(232, 163, 60, 0.3), rgba(232, 163, 60, 0) 70%);
}

.hero::after {
  top: 120px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 121, 107, 0.12), rgba(0, 121, 107, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: center;
  padding: 64px 0 72px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 15px 7px 11px;
  border: 1px solid rgba(107, 78, 30, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #6b4e1e;
  box-shadow: 0 3px 10px rgba(90, 65, 20, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--gold);
  color: #fff;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 900;
  line-height: 1.18;
}

.hero h1 span {
  color: var(--gold-deep);
}

.hero-lead {
  max-width: 520px;
  margin: 0 0 34px;
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.95;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.store-button {
  gap: 11px;
  min-width: 190px;
  border-radius: 14px;
  background: #1b1408;
  color: #fff;
  padding: 13px 20px;
  box-shadow: 0 10px 24px -8px rgba(27, 20, 8, 0.6);
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.1;
  text-align: left;
}

.store-button small {
  opacity: 0.85;
  font-size: 10px;
  font-weight: 500;
}

.store-button strong {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-line b {
  color: var(--ink);
}

.trust-stars {
  color: var(--gold);
}

.hero-phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 308px;
  padding: 11px;
  border-radius: 46px;
  background: #1b1408;
  box-shadow: 0 40px 80px -30px rgba(60, 40, 12, 0.6), 0 8px 22px rgba(60, 40, 12, 0.18);
  animation: nk-bob 6s ease-in-out infinite;
}

.phone::before {
  position: absolute;
  inset: -26px -18px;
  content: "";
  border-radius: 60px;
  background: radial-gradient(circle at 50% 40%, rgba(232, 163, 60, 0.22), rgba(232, 163, 60, 0) 70%);
  z-index: -1;
}

.phone-screen {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 36px;
  background: #efede4;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 118px;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: #1b1408;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-status,
.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  padding: 13px 22px 6px;
  color: #1b1408;
  font-size: 13px;
  font-weight: 800;
}

.phone-title {
  padding: 6px 18px 2px;
}

.phone-title strong {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.phone-body {
  padding: 10px 16px 0;
}

.score-card,
.alert-list,
.phone-chip,
.detected-card {
  background: #fff;
  box-shadow: 0 6px 18px -10px rgba(60, 40, 12, 0.25);
}

.score-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
}

.score-ring {
  width: 96px;
  height: 96px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 82%, #e2e7e1 82% 100%);
}

.score-ring div {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-weight: 900;
}

.score-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.score-copy strong {
  display: block;
  margin: 3px 0 6px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.score-copy span {
  display: inline-block;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 800;
}

.alert-list {
  margin-top: 11px;
  padding: 5px 14px;
  border-radius: 18px;
}

.alert-item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
}

.alert-item + .alert-item {
  border-top: 1px solid rgba(107, 78, 30, 0.08);
}

.alert-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fce9df;
}

.alert-title {
  font-size: 12.5px;
  font-weight: 800;
}

.alert-subtitle {
  color: var(--muted);
  font-size: 10.5px;
}

.phone-chips {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.phone-chip {
  flex: 1;
  padding: 11px 8px;
  border-radius: 14px;
  text-align: center;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
}

.phone-chip span {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
}

.phone-fab {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(0, 121, 107, 0.6);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.stats-strip {
  border-top: 1px solid rgba(107, 78, 30, 0.08);
  border-bottom: 1px solid rgba(107, 78, 30, 0.08);
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 30px 0;
  text-align: center;
}

.stat-value {
  color: var(--gold-deep);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.stat-value.green {
  color: var(--green);
}

.stat-label {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding-bottom: 40px;
}

.section-tint {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.section-white {
  border-top: 1px solid rgba(107, 78, 30, 0.08);
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading h2,
.story-card h2,
.cta-card h2 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.32;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.9;
}

.problem-grid,
.extra-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.problem-card,
.extra-card,
.price-card,
.step-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.problem-card {
  border-radius: var(--radius);
  padding: 28px 24px;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 15px;
  background: #fce9df;
  font-size: 26px;
}

.problem-card h3,
.extra-card h3,
.step-card h3,
.price-card h3 {
  margin: 0 0 8px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.problem-card p,
.extra-card p,
.step-card p {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.85;
}

.story-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-card img {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 20px;
  box-shadow: 0 14px 30px -10px rgba(90, 65, 20, 0.4);
}

.story-card h2 span {
  color: var(--gold-deep);
}

.story-card p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  line-height: 2;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-row.reverse {
  grid-template-columns: 330px minmax(0, 1fr);
}

.feature-copy h3 {
  margin: 0 0 16px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.4;
}

.feature-copy p {
  max-width: 480px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.feature-number {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 34px;
  text-align: center;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}

.check-list li::before {
  width: 21px;
  height: 21px;
  flex: none;
  content: "✓";
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
}

.mini-phone {
  width: 288px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 44px;
  background: #1b1408;
  box-shadow: 0 34px 70px -30px rgba(60, 40, 12, 0.5);
}

.mini-screen {
  position: relative;
  height: 564px;
  overflow: hidden;
  border-radius: 34px;
  background: #0c1311;
}

.mini-screen.light {
  background: #efede4;
}

.scan-area {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, #243330, #0c1311);
}

.mini-title {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.viewfinder {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  height: 130px;
  border: 2px solid rgba(0, 200, 168, 0.7);
  border-radius: 18px;
  transform: translate(-50%, -50%);
}

.barcode {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 54px;
  display: flex;
  gap: 4px;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.barcode span {
  height: 100%;
  background: #fff;
}

.barcode span:nth-child(3n) {
  width: 5px;
}

.barcode span:nth-child(3n + 1) {
  width: 2px;
}

.barcode span:nth-child(3n + 2) {
  width: 3px;
}

.scan-line {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 2px;
  background: #00c8a8;
  box-shadow: 0 0 12px 2px rgba(0, 200, 168, 0.8);
  animation: nk-scan 2.2s ease-in-out infinite alternate;
}

.detected-card {
  position: absolute;
  right: 14px;
  bottom: 20px;
  left: 14px;
  border-radius: 18px;
  padding: 14px;
}

.detected-card small {
  color: var(--green);
  font-weight: 900;
}

.detected-card strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.mini-list {
  padding: 52px 16px 0;
}

.mini-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 8px 18px -14px rgba(60, 40, 12, 0.4);
}

.mini-item-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-muted);
  font-size: 22px;
}

.mini-item strong {
  display: block;
  font-size: 13px;
}

.mini-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.share-card {
  margin: 56px 18px 0;
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 24px -18px rgba(60, 40, 12, 0.4);
}

.share-avatars {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.share-avatars span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green-soft);
}

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

.extra-card {
  border-radius: 18px;
  background: var(--bg);
  padding: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.pricing {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.billing-toggle {
  width: max-content;
  display: flex;
  margin: 0 auto 34px;
  border: 1px solid rgba(107, 78, 30, 0.14);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(90, 65, 20, 0.06);
}

.billing-toggle button {
  min-width: 94px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 800;
}

.billing-toggle button[aria-pressed="true"] {
  background: var(--green);
  color: #fff;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  padding: 26px 22px;
}

.price-card.featured {
  border: 0;
  background: var(--green);
  color: #fff;
  box-shadow: 0 24px 50px -20px rgba(0, 121, 107, 0.6);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 900;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-card h3 {
  color: var(--text);
  font-size: 18px;
}

.price-card.featured h3 {
  color: #fff;
}

.price-card .plan-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.price-card.featured .plan-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.price-value {
  margin-bottom: 18px;
}

.price-value strong {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.price-value span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-card.featured .price-value span {
  color: rgba(255, 255, 255, 0.8);
}

.plan-list {
  display: grid;
  flex: 1;
  gap: 10px;
  margin: 0 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(107, 78, 30, 0.1);
  list-style: none;
}

.price-card.featured .plan-list {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.plan-list li {
  display: flex;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.price-card.featured .plan-list li {
  color: rgba(255, 255, 255, 0.92);
}

.plan-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.price-card.featured .plan-list li::before {
  color: var(--gold);
}

.price-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.cta-section {
  padding: 90px 0;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 60px);
  box-shadow: 0 40px 80px -30px rgba(0, 121, 107, 0.6);
}

.cta-card::before {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 300px;
  height: 300px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 60, 0.3), transparent 70%);
}

.cta-card > * {
  position: relative;
}

.cta-card .app-icon-large {
  width: 180px;
  height: 180px;
  border-radius: 42px;
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.4);
  animation: nk-bob 6s ease-in-out infinite;
}

.cta-card p {
  margin: 14px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  line-height: 1.9;
}

.site-footer {
  background: #2b2008;
  color: #fff;
  padding: 48px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.footer-lead {
  max-width: 330px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-links div {
  display: grid;
  gap: 11px;
}

.footer-links strong {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-pending.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes nk-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes nk-scan {
  0% {
    top: 14%;
  }
  100% {
    top: 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links a:not(.button-primary) {
    display: none;
  }

  .hero-grid,
  .feature-row,
  .feature-row.reverse,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-phone-wrap {
    order: -1;
  }

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

  .extra-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-nav {
    min-height: 60px;
  }

  .brand-name {
    font-size: 18px;
  }

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

  .button-primary {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero-grid {
    padding: 34px 0 54px;
  }

  .hero-phone-wrap {
    order: 0;
  }

  .phone {
    width: min(308px, 100%);
  }

  .phone-screen {
    height: 560px;
  }

  .store-button {
    width: 100%;
  }

  .stats-grid,
  .problem-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .feature-row {
    gap: 32px;
    margin-bottom: 70px;
  }

  .mini-phone {
    width: min(288px, 100%);
  }

  .price-card.featured {
    transform: none;
  }

  .cta-card {
    border-radius: 28px;
  }

  .cta-card .app-icon-large {
    width: 144px;
    height: 144px;
    margin: 0 auto;
  }

  .footer-links {
    gap: 32px;
  }
}
