:root {
  color-scheme: light;
  --ink: #172127;
  --muted: #59616d;
  --brand: #2457d6;
  --citron: #d9ed92;
  --paper: #fff;
  --wash: #f1f4f8;
  --line: #dce1e7;
  --on-citron: #27310f;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 5px;
}
p {
  line-height: 1.65;
  text-wrap: pretty;
}
h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
  line-height: 1.12;
  margin: 0;
  overflow-wrap: break-word;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 23px;
}
svg.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 30;
  padding: 14px 22px;
  background: white;
}
.skip-link:focus {
  top: 12px;
}
.review-notice {
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  background: #fff3ca;
  color: #614500;
  line-height: 1.4;
}
.site-header {
  min-height: 88px;
  max-width: 1380px;
  margin: auto;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 25px;
  font-weight: 750;
  min-height: 44px;
}
.brand img {
  border-radius: 8px;
  outline: 1px solid #00000012;
}
.brand-dot {
  color: var(--brand);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 550;
}
.desktop-nav > a:hover {
  color: var(--brand);
}
.desktop-nav .header-action {
  gap: 12px;
  color: var(--brand);
  border-bottom: 1px solid var(--brand);
}
.mobile-nav {
  display: none;
}
.button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 650;
  text-decoration: none;
  transition:
    background-color 140ms,
    color 140ms,
    scale 140ms;
}
.button:active {
  scale: 0.96;
}
.button-primary {
  background: var(--brand);
  color: #fff;
}
.button-primary:hover {
  background: #1b44ad;
  text-decoration: none;
  color: #fff;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #303d45;
  color: #fff;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  margin: 0 0 20px;
}
.hero {
  height: calc(100svh - 220px);
  min-height: 450px;
  max-height: 820px;
  position: relative;
  overflow: hidden;
  background: var(--wash);
  isolation: isolate;
}
.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px 0;
  max-width: 740px;
  margin: auto;
}
.hero h1 {
  font-size: 96px;
  font-weight: 780;
  line-height: 1.02;
}
.hero .eyebrow {
  margin-bottom: 15px;
}
.hero-line {
  font-size: 28px;
  font-weight: 580;
  line-height: 1.24;
  margin: 18px 0 12px;
  color: var(--ink);
}
.hero-description {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 22px;
}
.availability {
  font-size: 12px;
  color: var(--muted);
  margin: 11px 0;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-screen {
  position: absolute;
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 60px #1721271a;
  outline: 1px solid #00000014;
  max-width: none;
}
.screen-center {
  left: 50%;
  top: 410px;
  transform: translateX(-50%);
  width: 280px;
  z-index: 1;
}
.screen-left {
  left: calc(50% - 466px);
  top: 365px;
  transform: rotate(-9deg);
}
.screen-right {
  left: calc(50% + 218px);
  top: 365px;
  transform: rotate(9deg);
}
.mobile-break {
  display: none;
}
.section-heading {
  max-width: 720px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  margin: 24px 0 0;
}
.intro-band {
  padding: 48px 7% 84px;
  max-width: 1380px;
  margin: auto;
}
.intro-band .section-heading {
  max-width: 640px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 54px;
}
.feature-grid article {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  min-width: 0;
}
.feature-grid .icon {
  width: 28px;
  height: 28px;
  color: var(--brand);
  margin-bottom: 24px;
}
.feature-grid h3 {
  max-width: 250px;
}
.feature-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}
.product-band {
  background: var(--wash);
  padding: 80px 7% 40px;
}
.product-band > .section-heading {
  margin: 0 auto;
  text-align: center;
}
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  max-width: 1100px;
  margin: 52px auto 0;
}
.screen-gallery article {
  min-width: 0;
}
.screen-heading {
  min-height: 162px;
}
.screen-heading h3 {
  font-size: 21px;
  margin-top: 14px;
}
.screen-heading p {
  font-size: 15px;
  color: var(--muted);
  margin: 12px 0 20px;
}
.step-number {
  font-size: 12px;
  color: var(--brand);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.screen-link {
  display: block;
  border-radius: 8px;
  text-decoration: none;
  transition: scale 140ms;
}
.screen-link:active {
  scale: 0.96;
}
.screen-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1320/2868;
  border-radius: 8px;
  outline: 1px solid #00000014;
  box-shadow: 0 8px 28px #1721270a;
}
.image-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 30px 0 0;
}
.faq-band {
  max-width: 1250px;
  margin: auto;
  padding: 90px 5%;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}
.faq-band h2 {
  max-width: 300px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  min-height: 64px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  color: var(--brand);
  transition: rotate 140ms;
}
.faq-list details[open] summary .icon {
  rotate: 45deg;
}
.faq-list details > div {
  padding: 0 44px 20px 0;
  color: var(--muted);
}
.faq-list p {
  margin: 0;
  font-size: 16px;
}
.closing-band {
  background: var(--citron);
  color: var(--on-citron);
  padding: 72px 24px;
  text-align: center;
}
.closing-band h2 {
  font-size: 48px;
  margin-bottom: 30px;
}
.site-footer {
  max-width: 1380px;
  margin: auto;
  padding: 56px 5% 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top > p {
  font-size: 19px;
  color: var(--muted);
}
.footer-links {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: var(--ink);
}
.footer-links > p {
  margin: 0;
}
.footer-fine {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.footer-fine p {
  margin: 0;
}
.document-main,
.support-main {
  max-width: 1240px;
  margin: auto;
  padding: 32px 5% 80px;
}
.document-header {
  padding: 36px 0 52px;
  border-bottom: 1px solid var(--line);
}
.document-header h1 {
  font-size: 62px;
  max-width: 860px;
}
.document-header .eyebrow {
  color: var(--brand);
  margin-top: 28px;
}
.document-intro {
  font-size: 21px;
  color: var(--muted);
  max-width: 640px;
  margin: 22px 0;
}
.updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
.back-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
}
.document-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 70px;
  margin-top: 46px;
}
.document-layout aside nav {
  position: sticky;
  top: 28px;
}
.document-layout aside p {
  font-size: 11px;
  font-weight: 750;
  margin: 0 0 12px;
}
.document-layout aside a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.5;
  min-height: 40px;
  color: var(--muted);
  text-decoration: none;
}
.document-layout aside a:hover {
  color: var(--brand);
}
.prose {
  min-width: 0;
  max-width: 740px;
  font-size: 16px;
}
.prose section {
  margin: 0 0 40px;
  scroll-margin-top: 24px;
}
.prose h2 {
  font-size: 25px;
}
.prose p,
.prose li {
  color: #3f4a53;
  line-height: 1.85;
}
.prose ul,
.prose ol {
  padding-left: 24px;
}
.prose li {
  margin: 10px 0;
}
.prose strong {
  color: var(--ink);
  font-weight: 650;
}
.prose a {
  overflow-wrap: anywhere;
}
.support-main .document-header {
  padding-top: 24px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 25px;
  font-weight: 650;
  min-height: 44px;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.contact-note {
  font-size: 13px;
  color: var(--muted);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin: 48px 0 64px;
}
.support-grid section {
  min-width: 0;
}
.support-symbol {
  display: inline-flex;
  padding: 12px;
  background: #eaf0ff;
  border-radius: 6px;
  color: var(--brand);
  margin-bottom: 20px;
}
.support-grid h2 {
  font-size: 24px;
}
.support-grid p {
  font-size: 16px;
  color: var(--muted);
}
.support-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
}
.support-grid p > .icon {
  width: 16px;
  height: 16px;
}
.support-account {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.support-account h2 {
  font-size: 30px;
}
.support-account .eyebrow {
  margin-bottom: 16px;
}
.support-account p {
  color: var(--muted);
  margin-bottom: 0;
}
.support-account .button {
  flex-shrink: 0;
}
.support-notice {
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
}
.not-found {
  max-width: 800px;
  min-height: 55svh;
  margin: auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.not-found h1 {
  font-size: 56px;
}
.not-found p {
  margin: 0;
}
.not-found > a:last-child {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1600px) {
  .hero-screen {
    width: 290px;
  }
  .screen-center {
    width: 310px;
    top: 410px;
  }
  .screen-left {
    left: calc(50% - 570px);
    top: 280px;
  }
  .screen-right {
    left: calc(50% + 280px);
    top: 280px;
  }
}
@media (max-width: 1000px) {
  .feature-grid {
    gap: 26px;
  }
  .screen-gallery {
    gap: 30px;
  }
  .screen-heading {
    min-height: 190px;
  }
  .faq-band {
    gap: 32px;
  }
  .document-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 38px;
  }
  .support-grid {
    gap: 24px;
  }
  .support-account {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links,
  .footer-fine {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  h2 {
    font-size: 34px;
  }
  .site-header {
    min-height: 76px;
    padding: 12px 22px;
  }
  .brand {
    font-size: 23px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav nav {
    position: absolute;
    right: 0;
    top: 52px;
    z-index: 15;
    min-width: 200px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px #17212714;
    padding: 8px 16px;
    border-radius: 6px;
  }
  .mobile-nav nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
  }
  .hero {
    height: calc(100svh - 220px);
    min-height: 450px;
    max-height: 720px;
  }
  .hero-copy {
    padding: 28px 20px 0;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }
  .hero-line {
    font-size: 23px;
    margin: 16px 0 12px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 335px;
    margin: 0 auto 18px;
  }
  .hero .availability {
    margin-top: 10px;
    font-size: 11px;
  }
  .mobile-break {
    display: block;
  }
  .desktop-break {
    display: none;
  }
  .screen-center {
    width: 210px;
    top: 370px;
  }
  .screen-left {
    width: 170px;
    left: calc(50% - 284px);
    top: 415px;
  }
  .screen-right {
    width: 170px;
    left: calc(50% + 115px);
    top: 415px;
  }
  .intro-band {
    padding: 52px 24px;
  }
  .section-heading > p:last-child {
    font-size: 16px;
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 32px;
  }
  .feature-grid article {
    padding-top: 24px;
  }
  .feature-grid .icon {
    margin-bottom: 16px;
  }
  .feature-grid h3 {
    max-width: none;
  }
  .product-band {
    padding: 52px 24px 30px;
  }
  .screen-gallery {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 340px;
    margin-top: 36px;
  }
  .screen-heading {
    min-height: 0;
  }
  .screen-heading h3 {
    font-size: 23px;
  }
  .screen-link {
    width: 100%;
    max-width: 300px;
    margin: 24px auto 0;
  }
  .faq-band {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 30px;
  }
  .faq-band h2 {
    max-width: none;
  }
  .faq-list summary {
    font-size: 16px;
    padding: 20px 0;
  }
  .closing-band {
    padding: 52px 22px;
  }
  .closing-band h2 {
    font-size: 34px;
  }
  .site-footer {
    padding: 36px 24px 24px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .footer-top > p {
    font-size: 16px;
  }
  .footer-links {
    margin-top: 16px;
  }
  .footer-links nav {
    gap: 4px 20px;
  }
  .document-main,
  .support-main {
    padding: 16px 24px 48px;
  }
  .document-header {
    padding: 12px 0 32px;
  }
  .document-header h1 {
    font-size: 40px;
  }
  .document-intro {
    font-size: 18px;
  }
  .document-layout {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 32px;
  }
  .document-layout aside nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }
  .document-layout aside p {
    width: 100%;
    margin-bottom: 4px;
  }
  .document-layout aside a {
    font-size: 12px;
  }
  .prose h2 {
    font-size: 24px;
  }
  .prose {
    font-size: 16px;
  }
  .contact-email {
    font-size: 21px;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 32px 0 40px;
  }
  .support-grid section {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .support-account h2 {
    font-size: 28px;
  }
  .support-account {
    gap: 24px;
    padding: 30px 0;
  }
  .not-found {
    padding: 54px 24px;
  }
  .not-found h1 {
    font-size: 40px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 58px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-line {
    font-size: 22px;
  }
  .document-header h1 {
    font-size: 35px;
  }
  .contact-email {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
  .button:active,
  .screen-link:active {
    scale: 1;
  }
}
