:root {
  --bg: #fffaf4;
  --bg-soft: #fff3e3;
  --card: rgba(255,255,255,0.88);
  --card-strong: #ffffff;
  --text: #111b2a;
  --text-soft: #566173;
  --line: rgba(17, 27, 42, 0.1);
  --orange: #ff8a00;
  --orange-deep: #ff6a00;
  --orange-soft: rgba(255,138,0,0.12);
  --blue: #1f5fff;
  --shadow: 0 20px 56px rgba(17, 27, 42, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,138,0,0.12), transparent 24rem),
    radial-gradient(circle at right 10%, rgba(255,138,0,0.08), transparent 24rem),
    linear-gradient(180deg, #fff9f2 0%, #fffdf9 46%, #fff7ee 100%);
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,250,244,0.78);
  border-bottom: 1px solid rgba(17, 27, 42, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(255,106,0,0.20);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 700;
}
.nav a { color: var(--text-soft); }
.nav a:hover { color: var(--orange-deep); }
.nav .store-link {
  color: var(--orange-deep);
  padding: 10px 14px;
  border: 1px solid rgba(255,138,0,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

main { overflow: hidden; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 40px;
  align-items: center;
  padding: 52px 0 36px;
}
.eyebrow, .kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1, .article-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.accent { color: var(--orange-deep); }
.lead {
  margin: 0 0 24px;
  color: #415065;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 640px;
}
.lead.slim { max-width: 780px; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  box-shadow: 0 16px 30px rgba(255,106,0,0.25);
}
.btn-secondary {
  color: var(--orange-deep);
  border: 1px solid rgba(255,138,0,0.25);
  background: rgba(255,255,255,0.8);
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.point {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17,27,42,0.08);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 26px rgba(17,27,42,0.05);
}
.point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.point span {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame {
  width: min(100%, 360px);
  border-radius: 34px;
  overflow: hidden;
  border: 10px solid #101821;
  background: #070d15;
  box-shadow: 0 30px 70px rgba(12, 18, 30, 0.28);
}
.phone-frame.large { width: min(100%, 390px); }
.float-card {
  position: absolute;
  min-width: 160px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,27,42,0.08);
  box-shadow: var(--shadow);
}
.float-card b { display: block; font-size: 1rem; }
.float-card span { color: var(--text-soft); font-size: 0.92rem; }
.float-left { left: 8px; bottom: 88px; }
.float-right { right: 0; top: 110px; }

.section, .section-tight { padding: 34px 0; }
.section-title {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.section-title.left-align {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.section-title p, .panel p, .article-card p, .article-card li {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(17,27,42,0.08);
  background: var(--card);
  box-shadow: var(--shadow);
}
.feature-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,106,0,0.12), rgba(255,138,0,0.2));
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.dark-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.10));
}
.split-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 30px;
  align-items: center;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.step {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,27,42,0.08);
  box-shadow: var(--shadow);
}
.step h3 { margin: 0 0 8px; font-size: 1.08rem; }
.step p { margin: 0; color: var(--text-soft); line-height: 1.55; }
.mini-showcase {
  position: relative;
  min-height: 780px;
}
.phone-stack-card {
  width: min(100%, 360px);
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
  border: 10px solid #101821;
  background: #070d15;
  box-shadow: 0 30px 70px rgba(12, 18, 30, 0.22);
}
.phone-stack-card.secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 280px;
  border-width: 8px;
}

.screenshots-section { padding-top: 42px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.screen-shot-card {
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,27,42,0.08);
  box-shadow: var(--shadow);
}
.screen-shot-card img {
  width: 100%;
  border-radius: 24px;
  background: #0b111b;
  border: 6px solid #101821;
}
.screen-shot-card figcaption {
  display: grid;
  gap: 6px;
  padding-top: 14px;
}
.screen-shot-card strong { font-size: 1.08rem; }
.screen-shot-card span { color: var(--text-soft); line-height: 1.5; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.panel, .premium-card .inner, .cta, .article-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,27,42,0.08);
  box-shadow: var(--shadow);
}
.check-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}
.check-list li { margin-bottom: 10px; line-height: 1.6; }
.small { color: var(--text-soft); }

.premium-card {
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,138,0,0.12), rgba(255,255,255,0.5));
}
.premium-card .inner { background: rgba(255,255,255,0.92); }
.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.premium-item {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
  background: rgba(255,138,0,0.08);
  border: 1px solid rgba(255,138,0,0.16);
}

.faq-grid {
  display: grid;
  gap: 12px;
}
.faq-grid details {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(17,27,42,0.08);
  box-shadow: 0 8px 20px rgba(17,27,42,0.05);
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}
.faq-grid p { margin: 12px 0 0; color: var(--text-soft); line-height: 1.6; }

.cta { text-align: center; }
.cta h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); }
.cta p { margin: 0 0 20px; color: var(--text-soft); }

.article-page { padding: 12px 0 40px; }
.article-hero { padding: 24px 0 6px; }
.effective-date {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-weight: 600;
}
.article-card h2 {
  margin: 28px 0 10px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.article-card ul {
  color: var(--text-soft);
  line-height: 1.7;
  padding-left: 22px;
}
.article-card a { color: var(--orange-deep); font-weight: 700; }
.notice-card {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,138,0,0.10), rgba(255,255,255,0.75));
  border: 1px solid rgba(255,138,0,0.14);
}
.notice-card p { margin: 0 0 12px; }
.notice-card p:last-child { margin-bottom: 0; }

.footer {
  padding: 24px 0 34px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(17,27,42,0.08);
  padding-top: 22px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-links a { color: var(--text-soft); font-weight: 700; }
.footer-links a:hover { color: var(--orange-deep); }
.footer .small { text-align: right; margin: 0; }

@media (max-width: 1100px) {
  .hero,
  .split-visuals,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 520px; }
  .mini-showcase { min-height: unset; display: grid; gap: 18px; }
  .phone-stack-card,
  .phone-stack-card.secondary {
    position: static;
    width: min(100%, 340px);
    margin: 0 auto;
  }
  .gallery-grid,
  .feature-grid,
  .workflow,
  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
  .nav { gap: 14px; }
  .hero { padding-top: 28px; }
  .hero-points,
  .gallery-grid,
  .feature-grid,
  .workflow,
  .premium-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .float-card { display: none; }
  .hero-visual { min-height: unset; }
  .phone-frame.large { width: min(100%, 340px); }
  .panel, .premium-card .inner, .cta, .article-card { padding: 22px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer .small { text-align: center; }
}


/* Screenshot gallery: show the full app screen, do not crop image content */
.screenshot-strip,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.screen-card,
.screen-shot-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,24,39,.08);
  box-shadow: var(--shadow-soft, 0 12px 34px rgba(17, 24, 39, .08));
  text-align: center;
}

.screen-card img,
.screen-shot-card img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
  border-radius: 24px;
  border: 6px solid #101821;
  background: #07111f;
}

.screen-card figcaption,
.screen-shot-card figcaption {
  padding: 16px 6px 4px;
  text-align: center;
}

.screen-shot-card figcaption strong {
  display: block;
  margin-bottom: 6px;
}

.screen-shot-card figcaption span {
  display: block;
}

@media (max-width: 1100px) {
  .screenshot-strip,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .screenshot-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-shot-card {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .screen-card img,
  .screen-shot-card img {
    max-width: 320px;
  }
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.fazier-badge-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.fazier-badge-link img {
  display: block;
  width: 110px;
  max-width: 110px;
  height: auto;
}