@charset "UTF-8";

/* =============================================================================
   Mission Ready — Landing Page
   css/landing.css

   Self-contained stylesheet for index.html only.
   Does not depend on app CSS files.
   Shares the same design tokens as the app (duplicated here so landing.css
   works independently and is easy to edit).
   ============================================================================= */

/* ── Reset ─────────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin:     0;
  padding:    0;
}

html {
  font-size:              16px;
  scroll-behavior:        smooth;
  -webkit-text-size-adjust: 100%;
}

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

a { color: #4e9a64; text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }

/* ── Design tokens ──────────────────────────────────────────────────────────── */

:root {
  --bg:           #0a0f1a;
  --surface:      #111927;
  --surface-2:    #1a2535;
  --border:       #1e2d42;
  --border-light: #2a3f5a;

  --accent:       #3d7a4f;
  --accent-light: #4e9a64;
  --accent-dim:   #2a5537;
  --accent-bg:    rgba(61, 122, 79, 0.12);

  --text:         #f0f4f8;
  --text-2:       #8a9bb0;
  --text-dim:     #5a6e84;

  --warning:      #c9a84c;
  --warning-bg:   rgba(201, 168, 76, 0.10);

  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
}

/* ── Base ──────────────────────────────────────────────────────────────────── */

body {
  font-family:            var(--font);
  font-size:              1rem;
  line-height:            1.65;
  color:                  var(--text);
  background-color:       var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Layout wrapper ────────────────────────────────────────────────────────── */

.l-wrap {
  max-width:  680px;
  margin:     0 auto;
  padding:    0 1.25rem;
}

.l-wrap--wide {
  max-width:  900px;
  margin:     0 auto;
  padding:    0 1.25rem;
}

/* ── Topbar ────────────────────────────────────────────────────────────────── */

.topbar {
  padding:        1rem 0;
  border-bottom:  1px solid var(--border);
}

.topbar__inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             1rem;
}

.topbar__wordmark {
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  text-decoration: none;
}

.topbar__icon {
  width:           32px;
  height:          32px;
  background:      var(--accent);
  border-radius:   8px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.topbar__icon svg {
  width:         17px;
  height:        17px;
  fill:          none;
  stroke:        #fff;
  stroke-width:  2.2;
  stroke-linecap:  round;
  stroke-linejoin: round;
}

.topbar__name {
  font-size:      1rem;
  font-weight:    700;
  letter-spacing: -0.02em;
  color:          var(--text);
}

.topbar__app-link {
  font-size:   0.8rem;
  color:       var(--text-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar__app-link:hover { color: var(--accent-light); text-decoration: none; }

/* ── Section spacing ───────────────────────────────────────────────────────── */

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--dark {
  background: var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--accent-border {
  border-top: 2px solid var(--accent);
}

/* ── Typography ────────────────────────────────────────────────────────────── */

.lp-eyebrow {
  font-size:      0.7rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--accent-light);
  margin-bottom:  0.75rem;
}

.lp-h1 {
  font-size:      clamp(2rem, 6vw, 3rem);
  font-weight:    700;
  letter-spacing: -0.03em;
  line-height:    1.1;
  color:          var(--text);
  margin-bottom:  1rem;
}

.lp-h2 {
  font-size:      clamp(1.4rem, 4vw, 2rem);
  font-weight:    700;
  letter-spacing: -0.02em;
  line-height:    1.2;
  color:          var(--text);
  margin-bottom:  1rem;
}

.lp-h3 {
  font-size:      1.1rem;
  font-weight:    600;
  color:          var(--text);
  margin-bottom:  0.5rem;
}

.lp-lead {
  font-size:     1.05rem;
  color:         var(--text-2);
  line-height:   1.7;
  margin-bottom: 1.75rem;
  max-width:     560px;
}

.lp-body {
  font-size:   0.95rem;
  color:       var(--text-2);
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0.85rem 1.75rem;
  border-radius:   var(--radius);
  font-size:       1rem;
  font-weight:     600;
  line-height:     1;
  text-decoration: none;
  transition:      background 120ms ease, transform 120ms ease;
  border:          none;
  cursor:          pointer;
  white-space:     nowrap;
  min-height:      52px;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color:      #fff;
}

.btn--primary:hover {
  background: var(--accent-light);
  text-decoration: none;
}

.btn--full {
  width: 100%;
  text-align: center;
  display: flex;
}

.link-secondary {
  font-size:       0.9rem;
  color:           var(--text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  display:         inline-block;
  margin-top:      0.6rem;
}

.link-secondary:hover { color: var(--text); }

.link-app {
  font-size:   0.85rem;
  color:       var(--text-dim);
  display:     block;
  margin-top:  0.75rem;
}

.link-app:hover { color: var(--text-2); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.hero {
  padding:    4rem 0 3.5rem;
  text-align: center;
}

@media (min-width: 600px) {
  .hero { text-align: left; }
}

.hero__badge {
  display:        inline-flex;
  align-items:    center;
  gap:            0.4rem;
  background:     var(--accent-bg);
  border:         1px solid rgba(61, 122, 79, 0.3);
  border-radius:  999px;
  padding:        0.3rem 0.9rem;
  font-size:      0.75rem;
  font-weight:    600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--accent-light);
  margin-bottom:  1.5rem;
}

.hero__cta-group {
  display:        flex;
  flex-direction: column;
  gap:            0.5rem;
  margin-top:     2rem;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    align-items:    center;
    flex-wrap:      wrap;
    gap:            1rem;
  }
}

.hero__note {
  font-size:   0.78rem;
  color:       var(--text-dim);
  margin-top:  0.9rem;
}

/* ── Problem section ───────────────────────────────────────────────────────── */

.bullet-list {
  list-style:     none;
  padding:        0;
  margin:         1.5rem 0 0;
  display:        flex;
  flex-direction: column;
  gap:            0.75rem;
}

.bullet-list li {
  display:   flex;
  gap:       0.75rem;
  font-size: 0.95rem;
  color:     var(--text-2);
  line-height: 1.5;
}

.bullet-list li::before {
  content:     '\2014';
  color:       var(--accent-light);
  flex-shrink: 0;
  font-weight: 600;
}

/* ── Feature cards ─────────────────────────────────────────────────────────── */

.card-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   1rem;
  margin-top:            1.75rem;
}

@media (min-width: 480px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .card-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.feature-card {
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       1.25rem;
}

.feature-card__step {
  font-size:      0.65rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--accent-light);
  margin-bottom:  0.4rem;
}

.feature-card__title {
  font-size:   0.95rem;
  font-weight: 600;
  color:       var(--text);
  line-height: 1.3;
}

/* ── Included list ─────────────────────────────────────────────────────────── */

.check-list {
  list-style:     none;
  padding:        0;
  margin:         1.5rem 0 0;
  display:        flex;
  flex-direction: column;
  gap:            0.65rem;
}

.check-list li {
  display:   flex;
  gap:       0.75rem;
  font-size: 0.9rem;
  color:     var(--text-2);
  line-height: 1.4;
}

.check-list li::before {
  content:     '\2713';
  color:       var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
  min-width:   1.1em;
}

/* ── Two-column layout ─────────────────────────────────────────────────────── */

.two-col {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   3rem;
}

@media (min-width: 640px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* ── Pricing block ─────────────────────────────────────────────────────────── */

.pricing-block {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-left:   3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding:       2rem 1.75rem;
  text-align:    center;
  max-width:     480px;
  margin:        0 auto;
}

.pricing-block__label {
  font-size:      0.7rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--accent-light);
  margin-bottom:  0.5rem;
}

.pricing-block__price {
  font-size:      2.5rem;
  font-weight:    700;
  letter-spacing: -0.03em;
  color:          var(--text);
  line-height:    1;
  margin-bottom:  0.5rem;
}

.pricing-block__sub {
  font-size:     0.85rem;
  color:         var(--text-dim);
  margin-bottom: 1.5rem;
}

.pricing-block__divider {
  height:     1px;
  background: var(--border);
  margin:     1.5rem 0;
}

.pricing-block__usd {
  font-size:   0.9rem;
  color:       var(--text-2);
  margin-top:  0.75rem;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */

.faq-list {
  display:        flex;
  flex-direction: column;
  gap:            0;
  margin-top:     1.75rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding:       1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__q {
  font-size:   0.95rem;
  font-weight: 600;
  color:       var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.faq-item__a {
  font-size:   0.9rem;
  color:       var(--text-2);
  line-height: 1.65;
}

.faq-item__a a {
  color: var(--accent-light);
}

/* ── Disclaimer notice ─────────────────────────────────────────────────────── */

.disclaimer-notice {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-left:   3px solid var(--warning);
  border-radius: var(--radius);
  padding:       1rem 1.25rem;
  font-size:     0.82rem;
  color:         var(--text-2);
  line-height:   1.6;
  margin-top:    2rem;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */

.site-footer {
  padding:     2.5rem 0;
  border-top:  1px solid var(--border);
  text-align:  center;
}

.site-footer__text {
  font-size:     0.78rem;
  color:         var(--text-dim);
  line-height:   1.7;
}

.site-footer__text a {
  color: var(--text-dim);
}

.site-footer__text a:hover { color: var(--text-2); }

/* ── Dividers ──────────────────────────────────────────────────────────────── */

.divider {
  height:     1px;
  background: var(--border);
  margin:     0;
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}

/* =============================================================================
   Photo additions
   ============================================================================= */

.hero--with-photo .l-wrap {
  max-width: 960px;
}

.hero__split {
  display:        flex;
  flex-direction: column;
  gap:            2rem;
}

@media (min-width: 640px) {
  .hero__split {
    flex-direction: row;
    align-items:    center;
    gap:            3rem;
  }

  .hero__copy {
    flex: 1;
    min-width: 0;
  }

  .hero__photo-wrap {
    flex-shrink: 0;
    width:       280px;
  }
}

@media (min-width: 800px) {
  .hero__photo-wrap { width: 340px; }
}

.hero__photo-wrap {
  display: none;
}

@media (min-width: 520px) {
  .hero__photo-wrap { display: block; }
}

.hero__photo {
  width:         100%;
  height:        420px;
  object-fit:    cover;
  object-position: center top;
  border-radius: 12px;
  display:       block;
}

.photo-strip {
  overflow: hidden;
  background: var(--surface);
}

.photo-strip__inner {
  display: flex;
  height:  220px;
}

@media (min-width: 600px) {
  .photo-strip__inner { height: 280px; }
}

.photo-strip__img {
  flex:        1;
  min-width:   0;
  object-fit:  cover;
  object-position: center;
  display:     block;
  border-right: 2px solid var(--bg);
}

.photo-strip__img:last-child {
  border-right: none;
}

.screenshot-row {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   1.5rem;
}

@media (min-width: 560px) {
  .screenshot-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.screenshot-frame {
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: 14px;
  overflow:      hidden;
  margin:        0;
}

.screenshot-img {
  width:      100%;
  height:     auto;
  display:    block;
  border-bottom: 1px solid var(--border);
}

.screenshot-caption {
  font-size:   0.78rem;
  color:       var(--text-dim);
  padding:     0.75rem 1rem;
  text-align:  center;
}

/* =============================================================================
   Copy corrections — hero proof line, pricing anchor, crossed-out price
   ============================================================================= */

.hero__proof {
  font-size:     0.82rem;
  color:         var(--accent-light);
  font-weight:   500;
  line-height:   1.55;
  margin-bottom: 1rem;
  padding-left:  0.75rem;
  border-left:   2px solid var(--accent);
}

.hero__pricing-anchor {
  font-size:     0.9rem;
  color:         var(--text-2);
  margin-bottom: 1.25rem;
}

.hero__pricing-anchor strong {
  color:       var(--text);
  font-weight: 700;
}

.hero__pricing-anchor__was {
  text-decoration: line-through;
  color:           var(--text-dim);
  font-weight:     400;
}

.pricing-block__price-row {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pricing-block__was {
  font-size:       1.5rem;
  font-weight:     400;
  color:           var(--text-dim);
  text-decoration: line-through;
}

.pricing-block__perks {
  list-style:  none;
  padding:     0;
  margin:      1rem 0 0;
  display:     flex;
  flex-direction: column;
  gap:         0.4rem;
}

.pricing-block__perks li {
  font-size:   0.82rem;
  color:       var(--text-2);
  display:     flex;
  gap:         0.5rem;
  align-items: flex-start;
  text-align:  left;
}

.pricing-block__perks li::before {
  content:     '\2713';
  color:       var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}
/* =============================================================================
   FINAL LANDING PAGE POLISH PATCH
   Fixes hero image placement, photo strip, pricing strike-through and perks
   ============================================================================= */

/* Make the hero a proper desktop split layout */
.hero--with-photo .l-wrap {
  max-width: 1120px;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 760px) {
  .hero__split {
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 3.5rem;
  }
}

.hero__copy {
  min-width: 0;
}

.hero__photo-wrap {
  display: none;
}

@media (min-width: 760px) {
  .hero__photo-wrap {
    display: block;
    width: 100%;
  }
}

.hero__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

/* Better proof line */
.hero__proof {
  max-width: 620px;
  background: rgba(61, 122, 79, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Make price anchor clearer */
.hero__pricing-anchor {
  margin: 1.5rem 0 1.25rem;
  font-size: 1rem;
  color: var(--text-2);
}

.hero__pricing-anchor__was {
  position: relative;
  display: inline-block;
  color: var(--text-dim);
  margin: 0 0.2rem;
}

.hero__pricing-anchor__was::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 2px;
  background: var(--accent-light);
  transform: rotate(-8deg);
}

.hero__pricing-anchor strong {
  color: var(--text);
  font-size: 1.15em;
}

/* Make the photo strip look intentional, not broken */
.photo-strip {
  background: var(--bg);
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.photo-strip__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  height: auto;
}

@media (min-width: 720px) {
  .photo-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-strip__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

@media (min-width: 720px) {
  .photo-strip__img {
    height: 320px;
  }
}

/* Make pricing block cleaner */
.pricing-block {
  max-width: 560px;
  padding: 2.25rem 2rem;
}

.pricing-block__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem;
  margin: 0.75rem 0 0.5rem;
}

.pricing-block__was {
  position: relative;
  display: inline-block;
  color: var(--text-dim);
  font-size: 1.65rem;
  line-height: 1;
}

.pricing-block__was::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: var(--accent-light);
  transform: rotate(-9deg);
}

.pricing-block__price {
  font-size: 3.4rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0;
}

.pricing-block__perks {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pricing-block__perks li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
  text-align: left;
  color: var(--text-2);
  font-size: 0.9rem;
}

.pricing-block__perks li::before {
  content: "\2713";
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* Make app screenshots feel more premium */
.screenshot-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .screenshot-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.screenshot-frame {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Keep mobile clean */
@media (max-width: 759px) {
  .hero {
    padding-top: 3rem;
  }

  .lp-h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .photo-strip {
    padding: 1.25rem;
  }

  .photo-strip__img {
    height: 220px;
  }
}
