/* ============================================
   Gurt AI — website styles
   Fonts: Chillax (display) + Satoshi (body) + Press Start 2P (retro FAQ)
   ============================================ */

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

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFBFA;
  --bg-line: #F2F0EC;
  --border: rgba(20, 15, 10, 0.08);
  --border-strong: rgba(20, 15, 10, 0.14);
  --text: #0E0C0A;
  --text-dim: #56514B;
  --text-mute: #8F8A82;

  --flame-orange: #7DCF60;
  --flame-warm: #A3D977;
  --flame-glow: rgba(125, 207, 96, 0.14);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;

  --font-display: "Chillax", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Satoshi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-retro: "Press Start 2P", "Courier New", monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #000;
  object-fit: cover;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 21px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav a:hover { color: var(--text); }
.ig-link { display: inline-flex; align-items: center; gap: 6px; }
.btn-pill {
  background: var(--text);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-pill:hover { transform: translateY(-1px); background: #000; }
.btn-pill-orange {
  background: var(--flame-orange);
  padding: 13px 24px;
  font-size: 15px;
  box-shadow: 0 8px 22px -10px rgba(125, 207, 96, 0.55);
}
.btn-pill-orange:hover { background: #6BBB50; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  color: var(--text);
}
.hero-title-accent {
  color: var(--flame-orange);
  font-weight: 700;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 19px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 4px;
  transition: color .15s ease, gap .15s ease;
}
.btn-ghost:hover { color: var(--flame-orange); gap: 12px; }

/* ---------- App Store badge ---------- */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 11px 22px 11px 18px;
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.35);
}
.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.app-badge-apple {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}
.app-badge-top {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
  opacity: 0.95;
}
.app-badge-bottom {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.app-badge-lg {
  padding: 14px 28px 14px 22px;
  border-radius: 14px;
  gap: 14px;
}
.app-badge-lg .app-badge-apple { width: 36px; height: 36px; }
.app-badge-lg .app-badge-top { font-size: 12.5px; }
.app-badge-lg .app-badge-bottom { font-size: 25px; }

/* ---------- Phone frame ---------- */
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 610;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #2a2320,
    0 30px 60px -25px rgba(60, 30, 20, 0.28),
    0 12px 30px -15px rgba(0,0,0,0.22);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 34px;
  overflow: hidden;
}
.phone-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-buttons {
  position: absolute;
  top: 100px;
  left: -3px;
  width: 3px;
  height: 32px;
  background: #2a2320;
  border-radius: 2px 0 0 2px;
}
.phone-buttons::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  width: 3px;
  height: 56px;
  background: #2a2320;
  border-radius: 2px 0 0 2px;
}
.phone-buttons::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 3px;
  height: 26px;
  background: #2a2320;
  border-radius: 2px 0 0 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
}
.phone-hero { transform: rotate(-3deg); }
.phone-hero:hover { transform: rotate(-1deg) translateY(-6px); }

/* ---------- Stats strip ---------- */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-soft);
}
.strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.strip-item { text-align: center; }
.strip-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.strip-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.strip-rating svg {
  width: 0.72em;
  height: 0.72em;
  color: var(--flame-orange);
}
.strip-lbl {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
  font-weight: 500;
}
.strip-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ---------- Sections ---------- */
.features, .how, .faq, .pricing { padding: 130px 0; }
.section-head { text-align: center; margin-bottom: 90px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--flame-orange);
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(125, 207, 96, 0.32);
  border-radius: 999px;
  background: rgba(125, 207, 96, 0.08);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 900px;
  color: var(--text);
}
.section-title-em {
  color: var(--flame-orange);
  font-weight: 700;
}

/* ---------- Feature showcase ---------- */
.feature-showcase { display: flex; flex-direction: column; gap: 130px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--flame-orange);
  margin-bottom: 22px;
}
.feature-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--text);
}
.feature-copy p {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 17px;
  margin: 0 0 26px;
  max-width: 470px;
  line-height: 1.55;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 470px;
}
.feature-bullets li {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}
.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--flame-orange);
  border-radius: 2px;
}
.feature-visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 640px;
}

/* ---------- Track section (streak phone with transparent bg) ---------- */
.track {
  padding: 140px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.track-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.track-copy .feature-tag { margin-bottom: 22px; }
.track-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--text);
}
.track-title-em {
  color: var(--flame-orange);
  font-weight: 700;
}
.track-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 30px;
  line-height: 1.55;
}
.track-bullets { max-width: 460px; }
.track-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.track-visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* ---------- How it works ---------- */
.how { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  padding: 44px 32px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.12);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--flame-orange);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.step p {
  font-family: var(--font-body);
  color: var(--text-dim);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -22px rgba(0, 0, 0, 0.14);
}
.price-card-popular {
  background: var(--bg);
  border: 2px solid var(--flame-orange);
  box-shadow: 0 24px 60px -20px rgba(125, 207, 96, 0.28);
  transform: translateY(-8px);
}
.price-card-popular:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px -20px rgba(125, 207, 96, 0.36);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--flame-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-plan {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.price-currency {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dim);
  margin-right: 2px;
}
.price-per {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0;
  margin-left: 4px;
}
.price-daily {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.price-save {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: #4B9E38;
  background: rgba(125, 207, 96, 0.12);
  padding: 5px 10px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 28px;
}
.price-card:not(.price-card-popular) .price-save { margin-top: 0; }
.price-card:not(:has(.price-save)) .price-daily { margin-bottom: 34px; }
.price-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border-strong);
  transition: background .15s ease, transform .15s ease;
}
.price-btn:hover { background: var(--text); color: #fff; }
.price-btn-primary {
  background: var(--flame-orange);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px -10px rgba(125, 207, 96, 0.65);
}
.price-btn-primary:hover { background: #6BBB50; color: #fff; }

/* ---------- 8-bit FAQ ---------- */
.faq {
  background: var(--bg);
}
.faq-head {
  margin-bottom: 60px;
  text-align: center;
}
.faq-title {
  font-family: var(--font-retro);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 28px);
  color: #000;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 24px;
}
.faq-desc {
  font-family: var(--font-retro);
  font-size: 10px;
  color: #4a4a4a;
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
}
.faq-list-8bit {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border: 3px solid #000;
  border-radius: 0;
  box-shadow: 6px 6px 0 0 #000;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 #000;
}
.faq-item[open] {
  background: #FFFCF5;
}
.faq-trigger {
  font-family: var(--font-retro);
  font-weight: 400;
  font-size: 13px;
  color: #000;
  letter-spacing: 0.02em;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 60px;
  line-height: 1.5;
  user-select: none;
}
.faq-trigger::-webkit-details-marker { display: none; }
.faq-trigger::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-retro);
  font-size: 22px;
  color: #000;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] .faq-trigger::after {
  content: "-";
}
.faq-content {
  font-family: var(--font-retro);
  font-size: 11px;
  color: #333;
  letter-spacing: 0.02em;
  line-height: 2;
  padding: 0 24px 24px;
  border-top: 3px solid #000;
  padding-top: 20px;
  margin-top: 4px;
}

/* ---------- CTA — light, no gradients, no dark bg ---------- */
.cta {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--border);
}
.cta-inner { text-align: center; position: relative; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  color: var(--text);
}
.cta-title-em {
  color: var(--flame-orange);
  font-weight: 700;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-dim);
  margin: 0 0 44px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 42px;
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-logo { width: 44px; height: 44px; border-radius: 10px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mute);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  color: var(--text-mute);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: right;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 68px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 16px;
}
.legal .legal-updated {
  color: var(--text-mute);
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 50px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 44px 0 12px;
}
.legal p, .legal li {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
}
.legal ul { padding-left: 22px; }
.legal a { color: var(--flame-orange); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 560px; }
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .feature-showcase { gap: 90px; }
  .feature-visual { min-height: 560px; }
  .track { padding: 90px 0; }
  .track-inner { grid-template-columns: 1fr; gap: 60px; }
  .strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
  .strip-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .price-card-popular { transform: none; }
  .price-card-popular:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
  .nav a:not(.btn-pill):not(.ig-link) { display: none; }
  .features, .how, .faq, .pricing { padding: 90px 0; }
  .cta { padding: 100px 0; }
  .faq-trigger { font-size: 11px; padding: 18px 20px; padding-right: 50px; }
  .faq-content { font-size: 10px; padding: 18px 20px 22px; }
  .faq-title { font-size: 18px; }
}
@media (max-width: 480px) {
  .brand-name { font-size: 19px; }
  .phone { width: 260px; }
  .track-visual img { max-width: 320px; }
  .price-amount { font-size: 46px; }
  .price-currency { font-size: 26px; }
  .faq-item { box-shadow: 4px 4px 0 0 #000; }
  .faq-item:hover { box-shadow: 6px 6px 0 0 #000; transform: translate(-1px, -1px); }
}
