:root {
  color-scheme: light;
  --bg: #fbf9f5;
  --bg-soft: #f3faf8;
  --text: #1a2b2a;
  --muted: #5a6e6c;
  --accent: #0d7a75;
  --accent-bright: #12a098;
  --accent-soft: rgba(13, 122, 117, 0.1);
  --gold: #d4a017;
  --gold-soft: rgba(212, 160, 23, 0.12);
  --card: #ffffff;
  --border: rgba(26, 43, 42, 0.08);
  --shadow: 0 18px 50px rgba(13, 122, 117, 0.08);
  --shadow-icon: 0 24px 60px rgba(13, 122, 117, 0.22);
  --radius: 18px;
  --font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

/* ---- shared chrome ---- */

.site-banner {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, #0a6b66, #12a098);
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
}

.site-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
}

.site-banner-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0.65rem 1.35rem 0;
}

.site-header--minimal {
  padding-top: 0.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  border-radius: 22%;
  box-shadow: var(--shadow-icon);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--muted);
  font-weight: 500;
}

.brand-lockup--header {
  gap: 0.75rem;
}

.brand-lockup--header .brand-mark {
  width: 52px;
  height: 52px;
  box-shadow: 0 6px 20px rgba(13, 122, 117, 0.2);
}

.brand-lockup--header .brand-name {
  font-size: 1.08rem;
}

.brand-lockup--header .brand-tagline {
  font-size: 0.78rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 22%;
  box-shadow: 0 6px 20px rgba(13, 122, 117, 0.2);
}

.site-header nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-header nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-header nav a:hover {
  color: var(--accent);
}

.page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.35rem 3rem;
}

.page h1 {
  font-size: 1.85rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.03em;
}

.tagline,
.updated {
  color: var(--muted);
  margin: 0 0 2rem;
}

.updated { font-size: 0.95rem; }

.page section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(26, 43, 42, 0.04);
}

.page h2 {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
  color: var(--accent);
}

.page p,
.page li { margin: 0 0 0.65rem; }
.page ul { margin: 0; padding-left: 1.2rem; }

.site-footer {
  max-width: 68rem;
  margin: 0 auto;
  padding: 2rem 1.35rem 2.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.site-footer a {
  text-decoration: none;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

/* ---- landing ---- */

.landing-wrap {
  position: relative;
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  inset: 0;
  top: 2.5rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 90% 5%, rgba(18, 160, 152, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 40% at 8% 18%, rgba(212, 160, 23, 0.07), transparent 55%),
    linear-gradient(180deg, #fefdfb 0%, var(--bg) 50%, #f6fcfa 100%);
}

.landing {
  position: relative;
  z-index: 1;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0.5rem 1.35rem 4rem;
}

.hero {
  padding: 0.25rem 0 2rem;
}

.brand-lockup--hero {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  margin: 0 auto 1.75rem;
  max-width: 22rem;
}

.brand-lockup--hero .brand-mark {
  width: min(240px, 52vw);
  height: min(240px, 52vw);
  box-shadow: 0 28px 70px rgba(13, 122, 117, 0.25);
}

.brand-lockup--hero .brand-name {
  font-size: clamp(2rem, 5vw, 2.65rem);
}

.brand-lockup--hero .brand-tagline {
  font-size: 1.05rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy { max-width: 34rem; }

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff;
  box-shadow: 0 10px 28px rgba(13, 122, 117, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-soon {
  background: #fff;
  color: var(--muted);
  border: 1px dashed rgba(13, 122, 117, 0.25);
  cursor: default;
  box-shadow: none;
}

.btn-soon:hover { transform: none; }

.btn-apple::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 814 1000'%3E%3Cpath d='M788 779q-29 68-85 137t-112 104-128 67-132 24-94-14-64-20q-18-8-48-18t-57-18-57-8-48 6q-8 1-24 8t-29 8-26 4-23-8-18-18-2-44 16-59 33-56 33-47 33-36-1-15-12-24-11-9-26-15t-30-9-32-4-35 6-38 18q-63 27-104 72T7 792q-7 17-4 33t12 28 22 19 28 10 30 1q73-9 128-27t106-39 88-42 76-37 62-25zM631 5q-4 61-22 119T563 237t-77 88-102 61-122 22q-15-1-30-4t-28-8-25-11-20-13q-2-2-4-6t-3-8q-1-3-1-7 0-4 1-8t3-7 4-6q30-73 84-128T437 8q53-53 118-83t129-25q5 30 3 61t-4 44z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 814 1000'%3E%3Cpath d='M788 779q-29 68-85 137t-112 104-128 67-132 24-94-14-64-20q-18-8-48-18t-57-18-57-8-48 6q-8 1-24 8t-29 8-26 4-23-8-18-18-2-44 16-59 33-56 33-47 33-36-1-15-12-24-11-9-26-15t-30-9-32-4-35 6-38 18q-63 27-104 72T7 792q-7 17-4 33t12 28 22 19 28 10 30 1q73-9 128-27t106-39 88-42 76-37 62-25zM631 5q-4 61-22 119T563 237t-77 88-102 61-122 22q-15-1-30-4t-28-8-25-11-20-13q-2-2-4-6t-3-8q-1-3-1-7 0-4 1-8t3-7 4-6q30-73 84-128T437 8q53-53 118-83t129-25q5 30 3 61t-4 44z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cta-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}

.preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.preview-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.preview-amount {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.preview-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.preview-pill {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a6510;
  font-size: 0.78rem;
  font-weight: 600;
}

.contrast-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.contrast-card {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contrast-yes {
  background: linear-gradient(145deg, #ffffff, #f2fbf9);
}

.contrast-no {
  background: linear-gradient(145deg, #ffffff, #faf8f4);
}

.contrast-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.contrast-yes h3 { color: var(--accent); }
.contrast-no h3 { color: #8a9493; }

.contrast-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contrast-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contrast-yes .contrast-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contrast-no .contrast-list li {
  color: var(--muted);
}

.contrast-no .contrast-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b0b8b7;
}

.section-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: 0 10px 30px rgba(26, 43, 42, 0.04);
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-bright);
  margin-bottom: 0.75rem;
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.plus-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(243, 250, 248, 0.95));
  border: 1px solid rgba(13, 122, 117, 0.12);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.plus-band .plus-copy { flex: 1; min-width: 14rem; }

.plus-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.plus-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plus-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}

.final-cta {
  text-align: center;
  padding: 2.5rem 1rem 1rem;
}

.brand-lockup--footer {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
}

.brand-lockup--footer .brand-mark {
  width: 120px;
  height: 120px;
}

.brand-lockup--footer .brand-name {
  font-size: 1.65rem;
}

.brand-lockup--footer .brand-tagline {
  font-size: 0.95rem;
}

.final-cta-buttons {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .preview-card {
    max-width: 20rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-lockup--header .brand-tagline {
    display: none;
  }
}

@media (max-width: 560px) {
  .contrast-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-header nav { gap: 0.85rem; }
}

/* ---- app screenshots gallery ---- */

.app-gallery-page {
  padding-top: 0.75rem;
}

.app-gallery-intro h1 {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.35rem;
  margin-bottom: 2rem;
}

.shot {
  margin: 0;
}

.shot-frame {
  background: linear-gradient(160deg, #ffffff, #f4fbf9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 0.65rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot--phone .shot-frame {
  border-radius: 28px;
  max-width: 15rem;
  margin: 0 auto;
}

.shot--tablet .shot-frame {
  border-radius: 18px;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.shot--phone .shot-frame img {
  border-radius: 22px;
}

.shot--tablet .shot-frame img {
  border-radius: 12px;
}

.shot figcaption {
  padding: 0.85rem 0.25rem 0;
  text-align: center;
}

.shot figcaption strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.shot figcaption span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.preview-card--link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.preview-screenshot-link {
  display: block;
  margin: -0.35rem -0.35rem 0.65rem;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

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

.preview-card--link .preview-meta a {
  font-weight: 600;
  text-decoration: none;
}

.preview-card--link .preview-meta a:hover {
  text-decoration: underline;
}

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

  .shot--tablet {
    grid-column: span 1;
  }
}
