/* TAAAPIT marketing + legal site styles. Self-contained: system fonts only,
   no third-party requests (keeps the privacy/cookie story clean). The public
   card page keeps its own style.css — this file is only for index/privacy/
   terms/cookies. */

:root {
  --teal: #0e685f;
  --teal-900: #0a4b44;
  --teal-700: #0e685f;
  --green: #22c07d;
  --green-600: #17a86a;
  --ink: #0f1f1c;
  --muted: #5b6f6a;
  --line: #e4ece9;
  --bg: #ffffff;
  --bg-soft: #f3f8f6;
  --radius: 16px;
  --shadow: 0 18px 50px -24px rgba(10, 75, 68, 0.45);
  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800;
  letter-spacing: 0.02em; color: var(--ink); font-size: 19px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--teal); text-decoration: none; }
@media (max-width: 640px) { .nav-links { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #04231a; font-weight: 700;
  padding: 12px 20px; border-radius: 999px; font-size: 15px;
  border: 0; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(23, 168, 106, 0.7); }
.btn.ghost { background: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5); }
.btn.ghost:hover { border-color: #fff; box-shadow: none; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(34, 192, 125, 0.28), transparent 60%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-900) 100%);
  color: #eafaf4; padding: 74px 0 88px; overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.06;
  margin: 14px 0 16px; color: #fff; letter-spacing: -0.02em; font-weight: 800; }
.hero p.lead { font-size: clamp(16px, 2.1vw, 20px); color: #c8ebe0;
  margin: 0 0 28px; max-width: 33ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12); color: #d9f6ec; font-weight: 600;
  font-size: 13px; padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16); letter-spacing: 0.03em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: #a9d9cd; }

/* phone mockup */
.phone {
  justify-self: center; width: 260px; max-width: 78vw; aspect-ratio: 9 / 18.5;
  background: linear-gradient(180deg, #ffffff, #eef5f3);
  border-radius: 34px; padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.phone-screen {
  height: 100%; border-radius: 24px; background: var(--teal);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center; padding: 18px;
  color: #eafaf4;
}
.phone-screen img { width: 96px; height: 96px; border-radius: 22px; }
.phone-screen .pn { font-weight: 800; letter-spacing: 0.04em; }
.phone-screen .ph { font-size: 12.5px; color: #bfe8dc; }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .phone { display: none; }
}

/* ---------- sections ---------- */
section { padding: 68px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 12px;
  letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
.card-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.card-tile .ico { width: 46px; height: 46px; border-radius: 12px;
  background: rgba(34, 192, 125, 0.14); display: flex; align-items: center;
  justify-content: center; font-size: 23px; margin-bottom: 14px; }
.card-tile h3 { margin: 0 0 8px; font-size: 19px; }
.card-tile p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 26px 24px; border-radius: var(--radius);
  border: 1px dashed var(--line); background: #fff; }
.step .num { width: 38px; height: 38px; border-radius: 999px;
  background: var(--teal); color: #fff; font-weight: 800; display: flex;
  align-items: center; justify-content: center; margin-bottom: 13px; }
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* CTA band */
.cta {
  background: linear-gradient(160deg, var(--teal), var(--teal-900));
  color: #eafaf4; border-radius: 22px; padding: 48px 36px; text-align: center;
  box-shadow: var(--shadow);
}
.cta h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 32px); color: #fff; }
.cta p { margin: 0 0 24px; color: #c8ebe0; }

/* ---------- footer ---------- */
.footer { background: #08322d; color: #bfe0d7; padding: 52px 0 30px;
  font-size: 15px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 720px) { .footer .cols { grid-template-columns: 1fr; gap: 22px; } }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer p { color: #9ec7bc; margin: 0; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.08em; margin: 0 0 14px; }
.footer a { color: #bfe0d7; display: block; margin-bottom: 9px; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer .legal { display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; padding-top: 22px; color: #7fb0a5; font-size: 13.5px; }

/* ---------- legal / prose pages ---------- */
.page-hero { background: linear-gradient(160deg, var(--teal), var(--teal-900));
  color: #eafaf4; padding: 52px 0 40px; }
.page-hero h1 { color: #fff; margin: 8px 0 8px; font-size: clamp(28px, 4vw, 40px); }
.page-hero p { margin: 0; color: #bfe8dc; }
.legal-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.legal-nav a { background: rgba(255,255,255,0.12); color: #eafaf4;
  padding: 7px 15px; border-radius: 999px; font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.16); }
.legal-nav a:hover { background: rgba(255,255,255,0.22); text-decoration: none; }
.legal-nav a.current { background: var(--green); color: #04231a; border-color: transparent; }

.prose { max-width: 780px; margin: 0 auto; padding: 48px 22px 72px; }
.prose h2 { font-size: 23px; margin: 40px 0 12px; letter-spacing: -0.01em; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p, .prose li { color: #26403b; font-size: 16px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose a { font-weight: 600; }
.prose .updated { color: var(--muted); font-size: 14.5px; margin-top: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 14px 0;
  font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px;
  border: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--bg-soft); }
.callout { background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--green); border-radius: 12px; padding: 16px 18px;
  margin: 20px 0; font-size: 15.5px; color: #26403b; }
