:root {
  color-scheme: dark;
  --bg: #192124;
  --surface: #161e20;
  --muted: #afbec1;
  --text: #e7ecec;
  --border: #39474b;
  --accent: #ff6b4a;
  --green: #87d6bf;
  --soft: #23312f;
  --paper: #fff;
  --ink: #202326;
  --error: #ffb3a6;
  font-family: Inter,"Segoe UI",Arial,sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}
:root[data-theme=light] {
  color-scheme: light;
  --bg: #fff;
  --surface: #f5f8f7;
  --muted: #56656b;
  --text: #202326;
  --border: #d9e0e2;
  --green: #1f7466;
  --soft: #e7f2ee;
  --error: #b12717;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
button,input,select,textarea {
  font: inherit;
  letter-spacing: 0;
}
button,a,input,select,summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
button:disabled {
  cursor: wait;
}
img {
  max-width: 100%;
  display: block;
}
figure {
  margin: 0;
}
p {
  margin: 0 0 18px;
}
h1,h2,h3 {
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h1 {
  font-size: 66px;
  font-weight: 750;
}
h2 {
  font-size: 36px;
  max-width: 780px;
}
h3 {
  font-size: 23px;
}
ul,ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
[hidden] {
  display: none!important;
}
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}
.container {
  width: min(1248px,calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 88px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-heading>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  color: var(--green);
  margin: 0 0 16px;
}
.fine {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: var(--icon) center/contain no-repeat;
  vertical-align: middle;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
  transition: background .15s,border-color .15s;
}
.button:hover {
  text-decoration: none;
}
.primary {
  background: var(--accent);
  color: #202326;
}
.primary:hover {
  background: #ff8469;
}
.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.secondary:hover {
  border-color: var(--text);
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
}
.icon-button:hover {
  background: var(--soft);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 650;
}
.text-button {
  border: 0;
  padding: 8px 0;
  background: none;
  color: var(--green);
  text-decoration: underline;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 99;
  padding: 12px 20px;
  background: var(--accent);
  color: #202326;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  flex-shrink: 0;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.language {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 44px;
  font-size: 13px;
  font-weight: 700;
}
.login {
  font-size: 14px;
}
.header-cta {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
}
.mobile-menu {
  display: none;
}
.hero {
  isolation: isolate;
  position: relative;
  background: #101819;
  color: #fff;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,18,19,.67);
  z-index: -1;
}
.hero-inner {
  padding-block: 48px 40px;
}
.hero-copy {
  max-width: 700px;
}
.hero .eyebrow {
  color: #bfe7d9;
}
.hero h1 {
  margin-bottom: 12px;
}
.category {
  font-size: 28px;
  font-weight: 650;
  line-height: 1.25;
  max-width: 590px;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 18px;
  max-width: 600px;
  line-height: 1.55;
  margin-bottom: 26px;
}
.hero-secondary {
  border-color: #afbec1;
  background: #19212466;
  color: white;
}
.hero-secondary:hover {
  background: #192124;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 550;
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-facts .icon {
  width: 16px;
  height: 16px;
  color: #a9e5ce;
}
.image-note {
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 10px;
  color: #fff;
  background: #101819a6;
  padding: 2px 6px;
}
.product-section {
  background: #fff;
  color: #202326;
  padding-top: 42px;
}
.product-section .eyebrow,.product-section .section-index {
  color: #1f7466;
}
.product-section .section-heading>p,.product-copy>p,.product-section figcaption {
  color: #56656b;
}
.product-section .section-heading {
  margin-bottom: 40px;
}
.product-row {
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  align-items: center;
  gap: 64px;
  margin-top: 32px;
}
.product-row+.product-row {
  border-top: 1px solid #d9e0e2;
  padding-top: 56px;
  margin-top: 56px;
}
.product-row.reverse {
  grid-template-columns: minmax(0,1fr) 320px;
}
.reverse .product-copy {
  grid-column: 2;
  grid-row: 1;
}
.reverse figure {
  grid-column: 1;
  grid-row: 1;
}
.section-index {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 14px;
}
.product-copy h3 {
  font-size: 27px;
}
.checklist {
  display: grid;
  gap: 12px;
  font-size: 15px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checklist .icon {
  margin-top: 3px;
  color: var(--green);
  width: 17px;
  height: 17px;
}
.product-copy .checklist .icon {
  color: #1f7466;
}
.screenshot {
  display: block;
  position: relative;
  border: 1px solid #cbd5d8;
  background: #f5f8f7;
  border-radius: 4px;
  overflow: hidden;
}
.screenshot img {
  width: 100%;
  height: auto;
}
.screenshot:hover {
  outline: 2px solid #1f7466;
  outline-offset: 3px;
}
.zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: #192124;
  color: #fff;
  border-radius: 4px;
}
figcaption {
  margin-top: 10px;
  font-size: 12px;
}
.muted-band {
  background: var(--surface);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 48px;
  counter-reset: steps;
}
.step-index {
  display: block;
  color: var(--green);
  font-size: 18px;
  font-weight: 650;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 20px;
}
.step-visual {
  margin: 0 0 24px;
}
.step-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.step-visual-2 img {
  object-fit: cover;
  object-position: 65% center;
}
.step-visual figcaption {
  color: var(--muted);
  font-size: 12px;
}
.steps p {
  color: var(--muted);
  margin-bottom: 0;
}
.steps h3 {
  font-size: 22px;
}
.hardware {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.hardware>.icon {
  width: 28px;
  height: 28px;
  color: var(--green);
}
.hardware h3 {
  font-size: 20px;
}
.hardware p {
  max-width: 900px;
  color: var(--muted);
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 42px;
  margin: 38px 0 24px;
}
.extras-grid article {
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.extras-grid .icon {
  color: var(--accent);
  height: 30px;
  width: 30px;
  margin-bottom: 18px;
}
.extras-grid h3 {
  font-size: 22px;
}
.extras-grid p {
  color: var(--muted);
}
.pricing-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.billing-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.segmented {
  margin: 0;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-flex;
  background: var(--bg);
  gap: 4px;
}
.segmented label {
  position: relative;
  min-width: 100px;
  text-align: center;
  cursor: pointer;
}
.segmented input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.segmented span {
  display: block;
  min-height: 42px;
  padding: 9px 22px;
  line-height: 24px;
  font-size: 15px;
  border-radius: 2px;
  font-weight: 650;
}
.segmented input:checked+span {
  background: var(--green);
  color: var(--bg);
}
.segmented input:focus-visible+span {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.saving {
  font-size: 14px;
  color: var(--green);
  font-weight: 650;
}
.billing-note {
  margin: 18px 0 30px;
  min-height: 54px;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
}
.plan {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px;
  background: var(--bg);
  min-width: 0;
}
.plan.plus {
  border: 2px solid var(--accent);
  padding: 29px;
}
.plan-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.plan-heading h3 {
  margin: 0;
  font-size: 25px;
}
.plan-heading>.icon {
  color: var(--green);
  width: 25px;
  height: 25px;
}
.plan.plus .plan-heading>.icon {
  color: var(--accent);
}
.plan-description {
  color: var(--muted);
  margin-top: 12px;
  min-height: 53px;
}
.price {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 44px;
  overflow-wrap: anywhere;
}
.price small {
  font-weight: 400;
  font-size: 15px;
  color: var(--muted);
}
.price-note {
  font-size: 13px;
  color: var(--muted);
  min-height: 44px;
  margin: 12px 0 24px;
}
.plan .checklist {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 20px;
}
.plan-footnote {
  font-size: 13px;
  color: var(--muted);
  min-height: 42px;
  margin-bottom: 25px;
}
.plan .button {
  margin-top: auto;
  align-self: stretch;
}
.price-disclosure {
  margin: 18px 0 0;
}
.trial-band {
  padding: 44px 0;
  background: #e7f2ee;
  color: #202326;
}
.trial-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
.trial-inner>div {
  max-width: 780px;
}
.trial-inner>.button {
  flex-shrink: 0;
}
.trial-band .eyebrow {
  color: #1f7466;
}
.trial-band h2 {
  font-size: 28px;
}
.trial-band .fine {
  color: #56656b;
  margin: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0,1fr);
  gap: 80px;
}
.faq-layout h2 {
  font-size: 31px;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list details:first-child {
  border-top: 1px solid var(--border);
}
.faq-list summary {
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details>p {
  color: var(--muted);
  font-size: 15px;
  padding-right: 30px;
  margin: 0 0 22px;
}
.join-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.join-layout {
  display: grid;
  grid-template-columns: minmax(0,640px) minmax(0,1fr);
  gap: 80px;
}
.notice {
  border-left: 3px solid var(--green);
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
form>label,.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 650;
  margin: 18px 0 6px;
}
input,select,textarea {
  display: block;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 13px;
  min-height: 48px;
}
textarea {
  resize: vertical;
  font-size: 14px;
}
input:hover,select:hover {
  border-color: var(--muted);
}
input[aria-invalid=true] {
  border-color: var(--error);
}
.field-error {
  font-size: 13px;
  color: var(--error);
  margin: 4px 0 0;
}
.form-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 20px;
}
form>.fine {
  margin-top: 20px;
}
form>.button {
  width: 100%;
}
.selection {
  border-left: 1px solid var(--border);
  padding-left: 32px;
  align-self: start;
}
.selection h3 {
  font-size: 21px;
}
.selection>p {
  color: var(--muted);
  font-size: 15px;
}
.selection .eyebrow {
  color: var(--green);
  font-size: 12px;
}
.selection a {
  color: var(--green);
  text-decoration: underline;
}
.selection [data-selection-price] {
  color: var(--text);
  font-size: 24px;
  font-weight: 650;
}
#draft>p {
  font-size: 14px;
  color: var(--muted);
}
#draft .actions {
  margin-top: 20px;
}
#copy-status {
  min-height: 24px;
}
#draft-title:focus {
  outline: 0;
}
.site-footer {
  background: var(--bg);
  padding: 48px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-top h3 {
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-top p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.footer-top>div>a:not(.brand) {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin: 7px 0;
}
.conditions {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 30px;
}
.conditions h3 {
  font-size: 14px;
}
.conditions p {
  font-size: 12px;
  color: var(--muted);
  max-width: 960px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.outcomes {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 42px;
}
.outcomes article {
  border-top: 1px solid #d9e0e2;
  padding-top: 24px;
}
.outcomes .icon {
  width: 26px;
  height: 26px;
  color: #1f7466;
  margin-bottom: 18px;
}
.outcomes h3 {
  font-size: 23px;
}
.outcomes p {
  color: #56656b;
}
.memory-story {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 64px;
  align-items: center;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.memory-story img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.memory-story p,.memory-story figcaption {
  color: var(--muted);
}
.memory-story h3 {
  font-size: 28px;
}
.plans {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.plan {
  padding: 24px;
}
.plan.team {
  border: 2px solid var(--accent);
  padding: 23px;
}
.plan.team .plan-heading>.icon {
  color: var(--accent);
}
.plan .price {
  font-size: 30px;
}
.plan .price small {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}
.plan .plan-description {
  min-height: 54px;
}
.plan .price-note {
  min-height: 46px;
}
.custom-plan {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  border-block: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 32px;
}
.custom-plan>div {
  flex: 1;
  max-width: 570px;
}
.custom-plan h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.custom-plan p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.custom-plan strong {
  white-space: nowrap;
}
.custom-plan>.button {
  flex-shrink: 0;
}
.common-features {
  padding: 28px 0;
}
.common-features h3 {
  font-size: 18px;
}
.common-features p {
  max-width: 900px;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.addon-offer {
  border-block: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: 64px;
  scroll-margin-top: 92px;
}
.addon-offer h3 {
  font-size: 25px;
}
.addon-offer p {
  color: var(--muted);
}
.addon-offer .addon-price {
  font-size: 28px;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.3;
}
.addon-price small {
  font-size: 16px;
  font-weight: 400;
}
.addon-tax {
  margin: 6px 0 14px;
}
.addon-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 650;
  cursor: pointer;
  font-size: 15px;
}
.addon-choice input {
  appearance: auto;
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--green);
}
#ai-field {
  margin-top: 22px;
}
#ai-field>.fine {
  margin: 10px 0 0 32px;
}
.selection [data-selection-addon] {
  font-size: 14px;
  color: var(--green);
  overflow-wrap: break-word;
}
@media(min-width:1600px) {
  .hero-inner {
    padding-block: 54px 46px;
  }
}
@media(max-width:1200px) {
  .header-inner {
    gap: 16px;
  }
  .desktop-nav {
    gap: 16px;
  }
  .header-tools {
    gap: 8px;
  }
  .header-cta {
    display: none;
  }
  .product-row {
    gap: 36px;
    grid-template-columns: 280px minmax(0,1fr);
  }
  .product-row.reverse {
    grid-template-columns: minmax(0,1fr) 280px;
  }
  .faq-layout {
    gap: 44px;
  }
  .join-layout {
    gap: 44px;
  }
}
@media(max-width:850px) {
  .container {
    width: calc(100% - 48px);
  }
  .section {
    padding: 60px 0;
  }
  .header-inner {
    min-height: 64px;
    gap: 14px;
  }
  .desktop-nav,.header-tools>.login {
    display: none;
  }
  .header-tools {
    margin-left: auto;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu>summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    list-style: none;
    cursor: pointer;
  }
  .mobile-menu>summary::-webkit-details-marker {
    display: none;
  }
  .menu-icon,.menu-icon::before,.menu-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .menu-icon {
    position: relative;
  }
  .menu-icon::before,.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .menu-icon::before {
    top: -6px;
  }
  .menu-icon::after {
    top: 6px;
  }
  .mobile-menu nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 65px);
    overflow: auto;
    padding: 16px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 20px #10181922;
  }
  .mobile-menu nav>a {
    display: block;
    padding: 13px 12px;
    min-height: 48px;
  }
  .mobile-menu nav>.button {
    display: flex;
    margin-top: 8px;
  }
  .hero-inner {
    padding-block: 36px 32px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .category {
    font-size: 26px;
  }
  .hero-copy {
    max-width: 620px;
  }
  .product-section {
    padding-top: 36px;
  }
  .product-row,.product-row.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .reverse .product-copy,.reverse figure {
    grid-column: auto;
    grid-row: auto;
  }
  .product-row+.product-row {
    padding-top: 36px;
    margin-top: 36px;
  }
  .product-copy {
    max-width: 680px;
  }
  .product-copy .checklist {
    grid-template-columns: repeat(3,minmax(0,1fr));
    font-size: 13px;
    gap: 18px;
  }
  .steps,.extras-grid {
    gap: 26px;
  }
  .steps h3,.extras-grid h3 {
    font-size: 20px;
  }
  .steps p,.extras-grid p {
    font-size: 14px;
  }
  .plan {
    padding: 24px;
  }
  .plan.plus {
    padding: 23px;
  }
  .price {
    font-size: 30px;
  }
  .trial-inner {
    display: block;
  }
  .trial-inner>.button {
    margin-top: 24px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .faq-layout h2 {
    max-width: none;
  }
  .join-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .selection {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
  }
}
@media(max-width:560px) {
  body {
    font-size: 15px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .section {
    padding: 46px 0;
  }
  .brand {
    font-size: 20px;
    gap: 8px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-tools {
    gap: 2px;
  }
  .language {
    min-width: 32px;
  }
  .theme-toggle {
    border-color: transparent;
  }
  .hero-inner {
    padding-block: 28px 32px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .category {
    font-size: 22px;
    max-width: 360px;
    margin-bottom: 16px;
  }
  .hero-lead {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero .button {
    min-height: 46px;
    padding: 11px 16px;
  }
  .hero-facts {
    font-size: 11px;
    gap: 6px 12px;
    margin-top: 16px;
  }
  .hero-facts .icon {
    width: 13px;
    height: 13px;
  }
  .hero-image {
    object-position: 65% center;
  }
  .image-note {
    font-size: 8px;
    bottom: 3px;
  }
  .product-section {
    padding-top: 30px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading>p:not(.eyebrow) {
    font-size: 16px;
  }
  h2 {
    font-size: 28px;
  }
  .product-copy h3 {
    font-size: 24px;
  }
  .product-copy .checklist {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 14px;
  }
  .product-row {
    margin-top: 22px;
  }
  .steps,.extras-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-index {
    margin-bottom: 12px;
    padding-top: 14px;
  }
  .steps h3 {
    margin-bottom: 12px;
  }
  .steps p,.extras-grid p {
    font-size: 15px;
  }
  .hardware {
    gap: 14px;
    margin-top: 32px;
  }
  .hardware>.icon {
    width: 22px;
    height: 22px;
  }
  .hardware h3 {
    font-size: 20px;
  }
  .extras-grid .icon {
    margin-bottom: 12px;
  }
  .billing-bar {
    gap: 12px;
  }
  .segmented label {
    min-width: 90px;
  }
  .saving {
    font-size: 13px;
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .plan-description {
    min-height: 0;
  }
  .plan-footnote {
    min-height: 0;
  }
  .price-note {
    min-height: 44px;
  }
  .billing-note {
    min-height: 78px;
    margin-bottom: 22px;
  }
  .trial-band {
    padding: 34px 0;
  }
  .trial-band h2 {
    font-size: 25px;
  }
  .trial-inner>.button {
    width: 100%;
  }
  .faq-layout h2 {
    font-size: 28px;
  }
  .faq-list summary {
    gap: 12px;
    font-size: 15px;
  }
  .faq-list details>p {
    padding-right: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .join-layout {
    gap: 30px;
  }
  .selection {
    padding-top: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-top>div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
  }
  #draft .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .eyebrow {
    font-size: 11px;
  }
}
@media(max-width:560px) and (max-height:700px) {
  .hero-inner {
    padding-block: 18px 24px;
  }
  .hero .eyebrow {
    margin-bottom: 8px;
  }
  .hero h1 {
    margin-bottom: 8px;
  }
  .hero-lead {
    margin-bottom: 14px;
    line-height: 1.45;
  }
  .hero-facts {
    margin-top: 12px;
  }
  .hero .actions {
    gap: 8px;
  }
}
@media(max-width:1050px) {
  .plan {
    padding: 20px;
  }
  .plan.team {
    padding: 19px;
  }
  .plan .price {
    font-size: 27px;
  }
  .custom-plan {
    flex-wrap: wrap;
  }
  .custom-plan>div {
    flex-basis: 60%;
  }
  .addon-offer {
    gap: 36px;
  }
  .memory-story {
    gap: 36px;
  }
}
@media(max-width:850px) {
  .outcomes {
    gap: 24px;
  }
  .outcomes h3 {
    font-size: 20px;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .plan .plan-description,.plan .price-note {
    min-height: 0;
  }
  .plan .price small {
    display: inline;
    font-size: 14px;
    margin-left: 6px;
  }
  .plan .checklist {
    grid-template-columns: repeat(3,minmax(0,1fr));
    margin-bottom: 24px;
  }
  .plan .button {
    align-self: flex-start;
    min-width: 230px;
  }
  .memory-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .memory-story figure {
    max-width: 680px;
  }
  .addon-offer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .custom-plan>div {
    flex-basis: 100%;
    max-width: none;
  }
}
@media(max-width:560px) {
  .outcomes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .outcomes article {
    padding-top: 20px;
  }
  .outcomes h3 {
    font-size: 22px;
  }
  .outcomes .icon {
    margin-bottom: 12px;
  }
  .plan .checklist {
    grid-template-columns: 1fr;
  }
  .plan .button {
    align-self: stretch;
    min-width: 0;
  }
  .plan .price small {
    display: block;
    margin-left: 0;
  }
  .custom-plan {
    gap: 20px;
  }
  .custom-plan>.button {
    width: 100%;
  }
  .memory-story h3 {
    font-size: 24px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    transition: none!important;
    animation: none!important;
  }
}
