:root {
  --bg: #111113;
  --bg-soft: #18191c;
  --bg-softer: #1f2024;
  --text: #f3f4f6;
  --muted: #a0a4b0;
  --teal: #0087ad;
  --orange: #e47a00;
  --border-soft: #262833;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



/* --- Hero cover (full-bleed) --- */
.hero-cover {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-cover-img {
  width: 100%;
  height: clamp(360px, 62vh, 720px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.hero-cover-content {
  padding: clamp(24px, 5vh, 56px) 0;
  max-width: 720px;
}

.hero-cover-content h1 {
  margin: 0 0 12px 0;
}

.hero-cover-content .hero-sub {
  margin: 0 0 18px 0;
}

.hero-cover-content .hero-note {
  margin-top: 14px;
  opacity: 0.9;
}

.hero-cover-content .hero-note a {
  text-decoration: underline;
}


.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(17,17,19,0.98), rgba(17,17,19,0.92));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;   /* optional; remove if you want perfectly square */
  object-fit: cover;
  display: block;
  background: transparent;
  padding: 0;
}


.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
}

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

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #12455a, var(--bg));
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.hero-sub {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #00a4ce);
  color: #041014;
  box-shadow: 0 14px 40px rgba(0, 135, 173, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.store-badge img {
  height: 40px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-media img {
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

/* Section base */

.section {
  padding: 3rem 0;
}

.section h2 {
  font-size: 1.7rem;
  margin-top: 0;
}

.section-why {
  background: var(--bg-soft);
}

.section-features {
  background: var(--bg);
}

.section-practice {
  background: var(--bg-soft);
}

.section-privacy {
  background: var(--bg);
}

.section-faq {
  background: var(--bg-soft);
}

/* Why section */

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.1fr 1fr;
  }
}

.section-why p {
  color: var(--muted);
}

.pill-grid {
  display: grid;
  gap: 1rem;
}

.pill {
  background: var(--bg-softer);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-soft);
}

.pill h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.pill p {
  margin: 0;
  font-size: 0.9rem;
}

/* Feature blocks */

.feature-block {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feature-block:last-of-type {
  border-bottom: none;
}

@media (min-width: 860px) {
  .feature-block {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .feature-block-alt {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .feature-block-alt .feature-copy {
    order: 2;
  }
  .feature-block-alt .feature-media {
    order: 1;
  }
}

.feature-copy p {
  color: var(--muted);
}

.feature-media {
  justify-self: center;
}

.feature-media img {
  width: 100%;
  max-width: 220px;   /* roughly ~50% of a big desktop column */
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
}


.feature-media-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 640px) {
  .feature-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Practice flow */

.section-practice h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  background: var(--bg-softer);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid var(--border-soft);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #ffaa3a, var(--orange));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111113;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Privacy */

.section-privacy h2 {
  text-align: center;
  margin-bottom: 1.4rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✔";
  color: var(--teal);
  margin-right: 0.6rem;
}

/* FAQ */

.faq-grid {
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 860px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item {
  background: var(--bg-softer);
  border-radius: 16px;
  padding: 1.3rem 1.2rem 1.4rem;
  border: 1px solid var(--border-soft);
}

.faq-item h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  background: #0b0b0d;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}

.footer-title {
  margin: 0;
  font-weight: 600;
}

.footer-sub {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

/* Small screens */

@media (max-width: 599px) {
  .nav {
    display: none;
  }
  .hero {
    padding-top: 2.4rem;
  }
}


.hero-cover {
  padding: 18px 0;
}

/* Hero alignment fix */
.hero-cover {
  width: 100%;
}

.hero-cover .container {
  margin: 0 auto;          /* ensure container centers */
}

.hero-cover-frame {
  width: 100%;
  margin: 0 auto;          /* centers frame if any max-width exists */
  overflow: hidden;
  border-radius: 18px;     /* optional */
}

.hero-cover-img {
  display: block;          /* kills inline-image left alignment */
  width: 100%;             /* makes it match the container width */
  max-width: 100%;
  height: auto;
  margin: 0 auto;          /* belt & braces */
}


.hero-below {
  padding: 20px 0 6px 0;
  max-width: 760px;
}

.hero-below h1 {
  margin: 0 0 10px 0;
}

.hero-below .hero-sub {
  margin: 0 0 16px 0;
}


