:root {
  --ink: #1c1630;
  --muted: #625b6e;
  --paper: #faf9fc;
  --white: #ffffff;
  --line: #e5e0ec;
  --purple: #7047eb;
  --purple-dark: #5730c7;
  --purple-soft: #f0ebff;
  --green: #147a56;
  --green-soft: #edf5ee;
  --yellow: #f6e891;
  --night: #171020;
  --display: 'Sora', system-ui, sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 24px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.6 var(--body); letter-spacing: 0; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: var(--purple-dark); text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 2px; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: 1.15; letter-spacing: 0; text-wrap: balance; }
h1 { font-size: 64px; }
h2 { font-size: 40px; }
h3 { font-size: 23px; }
p { margin: 18px 0 0; max-width: 65ch; text-wrap: pretty; }
figure { margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--purple-dark); outline-offset: 5px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: absolute; top: -100px; left: 20px; z-index: 30; padding: 12px 18px; background: var(--white); }
.skip-link:focus { top: 12px; }
.site-header { position: relative; z-index: 10; background: var(--white); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font: 700 22px var(--display); text-decoration: none; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.primary-nav a { padding-block: 10px; color: var(--ink); font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--purple-dark); }
.primary-nav a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 9px; }
.primary-nav .sign-in { margin-left: 14px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius); background: var(--purple); color: var(--white); font-weight: 650; line-height: 1.35; text-align: center; text-decoration: none; transition: background 160ms ease-out; }
.button:hover { background: var(--purple-dark); }
.primary-nav .button { padding: 11px 17px; color: var(--white); min-height: 42px; }
.button.secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.button.secondary:hover { background: var(--white); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; position: relative; border: 0; background: transparent; color: var(--ink); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; position: absolute; width: 22px; height: 2px; left: 11px; top: 21px; background: currentColor; }
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.photo-hero { position: relative; isolation: isolate; min-height: 540px; height: min(660px, calc(100svh - 160px)); display: flex; align-items: center; background: var(--purple-soft); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
/* The supplied scenes reserve the left side for live, accessible HTML copy. */
.photo-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(250,249,252,.96) 0%, rgba(250,249,252,.88) 29%, rgba(250,249,252,.12) 66%, transparent 100%); }
.hero-copy { width: min(540px, 48%); padding-block: 48px; }
.hero-copy h1 { max-width: 540px; }
.hero-copy p { font-size: 20px; max-width: 37ch; }
.hero-copy .actions { margin-top: 30px; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; }
.text-link { font-weight: 650; }
.hero-caption { position: absolute; right: 24px; bottom: 16px; padding: 4px 9px; color: var(--ink); background: var(--white); border-radius: 2px; font-size: 12px; }
.section { padding-block: 88px; }
.section-intro { max-width: 740px; margin-bottom: 42px; }
.section-intro p, .section-copy > p { color: var(--muted); font-size: 19px; }
.section-intro h2 { max-width: 680px; }
.intro-band { padding-block: 34px; border-bottom: 1px solid var(--line); background: var(--white); }
.intro-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.intro-band p { margin: 0; font-size: 19px; }
.intro-band a { flex-shrink: 0; }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.feature-list li { border-top: 1px solid var(--line); padding-block: 28px; }
.feature-list p { color: var(--muted); margin-top: 12px; }
.feature-list h3 { font-size: 25px; }
.green-band { background: var(--green-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { position: relative; padding: 0 0 28px 52px; counter-increment: step; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 32px; height: 32px; display: grid; place-items: center; background: var(--green); color: var(--white); border-radius: 50%; font-size: 16px; font-weight: 650; }
.steps p { margin-top: 10px; color: var(--muted); }
.counter-method { margin-top: 32px; }
.section-copy .text-link { display: inline-block; margin-top: 24px; }
.note { font-size: 14px; color: var(--muted); }
.marketing-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.promotion-examples { display: grid; gap: 24px; }
.app-promotions { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.example-photo { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; background: var(--green-soft); }
figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }
.marketing-list { list-style: none; padding: 0; margin: 30px 0 0; }
.marketing-list li + li { margin-top: 26px; }
.marketing-list h3 { font-size: 21px; }
.marketing-list p { margin-top: 8px; color: var(--muted); }
.plan-band { background: var(--purple-soft); }
.plan-compare { width: 100%; border-collapse: collapse; margin-top: 32px; text-align: left; }
.plan-compare th, .plan-compare td { padding: 20px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.plan-compare th:first-child, .plan-compare td:first-child { padding-left: 0; width: 48%; }
.plan-compare th { font-family: var(--display); font-size: 20px; }
.plan-compare td { font-size: 16px; }
.plan-compare caption { text-align: left; margin-bottom: 8px; color: var(--muted); }
.comparison-links { margin-top: 28px; }
.activity-list { margin: 0; }
.activity-list div { padding-block: 22px; border-top: 1px solid var(--line); }
.activity-list dt { font: 650 21px var(--display); }
.activity-list dd { margin: 10px 0 0; color: var(--muted); }
.cta-band { padding-block: 56px; background: var(--yellow); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { font-size: 32px; }
.cta-inner .actions { flex-shrink: 0; }
.site-footer { padding-block: 48px 28px; background: var(--white); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-copy { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer-nav { display: flex; flex-wrap: wrap; align-content: start; justify-content: flex-end; gap: 16px 28px; }
.footer-nav a { color: var(--ink); font-size: 15px; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }

.faq-heading { padding-block: 68px 40px; }
.faq-heading h1 { font-size: 48px; }
.faq-heading p { color: var(--muted); font-size: 19px; }
.faq-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 64px; padding-bottom: 88px; }
.faq-sidebar h2 { font-size: 17px; margin-bottom: 18px; }
.category-buttons { display: flex; flex-direction: column; gap: 4px; }
.category-buttons button { min-height: 44px; padding: 10px 14px; border: 0; border-radius: 4px; background: transparent; color: var(--muted); text-align: left; font-size: 16px; }
.category-buttons button:hover { background: var(--white); color: var(--ink); }
.category-buttons button[aria-pressed="true"] { background: var(--purple-soft); color: var(--purple-dark); font-weight: 650; }
.faq-contact { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px; }
.faq-contact p { margin-top: 10px; }
.faq-contact a { overflow-wrap: anywhere; }
.search-label { display: block; margin-bottom: 10px; font-weight: 650; }
.search-row { position: relative; }
.search-row input { width: 100%; min-height: 54px; padding: 12px 56px 12px 16px; background: var(--white); color: var(--ink); border: 1px solid var(--muted); border-radius: var(--radius); appearance: none; }
.search-row input::placeholder { color: var(--muted); opacity: 1; }
.search-row input::-webkit-search-cancel-button { display: none; }
.clear-search { position: absolute; top: 5px; right: 5px; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); font-size: 26px; }
.result-count { color: var(--muted); min-height: 24px; font-size: 14px; margin: 14px 0 24px; }
.faq-group { margin-top: 32px; }
.faq-group:first-child { margin-top: 0; }
.faq-group h2 { font-size: 23px; margin-bottom: 18px; }
.faq-group details { border-top: 1px solid var(--line); }
.faq-group details:last-child { border-bottom: 1px solid var(--line); }
.faq-group summary { position: relative; cursor: pointer; padding: 22px 36px 22px 0; list-style: none; font-weight: 650; line-height: 1.5; }
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::after { content: '+'; position: absolute; right: 5px; top: 18px; font-size: 25px; font-weight: 400; }
.faq-group details[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 36px 24px 0; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 14px; }
.empty-state { padding-block: 36px; border-top: 1px solid var(--line); }
.empty-state h2 { font-size: 25px; }
.empty-state p { color: var(--muted); }
.empty-state .button { margin-top: 24px; }
.no-script { padding: 16px 0; }

@media (min-width: 1700px) {
  .photo-hero { height: min(760px, calc(100svh - 170px)); }
}
@media (max-width: 1100px) {
  .header-inner { gap: 18px; }
  .primary-nav { gap: 14px; }
  .primary-nav .sign-in { margin-left: 0; }
  .brand { font-size: 20px; }
  .brand img { width: 36px; height: 36px; }
  .split, .marketing-layout { gap: 40px; }
  h1 { font-size: 54px; }
  h2 { font-size: 34px; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 26px; }
}
@media (max-width: 960px) {
  .header-inner { flex-wrap: wrap; min-height: 72px; padding-block: 14px; }
  .primary-nav { width: 100%; margin: 0; flex-wrap: wrap; padding-block: 12px; }
  .js .menu-toggle { display: block; }
  .js .primary-nav { display: none; }
  .js .primary-nav.is-open { display: flex; }
  .primary-nav a { font-size: 16px; padding: 10px; }
  .photo-hero { min-height: 510px; }
  .hero-copy { width: 57%; }
  .hero-copy p { font-size: 18px; }
  .faq-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}
@media (max-width: 640px) {
  :root { --wrap: calc(100% - 36px); }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 21px; }
  .photo-hero { min-height: 590px; height: auto; max-height: none; padding-bottom: 0; align-items: flex-start; }
  .hero-copy { width: 100%; padding-block: 36px 64px; }
  .hero-copy h1 { max-width: 62%; font-size: 34px; }
  .hero-copy p { max-width: 27ch; margin-top: 150px; font-size: 18px; }
  .hero-copy .actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 24px; }
  .hero-photo { inset: 0; height: 100%; object-position: 70% center; }
  .photo-hero::before { background: linear-gradient(90deg, rgba(250,249,252,.94), rgba(250,249,252,.6) 42%, transparent 76%), linear-gradient(0deg, rgba(250,249,252,.98), rgba(250,249,252,.94) 56%, transparent 80%); }
  .hero-caption { right: 18px; bottom: 12px; }
  .intro-band .wrap { align-items: flex-start; flex-direction: column; gap: 12px; }
  .intro-band p { font-size: 17px; }
  .section { padding-block: 56px; }
  .section-intro { margin-bottom: 28px; }
  .feature-list, .split, .marketing-layout { grid-template-columns: 1fr; gap: 28px; }
  .feature-list { gap: 0; }
  .feature-list h3 { font-size: 23px; }
  .section-intro p, .section-copy > p { font-size: 17px; }
  .promotion-examples { order: -1; }
  .app-promotions { grid-template-columns: 1fr; gap: 28px; }
  .plan-compare th, .plan-compare td { padding: 16px 8px; font-size: 14px; }
  .plan-compare th { font-size: 17px; }
  .plan-compare th:first-child, .plan-compare td:first-child { width: 48%; }
  .cta-inner h2 { font-size: 28px; }
  .cta-inner .actions { flex-shrink: 1; }
  .faq-heading { padding-block: 44px 30px; }
  .faq-heading h1 { font-size: 36px; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; padding-bottom: 56px; }
  .category-buttons { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .category-buttons button { font-size: 14px; padding-inline: 12px; }
  .faq-contact { margin-top: 22px; padding-top: 18px; }
  .faq-contact p { display: inline; }
  .faq-contact strong { display: block; }
  .faq-group summary { font-size: 16px; }
  .faq-answer { padding-right: 12px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
