:root {
  color-scheme: light;
  --ink: #07172b;
  --ink-2: #10243b;
  --muted: #647184;
  --muted-light: #9ba9b8;
  --hero: #031425;
  --hero-2: #071c30;
  --green: #2ebf7f;
  --green-dark: #16885d;
  --green-soft: #e9f7f1;
  --line: #dfe6ec;
  --line-dark: rgba(255,255,255,.13);
  --paper: #ffffff;
  --paper-soft: #f7f9fb;
  --danger: #d74040;
  --shadow: 0 28px 70px rgba(2, 16, 30, .24);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, svg { display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  transform: translateY(-180%);
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 78px;
  color: #fff;
}
.site-header.light {
  position: static;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.nav {
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 730;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand img { width: 26px; height: 30px; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 570;
}
.nav-links a {
  text-decoration: none;
  opacity: .84;
  position: relative;
  padding: 5px 0 7px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}
.header-cta {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  background: rgba(255,255,255,.03);
}
.site-header.light .header-cta {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

.hero {
  min-height: 690px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 71% 34%, rgba(31, 119, 114, .12), transparent 35%),
    linear-gradient(122deg, var(--hero) 0%, var(--hero-2) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 690px;
  margin: 0 auto;
  padding: 136px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 56px;
}
.hero-copy { max-width: 610px; }
.hero h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(50px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.053em;
  font-weight: 760;
}
.hero-sub {
  margin: 28px 0 0;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.5;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.91);
}
.play-button {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 610;
  background: rgba(255,255,255,.025);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.play-button:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); transform: translateY(-1px); }

.phone-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.phone-stage::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 90px;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,.5), rgba(0,0,0,0) 68%);
  filter: blur(4px);
}
.phone {
  position: relative;
  width: 318px;
  height: 618px;
  border-radius: 48px;
  padding: 9px;
  background: linear-gradient(145deg, #5d6267 0%, #101215 11%, #030405 46%, #24272b 82%, #090a0c 100%);
  box-shadow: 0 30px 75px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.2);
  transform: translateY(30px);
}
.phone::before {
  content: "";
  position: absolute;
  width: 91px;
  height: 22px;
  border-radius: 20px;
  background: #090a0b;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}
.status {
  height: 40px;
  padding: 12px 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-size: 11px;
  font-weight: 680;
}
.status-icons { letter-spacing: 2px; color: #0a1728; }
.appbar {
  height: 50px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #edf0f3;
}
.appbar strong { font-size: 18px; letter-spacing: -.02em; }
.app-icon { font-size: 21px; text-align: center; line-height: 1; }
.tabs {
  height: 48px;
  display: flex;
  align-items: end;
  gap: 25px;
  padding: 0 17px;
  border-bottom: 1px solid #edf0f3;
  font-weight: 580;
  color: #647184;
}
.tabs span { padding: 0 0 12px; position: relative; }
.tabs .active { color: var(--ink); }
.tabs .active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--ink);
}
.person-row,
.activity-row {
  display: grid;
  align-items: center;
  border-bottom: 1px solid #edf0f3;
}
.person-row {
  grid-template-columns: 34px 1fr auto;
  min-height: 67px;
  padding: 0 17px;
}
.avatar {
  width: 25px; height: 25px; border-radius: 50%;
  display: grid; place-items: center;
  background: #eef3f6;
  color: #4b6173;
  font-size: 12px;
}
.person-name { display: flex; flex-direction: column; gap: 2px; }
.person-name b { font-size: 13px; }
.person-name small { color: #778493; font-size: 10px; }
.amount { font-weight: 660; color: var(--green-dark); font-variant-numeric: tabular-nums; }
.amount.negative { color: var(--danger); }
.activity-title { padding: 17px 17px 9px; color: #607082; font-size: 11px; font-weight: 650; }
.activity-row {
  grid-template-columns: 1fr auto;
  min-height: 54px;
  padding: 0 17px;
}
.activity-row .meta { display: flex; flex-direction: column; gap: 3px; }
.activity-row b { font-size: 12px; }
.activity-row small { color: #8692a0; font-size: 9px; }
.activity-row .amount { font-size: 11px; }

.publisher-hero {
  padding: 150px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(46, 191, 127, .10), transparent 36%),
    linear-gradient(122deg, var(--hero) 0%, var(--hero-2) 100%);
}
.publisher-hero-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.publisher-mark { width: 132px; height: auto; }
.publisher-hero h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}
.publisher-tagline {
  margin: 20px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -.025em;
}
.publisher-intro {
  margin: 18px 0 0;
  max-width: 620px;
  color: #a8b6c4;
  font-size: 17px;
  line-height: 1.65;
}
.products-section { padding: 88px 0 96px; }
.products-section h2 {
  margin: 0 0 28px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6d7987;
}
.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 54px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 36, 56, .06);
}
.product-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-copy h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -.045em;
}
.product-tagline {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
}
.product-copy > p:not(.product-tagline) {
  margin: 16px 0 0;
  max-width: 560px;
  color: #5e6c7b;
  font-size: 15px;
  line-height: 1.65;
}
.product-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}
.product-link:hover { filter: brightness(1.05); }
.product-mark {
  min-height: 220px;
  border-radius: 14px;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(145deg, #071b2e, #0c263a);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.product-mark span { font-size: 32px; font-weight: 740; letter-spacing: -.035em; }
.product-mark small { margin-top: 8px; color: #9fb0bf; font-size: 12px; }

.intro-strip {
  padding: 88px 0 86px;
  background: var(--paper);
}
.section-wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: center;
}
.eyeless-title {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 750;
}
.lede {
  margin: 21px 0 0;
  max-width: 520px;
  color: #4d5b6b;
  font-size: 18px;
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px 46px;
}
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; }
.feature-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #a9dac7;
  display: grid; place-items: center;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
}
.feature-list b { display: block; font-size: 15px; margin-bottom: 4px; }
.feature-list p { margin: 0; color: #6b7887; font-size: 13px; line-height: 1.55; }

.about-band {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbf9 0%, #eef6f1 100%);
  border-top: 1px solid #e6eee9;
  border-bottom: 1px solid #e3ece7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 50px;
  align-items: center;
}
.about-copy h2 { margin: 0 0 16px; font-size: 35px; letter-spacing: -.035em; }
.about-copy p { margin: 0; max-width: 570px; font-size: 17px; line-height: 1.7; color: #4e5e6a; }
.about-mark { display: grid; place-items: center; }
.about-mark img { width: 128px; height: auto; }

.site-footer {
  background: var(--hero);
  color: #fff;
  padding: 55px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .7fr;
  gap: 55px;
}
.footer-brand p { margin: 13px 0 0; color: #93a6b7; font-size: 13px; line-height: 1.65; }
.footer-group b { display: block; font-size: 12px; margin-bottom: 13px; }
.footer-group a { display: block; text-decoration: none; color: #9eb0c0; font-size: 12px; margin: 9px 0; }
.footer-group a:hover { color: #fff; }
.footer-bottom {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #7f93a6;
  font-size: 11px;
  text-align: center;
}

/* Policy and support */
.page-main { min-height: calc(100vh - 260px); }
.page-hero {
  padding: 80px 0 28px;
  text-align: center;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.048em;
  line-height: 1.04;
}
.page-hero p { margin: 16px auto 0; max-width: 620px; color: #697687; line-height: 1.65; }
.policy {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: 18px 0 100px;
}
.policy-note {
  margin: 12px 0 42px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--green-soft);
  border: 1px solid #cbeadd;
  color: #23543f;
  line-height: 1.55;
}
.policy h2 { margin: 38px 0 11px; font-size: 22px; letter-spacing: -.02em; }
.policy p, .policy li { color: #4f5e6d; line-height: 1.72; font-size: 15px; }
.policy ul { padding-left: 22px; }
.policy a { color: var(--green-dark); text-underline-offset: 3px; }
.last-updated { text-align: center; color: #8894a1; font-size: 12px; margin-top: 12px; }

.support-grid {
  width: min(calc(100% - 40px), 920px);
  margin: 16px auto 100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  min-height: 185px;
  box-shadow: 0 12px 34px rgba(17,36,56,.045);
}
.support-card h2 { margin: 0 0 10px; font-size: 18px; }
.support-card p { margin: 0; color: #6a7786; line-height: 1.65; font-size: 14px; }
.support-card a { display: inline-block; margin-top: 17px; color: var(--green-dark); font-weight: 650; text-underline-offset: 3px; }
.support-card.full { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .nav { width: min(calc(100% - 28px), var(--max)); }
  .nav-links { display: none; }
  .header-cta { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: left; padding-top: 128px; gap: 22px; }
  .hero-copy { margin: 0 auto; width: 100%; }
  .hero { min-height: auto; }
  .hero h1 { max-width: 690px; }
  .phone-stage { min-height: 540px; }
  .phone { transform: translateY(15px) scale(.88); transform-origin: center top; }
  .split, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .about-mark { justify-content: start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-group:last-child { display: none; }
}

@media (max-width: 640px) {
  .site-header { height: 70px; }
  .brand { font-size: 15px; }
  .brand img { width: 23px; height: 27px; }
  .header-cta { min-height: 36px; padding: 0 13px; font-size: 12px; }
  .hero-inner { width: min(calc(100% - 30px), var(--max)); padding-top: 112px; padding-bottom: 26px; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .hero-sub { font-size: 21px; margin-top: 23px; }
  .play-button { margin-top: 24px; }
  .phone-stage { min-height: 485px; overflow: hidden; }
  .phone { transform: translateY(24px) scale(.76); }
  .intro-strip { padding: 68px 0; }
  .section-wrap { width: min(calc(100% - 30px), var(--max)); }
  .eyeless-title { font-size: 40px; }
  .lede { font-size: 16px; }
  .feature-list { grid-template-columns: 1fr; gap: 24px; }
  .about-band { padding: 68px 0; }
  .about-mark img { width: 95px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { padding-top: 58px; }
  .policy { width: min(calc(100% - 30px), 860px); }
  .support-grid { width: min(calc(100% - 30px), 920px); grid-template-columns: 1fr; }
  .support-card.full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
