:root {
  color-scheme: light;
  --forest-deep: #101c15;
  --forest: #1e2e22;
  --forest-soft: #314a35;
  --gold: #e1aa4b;
  --gold-bright: #f4c76a;
  --stone: #f6f1e8;
  --paper: #fffdf8;
  --paper-warm: #fbf6ec;
  --ink: #171814;
  --muted: #626157;
  --line: #e6dccb;
  --shadow: 0 24px 70px rgba(20, 24, 18, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.94), rgba(255, 253, 248, 0.96) 42%, #ffffff 100%),
    repeating-linear-gradient(90deg, rgba(30, 46, 34, 0.035) 0 1px, transparent 1px 42px);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 68px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(230, 220, 203, 0.8);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(20, 24, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(19, 29, 22, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta,
.store-button,
.save-button {
  border: 0;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 34px;
  padding: 44px 0 28px;
}

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

.rating-pill,
.eyebrow,
.new-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(225, 170, 75, 0.16);
  color: #745216;
  font-size: 13px;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.dark-inner h2,
.final-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(46px, 5.15vw, 76px);
}

.hero-subtitle {
  max-width: 560px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 22px 10px 14px;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(20, 24, 18, 0.18);
}

.store-button.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.store-button span:last-child {
  display: grid;
  gap: 0;
  line-height: 1.05;
  text-align: left;
}

.store-button small {
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.72;
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 950;
}

.hero-preview {
  position: relative;
  min-height: 700px;
}

.phone {
  position: absolute;
  width: 288px;
  min-height: 596px;
  overflow: hidden;
  border: 10px solid #151613;
  border-radius: 46px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 4;
  width: 98px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.phone-bar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 28px 22px 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.phone-scan {
  left: 8px;
  top: 34px;
  transform: rotate(-7deg);
  background:
    linear-gradient(180deg, rgba(7, 11, 8, 0.15), rgba(7, 11, 8, 0.78)),
    var(--forest-deep);
}

.phone-scan .rock-image {
  position: absolute;
  inset: 82px 16px auto;
  width: calc(100% - 32px);
  height: 334px;
  object-fit: cover;
  border-radius: 30px;
  filter: saturate(1.05) contrast(1.05);
}

.scan-frame {
  position: absolute;
  inset: 172px 40px auto;
  z-index: 4;
  width: calc(100% - 80px);
  height: 220px;
}

.scan-frame span {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: #ffffff;
  border-style: solid;
}

.scan-frame span:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
  border-top-left-radius: 8px;
}

.scan-frame span:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
  border-top-right-radius: 8px;
}

.scan-frame span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 3px 3px 0;
  border-bottom-right-radius: 8px;
}

.scan-frame span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
  border-bottom-left-radius: 8px;
}

.scan-line {
  position: absolute;
  left: 42px;
  top: 316px;
  z-index: 5;
  width: calc(100% - 84px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), #ffffff, var(--gold-bright), transparent);
  box-shadow: 0 0 18px var(--gold-bright);
}

.camera-tools {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 100px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.camera-tools button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.camera-tools button:first-child {
  background: var(--paper);
}

.shutter {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px rgba(16, 28, 21, 0.22);
}

.phone-result {
  right: 6px;
  top: 0;
  z-index: 3;
  transform: rotate(5deg);
  background: #fbfbf6;
}

.phone-result .phone-bar {
  color: var(--ink);
}

.result-hero {
  display: grid;
  gap: 12px;
  margin: 72px 18px 16px;
  padding: 14px;
  border-radius: 26px;
  background: var(--forest-deep);
  color: #ffffff;
}

.result-hero img {
  width: 100%;
  height: 146px;
  object-fit: cover;
  border-radius: 18px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244, 199, 106, 0.18);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 850;
}

.result-hero h2 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1;
}

.result-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.confidence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px 12px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(230, 220, 203, 0.9);
}

.confidence span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.confidence strong {
  color: var(--forest);
  font-size: 20px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 18px 16px;
}

.result-grid div {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(230, 220, 203, 0.9);
  border-radius: 18px;
  background: #ffffff;
}

.result-grid small,
.progress-card small,
.specimen-list small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.result-grid strong,
.progress-card strong,
.specimen-list strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.save-button {
  width: calc(100% - 36px);
  min-height: 54px;
  margin: 0 18px;
  border-radius: 18px;
}

.social-proof {
  overflow: hidden;
  padding: 16px 0 70px;
}

.proof-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.proof-track article,
.why-grid article,
.review-grid article {
  border: 1px solid rgba(230, 220, 203, 0.88);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 40px rgba(20, 24, 18, 0.06);
}

.proof-track article {
  min-height: 126px;
  padding: 22px;
  border-radius: 22px;
}

.proof-track strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-track span {
  color: var(--muted);
  font-size: 14px;
}

.include-section,
.why-section,
.reviews {
  padding: 78px 0;
}

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

.section-heading h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.feature-preview {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.app-panel {
  padding: 26px;
  border: 1px solid rgba(230, 220, 203, 0.86);
  border-radius: 34px;
  background: linear-gradient(180deg, #fffdf8, #f5ede0);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-top span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
}

.panel-top strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 46, 34, 0.08);
  color: var(--forest);
  font-size: 13px;
}

.progress-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 126px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(230, 220, 203, 0.9);
}

.ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 48%, transparent 49%),
    conic-gradient(var(--gold) 0 74%, rgba(30, 46, 34, 0.1) 74% 100%);
}

.specimen-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.specimen-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.specimen-list img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
}

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

.features-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 150px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-bright);
  font-weight: 900;
}

.features-list h3,
.why-grid h3,
.review-grid h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

.features-list p,
.why-grid p,
.review-grid p {
  margin: 0;
  color: var(--muted);
}

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

.why-grid article,
.review-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: 26px;
}

.icon-box,
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--forest);
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 950;
}

.dark-feature {
  margin: 68px 0;
  background:
    linear-gradient(135deg, rgba(225, 170, 75, 0.14), transparent 42%),
    linear-gradient(180deg, var(--forest), var(--forest-deep));
  color: #ffffff;
}

.dark-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  min-height: 640px;
  padding: 86px 0;
}

.new-pill {
  background: rgba(244, 199, 106, 0.15);
  color: var(--gold-bright);
}

.dark-inner h2 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
}

.dark-inner p:not(.new-pill) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.dark-phone {
  min-height: 520px;
  padding: 26px;
  border: 10px solid #050505;
  border-radius: 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #191f1a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.badge-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 76px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.badge-card img {
  width: 150px;
  height: 150px;
  border-radius: 34px;
  object-fit: cover;
}

.badge-card small {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.badge-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
}

.badge-card span {
  color: rgba(255, 255, 255, 0.68);
}

.avatar {
  border-radius: 50%;
}

.ratings-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
  margin-bottom: 82px;
  padding: 52px;
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}

.ratings-band h2 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
}

.ratings-band p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
}

.stars {
  color: #745216;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-divider {
  width: 1px;
  min-height: 150px;
  background: var(--line);
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0), rgba(246, 241, 232, 0.92)),
    var(--forest-deep);
}

.final-inner {
  display: grid;
  justify-items: center;
  padding: 86px 0 94px;
  text-align: center;
}

.final-inner img {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 28, 21, 0.22);
}

.final-inner h2 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
}

.final-inner p:not(.eyebrow) {
  max-width: 540px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 19px;
}

.lead-form {
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
  margin: 0 0 24px;
  text-align: left;
}

.lead-form label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.lead-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.lead-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(225, 170, 75, 0.18);
}

.lead-form button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 850;
}

.final-inner .lead-consent,
.final-inner .lead-status {
  max-width: none;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.lead-consent a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-status {
  min-height: 18px;
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--muted);
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .feature-preview,
  .dark-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

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

  .hero-preview {
    min-height: 600px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

  .phone {
    width: 280px;
  }

  .phone-scan {
    left: 0;
  }

  .phone-result {
    right: 0;
  }

  .proof-track,
  .why-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-inner {
    justify-items: center;
    text-align: center;
  }

  .dark-inner p:not(.new-pill) {
    margin-right: auto;
    margin-left: auto;
  }

  .dark-phone {
    width: min(390px, 100%);
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    font-size: 16px;
  }

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

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

  .hero {
    min-height: auto;
    padding: 48px 0 36px;
  }

  .rating-pill,
  .eyebrow,
  .new-pill {
    margin-bottom: 16px;
    font-size: 12px;
    max-width: 320px;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero h1 {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
  }

  .store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .lead-form {
    text-align: center;
  }

  .lead-form-row {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    min-height: 1160px;
  }

  .phone {
    left: 50%;
    right: auto;
    width: min(300px, calc(100vw - 52px));
    transform: translateX(-50%) rotate(0);
  }

  .phone-scan {
    top: 0;
  }

  .phone-result {
    top: 404px;
  }

  .proof-track,
  .why-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .include-section,
  .why-section,
  .reviews {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .dark-inner h2,
  .final-inner h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .features-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .app-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .panel-top {
    display: grid;
    gap: 10px;
    justify-items: start;
  }

  .panel-top span {
    font-size: 28px;
  }

  .dark-feature {
    margin: 42px 0;
  }

  .dark-inner {
    min-height: auto;
    padding: 58px 0;
  }

  .ratings-band {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 20px;
    margin-bottom: 58px;
  }

  .rating-divider {
    width: 100%;
    min-height: 1px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scan-line {
    animation: scan 3s ease-in-out infinite alternate;
  }
}

@keyframes scan {
  from {
    transform: translateY(-84px);
  }

  to {
    transform: translateY(96px);
  }
}
