:root {
  --ink: #0d1117;
  --ink-2: #161c24;
  --paper: #ffffff;
  --paper-2: #f6f7f9;
  --line: #e3e6ea;
  --line-dark: rgba(255, 255, 255, .13);
  --text: #2b333d;
  --muted: #6b7580;
  --muted-dark: #9aa5b1;
  --blue: #3b82b5;
  --blue-bright: #58a6d8;
  --pink: #e51d56;
  --shell: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { color: var(--ink); }

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* =============================== NAV =============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 16px 34px;
  background: rgba(13, 17, 23, .88);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue));
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}
.wordmark-text {
  color: #fff;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.wordmark-text em { font-style: normal; color: var(--muted-dark); font-weight: 400; }
.nav nav { display: flex; gap: 26px; margin-left: auto; }
.nav nav a { color: #c6cfd8; text-decoration: none; font-size: 14px; font-weight: 600; }
.nav nav a:hover { color: #fff; }
.nav-cta {
  padding: 9px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =============================== HERO ============================== */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13, 17, 23, .96) 0%, rgba(13, 17, 23, .8) 45%, rgba(13, 17, 23, .5) 100%),
    linear-gradient(to top, var(--ink) 2%, transparent 55%);
}
.hero-inner {
  position: relative;
  max-width: var(--shell);
  margin: auto;
  padding: 120px 34px 100px;
}
.kicker {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #cfd8e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.hero h1 {
  max-width: 800px;
  margin: 26px 0 22px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 74px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.lede { max-width: 620px; margin: 0 0 34px; color: #c3ccd6; font-size: 18px; line-height: 1.72; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 34px rgba(59, 130, 181, .32); }
.btn-ghost { border: 1px solid var(--line-dark); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .07); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 54px;
  margin: 62px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line-dark);
}
.hero-stats dt {
  color: #fff;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero-stats dd { margin: 4px 0 0; color: var(--muted-dark); font-size: 13px; font-weight: 600; }

/* ============================= SECTIONS ============================ */
.section { padding: 105px 34px; }
.head { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.head h2 {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.head .sub { margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.head-light h2 { color: #fff; }
.head-light .sub { color: var(--muted-dark); }

/* ============================= PRODUCTS ============================ */
.products { background: var(--paper); }
.product {
  max-width: var(--shell);
  margin: 0 auto 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.product:last-child { margin-bottom: 0; }
.product-reverse .product-media { order: 2; }
.product-media { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(13, 17, 23, .16); }
.product-media img { aspect-ratio: 16/9; object-fit: cover; }
.product-logo { width: 56px; height: 56px; border-radius: 13px; object-fit: contain; }
.product h3 {
  margin: 20px 0 6px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.025em;
}
.product-tag { margin: 0 0 18px; color: var(--blue); font-size: 14px; font-weight: 700; }
.product-copy > p { margin: 0 0 20px; color: var(--text); font-size: 16px; line-height: 1.75; }
.feature-list { margin: 0 0 24px; padding: 0; list-style: none; }
.feature-list li {
  position: relative;
  padding: 0 0 0 24px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.link-out { color: var(--blue); text-decoration: none; font-size: 15px; font-weight: 800; }
.link-out:hover { text-decoration: underline; }
.link-out-dark { color: var(--blue); }

/* ============================ LEADERSHIP =========================== */
.leadership { background: var(--paper-2); }
.people { max-width: 1000px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.person {
  padding: 36px 34px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}
.person-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue));
  color: #fff;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .02em;
}
.person h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
.role { margin: 3px 0 0; color: var(--blue); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.person p { margin: 0 0 15px; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ============================ INVESTORS ============================ */
.investors { background: var(--ink); }
.thesis {
  max-width: var(--shell);
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.thesis article {
  padding: 34px 32px 30px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--ink-2);
}
.num { color: var(--blue-bright); font-family: var(--serif); font-size: 15px; font-weight: 700; letter-spacing: .1em; }
.thesis h3 { margin: 14px 0 11px; color: #fff; font-size: 20px; letter-spacing: -.02em; }
.thesis p { margin: 0; color: var(--muted-dark); font-size: 15px; line-height: 1.72; }
.investor-cta { max-width: 620px; margin: auto; text-align: center; }
.investor-cta p { margin: 0 0 22px; color: #c3ccd6; font-size: 17px; line-height: 1.7; }

/* ============================= COMPANY ============================= */
.company { background: var(--paper); }
.facts {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}
.facts > div { padding: 24px 26px; background: var(--paper); }
.facts dt { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.facts dd { margin: 9px 0 0; color: var(--ink); font-size: 16px; font-weight: 600; }
.facts dd a { color: var(--blue); text-decoration: none; }
.facts dd a:hover { text-decoration: underline; }
/* Placeholders that must be replaced before the site goes to Apple. */
.todo { color: #b6531d !important; background: #fff4e8; padding: 3px 8px; border-radius: 6px; font-weight: 700; }

/* ============================= CONTACT ============================= */
.contact { padding: 100px 34px 110px; background: var(--paper-2); border-top: 1px solid var(--line); }
.contact-inner { max-width: 700px; margin: auto; text-align: center; }
.contact h2 {
  margin: 15px 0 14px;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -.03em;
}
.contact p { margin: 0 0 26px; color: var(--muted); font-size: 17px; line-height: 1.7; }
/* Email and phone read as one line, at one size. */
.contact-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  font-size: 17px !important;
  font-weight: 700;
}
.contact-line a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--blue); }
.contact-line a:hover { color: var(--blue); }
.contact-line .sep { color: var(--muted); font-weight: 400; }

/* ============================== FOOTER ============================= */
footer { padding: 62px 34px 34px; background: var(--ink); color: #fff; }
.foot-top {
  max-width: var(--shell);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 44px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-brand .wordmark-text { font-size: 24px; }
.foot-brand p { margin: 12px 0 0; color: var(--muted-dark); font-size: 13px; line-height: 1.7; }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.foot-cols h4 { margin: 0 0 14px; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.foot-cols a { display: block; margin-bottom: 10px; color: var(--muted-dark); text-decoration: none; font-size: 14px; }
.foot-cols a:hover { color: #fff; }
.copyright { max-width: var(--shell); margin: 26px auto 0; color: #7d8892; font-size: 12px; }

/* ============================ RESPONSIVE =========================== */
@media (max-width: 1000px) {
  .product, .people, .thesis, .facts, .foot-top { grid-template-columns: 1fr; }
  .product { gap: 30px; margin-bottom: 62px; }
  .product-reverse .product-media { order: 0; }
  .foot-top { gap: 34px; }
}

@media (max-width: 820px) {
  .nav { flex-wrap: wrap; gap: 12px 20px; padding: 14px 20px; }
  .nav nav { order: 3; width: 100%; margin-left: 0; justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
  .nav-cta { margin-left: auto; }
  .hero-inner { padding: 74px 22px 76px; }
  .hero-stats { gap: 22px 34px; margin-top: 46px; }
  .hero-stats dt { font-size: 27px; }
  .section { padding: 76px 22px; }
  .head { margin-bottom: 44px; }
  .person { padding: 30px 26px; }
  .contact { padding: 76px 22px 84px; }
  footer { padding: 50px 22px 28px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .wordmark-text { font-size: 18px; }
  .foot-cols { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ==================== LEGAL PAGES (privacy/terms/etc) ==================== */
.legal-shell { background: var(--paper); }
.legal-head {
  padding: 46px 34px 40px;
  background: var(--ink);
}
.legal-head-inner { max-width: 860px; margin: auto; }
.legal-head .wordmark { margin-bottom: 30px; }
.legal-head h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.legal-head .effective {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #cfd8e1;
  font-size: 12px;
  font-weight: 700;
}
.legal-body { max-width: 860px; margin: 0 auto; padding: 54px 34px 90px; }
.legal-body h2 {
  margin: 42px 0 12px;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { margin: 26px 0 8px; font-size: 17px; font-weight: 800; }
.legal-body p, .legal-body li { color: #4d5761; font-size: 16px; line-height: 1.78; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li { margin-bottom: 9px; }
.legal-body a { color: var(--blue); }
.legal-body strong { color: var(--ink); }
.callout {
  margin: 30px 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 14px;
  background: var(--paper-2);
}
.callout p:last-child { margin-bottom: 0; }
.back { display: inline-block; margin-bottom: 34px; color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; }
.back:hover { color: var(--blue); }
.draft-note {
  margin: 0 0 34px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fff4e8;
  border: 1px solid #f0d5b8;
  color: #8a4718 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

@media (max-width: 820px) {
  .legal-head { padding: 30px 22px 34px; }
  .legal-body { padding: 40px 22px 70px; }
}
