/* ==========================================================================
   True Makers — site styles
   Plain CSS, no frameworks, no external assets.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f2f9fd;
  --bg-dark: #0d2b3e;
  --ink: #14212b;
  --ink-soft: #4d6475;
  --line: #dde8ef;
  --brand: #2D9CDB;
  --brand-dark: #1565C0;
  --brand-soft: #e6f4fc;
  --radius: 10px;
  --wrap: 1080px;
  --shadow: 0 1px 2px rgba(15, 23, 36, .06), 0 8px 24px rgba(15, 23, 36, .06);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Typography ---------- */

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: -.015em;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1.1em;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.3em;
}

li {
  margin-bottom: .45em;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.muted {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-right: auto;
}

.logo:hover {
  text-decoration: none;
}

.logo .dot {
  color: var(--brand);
}

.nav a:not(.logo) {
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 600;
}

.nav a:not(.logo):hover,
.nav a[aria-current="page"] {
  color: var(--brand);
  text-decoration: none;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(170deg, #BFE6FB 0%, #7FC4ED 100%);
  border-bottom: 1px solid var(--line);
  padding: 84px 0;
  text-align: center;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero .lead {
  color: #1b3a4d;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, .72);
  color: var(--brand-dark);
}

/* Small cloud mark drawn in CSS — no image needed */
.cloud-mark {
  width: 84px;
  height: 52px;
  margin: 0 auto 22px;
  position: relative;
}

.cloud-mark span,
.cloud-mark::before,
.cloud-mark::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud-mark span {
  left: 0;
  bottom: 8px;
  width: 84px;
  height: 30px;
  border-radius: 15px;
}

.cloud-mark::before {
  left: 12px;
  bottom: 18px;
  width: 34px;
  height: 34px;
}

.cloud-mark::after {
  right: 12px;
  bottom: 22px;
  width: 26px;
  height: 26px;
}

/* Health / medical disclaimer callout */
.disclaimer {
  background: #fff8e6;
  border-left: 4px solid #e0a415;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0 0 28px;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 650;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: background-color .15s ease, border-color .15s ease;
}

.btn:hover {
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ---------- Cards / grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: .4em;
}

.card p:last-child {
  margin-bottom: 0;
}

/* Featured app block */

.feature {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.app-icon {
  aspect-ratio: 1 / 1;
  border-radius: 26%;
  background: linear-gradient(150deg, #7FC4ED 0%, #2D9CDB 55%, #1565C0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

/* ---------- Legal / document pages ---------- */

.page-head {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}

.doc {
  max-width: 780px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.doc h2 {
  margin-top: 2em;
  padding-top: .6em;
  border-top: 1px solid var(--line);
}

.doc h2:first-of-type {
  margin-top: 1em;
}

.doc h3 {
  margin-top: 1.6em;
}

.notice {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0 0 28px;
}

.notice p:last-child {
  margin-bottom: 0;
}

/* FAQ list */

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0 0 .35em;
  font-size: 1.05rem;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-dark);
  color: #a9c2d2;
  padding: 40px 0;
  font-size: .93rem;
}

.site-footer a {
  color: #dcecf6;
  font-weight: 600;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .hero {
    padding: 56px 0;
  }

  .section {
    padding: 48px 0;
  }

  .feature {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px;
  }

  .app-icon {
    width: 130px;
    margin: 0 auto;
    font-size: 2.6rem;
  }

  .nav {
    gap: 6px 16px;
  }

  .logo {
    width: 100%;
    margin-right: 0;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
