:root {
  --main: #2597f5;
  --cream: #fff2d6;
  --pale: #d3eafd;
  --sky: #46adff;
  --yellow: #ffb71b;
  --white: #fff;
  --ink: #142e45;
  --muted: #516272;
  --heading-l: 700 1.5rem/2.5rem Roboto, sans-serif;
  --heading-m: 700 1.25rem/2rem Roboto, sans-serif;
  --heading-s: 700 1.0625rem/1.25rem Roboto, sans-serif;
  --heading-xs: 700 0.875rem/1.125rem Roboto, sans-serif;
  --body: 400 1rem/1.25rem Roboto, sans-serif;
  --body-small: 400 0.75rem/1rem Roboto, sans-serif;
  --caption: 400 0.75rem/1.125rem Roboto, sans-serif;
  --caption-small: 400 0.625rem/1rem Roboto, sans-serif;
  --button: 500 1.125rem/1.5rem Roboto, sans-serif;
  --button-medium: 500 0.875rem/1.25rem Roboto, sans-serif;
  --button-small: 500 0.75rem/1.5rem Roboto, sans-serif;
  --placeholder: 400 0.875rem/1.125rem Roboto, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #105c9c;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.header {
  max-width: 1264px;
  padding: 23px 32px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid #e8edf0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand img {
  border-radius: 11px;
}
.brand-dot {
  color: var(--main);
}
nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
nav a:hover,
.text-link:hover,
footer a:hover {
  color: #0b69b5;
}
.button {
  background: var(--main);
  color: #102c43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 17px 24px;
  border-radius: 9px;
  font: var(--button);
  white-space: normal;
  transition:
    background 0.15s,
    transform 0.15s;
  text-align: center;
}
.button:hover {
  background: #55aff8;
  transform: translateY(-2px);
}
.button.small {
  font: var(--button-medium);
  padding: 12px 18px;
  gap: 18px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  padding-top: 66px;
  padding-bottom: 62px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.65px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-line {
  height: 2px;
  width: 25px;
  background: var(--main);
}
h1 {
  font-size: clamp(42px, 4.65vw, 66px);
  line-height: 1.06;
  letter-spacing: -3px;
  font-weight: 700;
  margin: 23px 0;
}
h1 span {
  color: #157ccf;
}
p.intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 435px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 31px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid #e3e9ed;
  padding-top: 24px;
  margin-top: 37px;
}
.hero-bottom img {
  border-radius: 10px;
}
.hero-bottom p {
  font-size: 12px;
  line-height: 1.6;
}
.hero-bottom strong {
  font-weight: 500;
}
.hero-bottom span {
  color: var(--muted);
}
.hero-visual {
  background: var(--pale);
  border-radius: 24px;
  padding: 24px 24px 20px;
  min-width: 0;
}
.visual-top,
.visual-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.visual-top {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.visual-top > span:last-child {
  font-size: 33px;
  color: #136cae;
  line-height: 1;
}
.product-image {
  margin: 20px auto;
  max-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 35px #2c64961f;
}
.product-image img {
  width: 100%;
  height: auto;
}
.visual-bottom {
  font-size: 11px;
  font-weight: 500;
}
.feature-strip {
  border-top: 1px solid #e1eaf1;
  border-bottom: 1px solid #e1eaf1;
  padding: 25px 0;
}
.feature-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
}
.asterisk {
  color: #0d79ce;
  font-size: 24px;
}
.section {
  padding-top: 88px;
  padding-bottom: 80px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 38px;
}
h2 {
  font-size: 40px;
  line-height: 1.13;
  letter-spacing: -1.5px;
  font-weight: 600;
}
.section-heading h2,
.voice-section h2,
.everyday h2 {
  margin-top: 17px;
}
.section-heading > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 4px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  border-radius: 18px;
  padding: 28px 25px 0;
  overflow: hidden;
  min-width: 0;
}
.blue {
  background: var(--pale);
}
.cream {
  background: var(--cream);
}
.white {
  background: #f6f8fa;
  border: 1px solid #e5eaed;
}
.card-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font: var(--heading-l);
  letter-spacing: -0.5px;
}
.feature-card > p {
  font: var(--body);
  color: #415767;
  min-height: 65px;
  margin-top: 7px;
}
.note-example {
  margin-top: 29px;
  background: #fff;
  border-radius: 9px 9px 0 0;
  padding: 20px 18px 23px;
  min-height: 205px;
  box-shadow: 0 6px 16px #2346600b;
}
.note-meta {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: #5c7280;
}
.note-example h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 18px;
}
.note-example p {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px;
  color: var(--muted);
}
.note-lines {
  height: 1px;
  background: #e4edf3;
  margin-top: 14px;
}
.checklist h4 {
  margin-top: 0;
  margin-bottom: 18px;
}
.checklist > div {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  margin: 13px 0;
}
.check {
  width: 16px;
  height: 16px;
  border: 1.5px solid #657987;
  border-radius: 3px;
  flex-shrink: 0;
}
.check.checked {
  background: #ffe4a5;
  border: 0;
  color: #765310;
  text-align: center;
  font-weight: 700;
  line-height: 16px;
}
.checklist s {
  color: #6d767f;
}
.palette-example {
  padding-top: 30px;
}
.mini-note {
  background: #fff2d6;
  border-radius: 9px;
  padding: 22px 20px;
  transform: rotate(-4deg);
  margin: 0 9px 18px;
  min-height: 126px;
}
.mini-note > span {
  font-size: 16px;
  font-weight: 500;
}
.mini-note p {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 12px;
}
.swatches {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 5px 0 21px;
}
.swatches i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
}
.swatches i:nth-child(2) {
  background: var(--main);
}
.swatches i:nth-child(3) {
  background: var(--pale);
}
.swatches i:nth-child(4) {
  background: var(--cream);
  outline: 1px solid #a38a50;
  outline-offset: 3px;
}
.swatches i:nth-child(5) {
  background: white;
  border: 1px solid #c7d2da;
}
.example-caption {
  font: var(--caption);
  color: var(--muted);
  margin-top: 14px;
}
.voice-section {
  background: #eff7fe;
  padding: 70px 0;
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.voice-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 21px 0 26px;
  max-width: 410px;
}
.voice-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.voice-steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #c9ddec;
}
.voice-steps li:first-child {
  padding-top: 0;
}
.voice-steps li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-icon {
  background: var(--white);
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  color: #176ba9;
  flex-shrink: 0;
}
.voice-steps h3 {
  font: var(--heading-s);
  margin-bottom: 9px;
}
.voice-steps p {
  font: var(--body);
  color: var(--muted);
}
.everyday {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 94px;
  align-items: center;
}
.widget-visual {
  background: var(--cream);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.widget-visual img {
  max-width: 285px;
  border-radius: 16px;
}
.everyday .intro {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 28px;
}
.utility {
  display: flex;
  gap: 15px;
  margin-top: 23px;
}
.utility > span {
  background: #edf6fe;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 24px;
  color: #176cae;
}
.utility h3 {
  font: var(--heading-s);
  margin-bottom: 7px;
}
.utility p {
  font: var(--body);
  color: var(--muted);
}
.closing {
  background: var(--main);
  border-radius: 24px;
  text-align: center;
  padding: 47px 32px 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1136px;
}
.closing > img {
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 1px #ffffff55;
}
.closing h2 {
  font-size: 54px;
  letter-spacing: -2px;
  margin: 16px 0;
  color: #102d45;
}
.closing > p:not(.eyebrow) {
  font-size: 16px;
  margin-bottom: 23px;
}
.closing .dark {
  background: var(--ink);
  color: white;
  font-size: 16px;
}
.closing .dark:hover {
  background: #234c6c;
}
.closing small {
  font-size: 12px;
  margin-top: 16px;
  color: #102e47;
}
footer {
  padding-top: 48px;
  padding-bottom: 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 28px;
}
.footer-top .brand {
  font-size: 21px;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
}
.footer-top > div {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid #e3e8ed;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 76px;
  }
}
@media (max-width: 1050px) {
  .hero {
    gap: 30px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  h1 {
    font-size: 54px;
  }
  .voice-grid,
  .everyday {
    gap: 45px;
  }
  .cards {
    gap: 14px;
  }
  .feature-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature-card h3 {
    font-size: 21px;
  }
  .closing {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header {
    padding: 17px 22px;
    gap: 16px;
  }
  .header nav {
    display: none;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .button.small {
    padding: 11px 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 43px;
    padding-bottom: 36px;
    gap: 35px;
  }
  h1 {
    font-size: 54px;
    letter-spacing: -2.5px;
    line-height: 1.04;
  }
  .hero-copy .intro {
    font-size: 16px;
    max-width: 430px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 16px;
    padding: 15px 18px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-bottom {
    margin-top: 26px;
    padding-top: 20px;
  }
  .hero-visual {
    padding: 18px 20px;
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
  .product-image {
    max-width: 225px;
  }
  .visual-bottom {
    font-size: 10px;
  }
  .feature-strip {
    padding: 19px 0;
  }
  .feature-strip .wrap {
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .asterisk {
    font-size: 16px;
  }
  .section {
    padding-top: 53px;
    padding-bottom: 49px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .section-heading > p br {
    display: none;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 26px 25px 0;
  }
  .feature-card > p {
    min-height: 0;
    max-width: 350px;
  }
  .note-example {
    margin-top: 24px;
  }
  .feature-card h3 {
    font: var(--heading-l);
  }
  .feature-card .palette-example {
    padding-bottom: 10px;
  }
  .voice-section {
    padding: 47px 0;
  }
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .voice-steps li {
    padding: 20px 0;
  }
  .everyday {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .widget-visual {
    order: 2;
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
  .widget-visual img {
    max-width: 260px;
  }
  .everyday-copy {
    order: 1;
  }
  .closing {
    margin: 0 20px;
    padding: 36px 22px;
    border-radius: 20px;
  }
  .closing h2 {
    font-size: 43px;
  }
  .closing small {
    font-size: 12px;
    max-width: 250px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-top > div {
    margin-left: 0;
    width: 100%;
    margin-top: 7px;
  }
  .footer-top p {
    font-size: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}

/* Approved six-section revision */
.core-section {
  padding-bottom: 10px;
}
.core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.core-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 22px;
  padding: 30px;
  border-radius: 20px;
  min-width: 0;
  overflow: hidden;
}
.core-notes {
  background: var(--pale);
}
.core-checklists {
  background: var(--cream);
}
.core-card h3 {
  font: var(--heading-l);
  font-size: 28px;
  margin: 13px 0 12px;
}
.core-card p {
  font: var(--body);
  color: var(--muted);
  line-height: 1.5;
}
.core-card img {
  width: 190px;
  border-radius: 12px;
}
.core-card .card-number {
  display: block;
  margin: 0;
  font-size: 10px;
}
.tools-section {
  background: #eff7fe;
  padding: 70px 0;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
}
.tool-card {
  padding: 26px 0;
  border-top: 1px solid #c9ddec;
}
.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  color: #176ba9;
  margin-bottom: 20px;
}
.tool-icon svg {
  width: 25px;
  height: 25px;
}
.tool-card h3 {
  font: var(--heading-m);
  margin-bottom: 9px;
}
.tool-card p {
  font: var(--body);
  line-height: 1.5;
  color: var(--muted);
  max-width: 320px;
}
@media (max-width: 1050px) {
  .core-card {
    grid-template-columns: 1fr 140px;
    padding: 24px;
    gap: 16px;
  }
  .core-card img {
    width: 140px;
  }
  .core-card h3 {
    font-size: 25px;
  }
}
@media (max-width: 760px) {
  .core-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .core-card {
    grid-template-columns: 1fr 140px;
    padding: 24px 20px;
    gap: 15px;
  }
  .core-card p {
    font-size: 14px;
    line-height: 1.45;
  }
  .core-section {
    padding-bottom: 0;
  }
  .tools-section {
    padding: 48px 0;
  }
  .tool-card {
    padding: 24px 0;
  }
  .tool-card p {
    max-width: none;
  }
  .tool-card h3 {
    font: var(--heading-m);
  }
  .hero h1 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -1.6px;
  }
}
@media (max-width: 360px) {
  .core-card {
    grid-template-columns: 1fr;
  }
  .core-card img {
    width: 180px;
    margin: auto;
  }
}

/* Requested copy, color and screenshot carousel updates */
.hero-actions .button {
  color: #fff;
}
.closing .eyebrow,
.closing h2,
.closing > p,
.closing small {
  color: #fff;
}
.one-tap {
  white-space: nowrap;
}
.core-section .section-heading {
  flex-wrap: wrap;
}
.showcase-heading {
  text-align: center;
  margin-bottom: 32px;
}
.showcase-heading .eyebrow {
  justify-content: center;
  letter-spacing: 1.5px;
}
.showcase-heading h2 {
  margin-top: 16px;
}
.screenshot-carousel {
  background: #eff7fe;
  border-radius: 24px;
  padding: 32px;
  max-width: 830px;
  margin: auto;
}
.screenshot-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 24px;
  border-radius: 16px;
}
.screenshot-track::-webkit-scrollbar {
  display: none;
}
.screenshot-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.screenshot-slide img {
  height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
}
.screenshot-slide figcaption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #bedaf1;
  background: white;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}
.carousel-arrow:hover {
  background: var(--pale);
}
.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.carousel-arrow:focus-visible,
.screenshot-track:focus-visible {
  outline: 3px solid #176ba9;
  outline-offset: 3px;
}
#screenshot-status {
  font-size: 14px;
  min-width: 42px;
  text-align: center;
}
@media (max-width: 760px) {
  .core-section .one-tap {
    font-size: clamp(12px, 3.4vw, 16px);
    letter-spacing: -0.15px;
  }
  .screenshot-carousel {
    padding: 24px 18px;
  }
  .screenshot-slide img {
    height: 400px;
  }
  .hero h1 {
    font-size: 43px;
  }
}

/* Multi-card screenshot carousel */
.screenshot-carousel {
  position: relative;
  max-width: none;
  background: transparent;
  padding: 0;
}
.screenshot-track {
  gap: 24px;
  border-radius: 0;
  scroll-snap-type: x mandatory;
}
.screenshot-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}
.screenshot-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 9/16;
  object-fit: contain;
  border-radius: 16px;
}
.carousel-controls {
  margin-top: 32px;
  height: 14px;
  gap: 0;
}
.carousel-arrow {
  position: absolute;
  top: calc((100% - 46px) / 2);
  transform: translateY(-50%);
  z-index: 2;
  background: var(--ink);
  color: white;
  border: 0;
  box-shadow: 0 3px 12px #142e4530;
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: #275675;
}
.carousel-arrow:disabled {
  opacity: 0.4;
}
.carousel-arrow#screenshot-prev {
  left: 10px;
}
.carousel-arrow#screenshot-next {
  right: 10px;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.carousel-dot {
  border: 0;
  background: transparent;
  padding: 8px 0;
  width: 20px;
  cursor: pointer;
}
.carousel-dot:after {
  content: "";
  display: block;
  height: 5px;
  border-radius: 4px;
  background: #c4d3df;
}
.carousel-dot[aria-current="true"]:after {
  background: var(--main);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--main);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (max-width: 900px) and (min-width: 761px) {
  .screenshot-slide {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 760px) {
  .screenshot-carousel {
    padding: 0;
  }
  .screenshot-track {
    gap: 16px;
  }
  .screenshot-slide {
    flex-basis: 86%;
  }
  .screenshot-slide img {
    height: auto;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
  }
  .carousel-controls {
    margin-top: 25px;
  }
}

.screenshot-track:after {
  content: "";
  flex: 0 0 calc((100% - 48px) * 2 / 3 + 24px);
}
@media (max-width: 900px) and (min-width: 761px) {
  .screenshot-track:after {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 760px) {
  .screenshot-track:after {
    flex-basis: calc(14% - 16px);
  }
}

.header .button.small {
  color: #fff;
}

/* Rounded CTAs, balanced hero and mobile carousel */
.button,
.button.small {
  border-radius: 999px;
}
.hero-visual {
  border-radius: 32px;
  padding: 26px 30px;
}
.product-image {
  max-width: 300px;
  border-radius: 22px;
  box-shadow: 0 16px 36px #184d7829;
}
.hero-bottom {
  max-width: 420px;
}
.screenshot-track {
  position: relative;
  min-width: 0;
  align-items: flex-start;
  overscroll-behavior-x: contain;
}
.screenshot-track:after {
  display: none;
}
.screenshot-slide {
  align-self: flex-start;
}
.screenshot-carousel {
  min-width: 0;
  width: 100%;
}
.carousel-controls {
  height: auto;
  min-height: 44px;
}
.carousel-dots {
  flex-wrap: wrap;
  justify-content: center;
}
.carousel-dot {
  min-height: 36px;
}
@media (max-width: 760px) {
  .hero-visual {
    padding: 22px;
    border-radius: 26px;
  }
  .product-image {
    max-width: 270px;
  }
  .showcase {
    padding-left: 20px;
    padding-right: 20px;
  }
  .showcase-heading h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .screenshot-track {
    gap: 16px;
  }
  .screenshot-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .screenshot-slide img {
    width: 100%;
    height: auto;
    max-height: 70svh;
    object-fit: contain;
    border-radius: 18px;
  }
  .carousel-controls {
    position: relative;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
  }
  .carousel-arrow {
    position: static;
    transform: none;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .carousel-dots {
    flex: 1;
    gap: 5px;
  }
  .carousel-dot {
    width: 16px;
  }
  .hero-actions .button {
    font-size: 16px;
    padding: 16px 23px;
  }
}

/* Editorial hero without the promotional screenshot */
.hero {
  display: block;
  text-align: center;
  padding-top: 84px;
  padding-bottom: 70px;
  position: relative;
}
.hero-copy {
  max-width: 900px;
  margin: auto;
}
.hero .eyebrow {
  justify-content: center;
  color: #42627c;
  letter-spacing: 2px;
}
.hero .tiny-line {
  display: none;
}
.hero h1 {
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -3px;
  margin: 28px 0 24px;
  font-weight: 700;
}
.hero h1 span {
  color: var(--main);
}
.hero p.intro {
  max-width: 530px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 32px;
}
.hero-actions .button {
  padding: 18px 30px;
  box-shadow: 0 8px 22px #2597f524;
}
.hero-bottom {
  justify-content: center;
  max-width: none;
  border: 0;
  margin-top: 30px;
  padding-top: 0;
  gap: 10px;
  text-align: left;
}
.hero-bottom img {
  width: 32px;
  height: 32px;
}
.hero-bottom p {
  font-size: 12px;
}
.hero-bottom strong {
  font-weight: 500;
}
.hero-bottom span {
  color: var(--muted);
}
@media (max-width: 760px) {
  .hero {
    padding-top: 52px;
    padding-bottom: 46px;
  }
  .hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    margin: 22px 0;
  }
  .hero p.intro {
    font-size: 16px;
    max-width: 360px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.6px;
  }
  .hero-actions .button {
    font-size: 16px;
    padding: 16px 24px;
  }
  .hero-bottom {
    margin-top: 24px;
  }
  .hero-actions {
    margin-top: 26px;
  }
}

/* Consistent centering and tablet layout */
.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.hero h1 {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .hero-line {
  display: block;
  color: var(--ink);
}
.hero h1 .hero-accent {
  color: var(--main);
}
.hero .intro {
  width: 100%;
  text-align: center;
}
.hero-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-bottom {
  align-self: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.header nav a,
.header .button {
  white-space: nowrap;
}
.header nav {
  gap: 24px;
}
.feature-card {
  display: flex;
  flex-direction: column;
}
.feature-card .note-example,
.feature-card .palette-example {
  margin-top: auto;
}
.feature-card > p {
  margin-bottom: 28px;
}
@media (min-width: 761px) and (max-width: 1000px) {
  .header {
    flex-wrap: wrap;
    gap: 18px;
  }
  .header nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
  }
  .core-grid {
    grid-template-columns: 1fr;
  }
  .core-card {
    grid-template-columns: 1fr 190px;
    gap: 32px;
  }
  .core-card img {
    width: 190px;
  }
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards {
    gap: 16px;
  }
  .feature-card {
    padding-left: 16px;
    padding-right: 16px;
  }
  .feature-card h3 {
    font-size: 20px;
  }
  .note-example {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section-heading {
    flex-wrap: wrap;
  }
  .section-heading > p {
    max-width: 100%;
  }
}
@media (max-width: 760px) {
  .hero-bottom {
    max-width: 100%;
    text-align: left;
  }
  .feature-card > p {
    margin-bottom: 24px;
  }
  .feature-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 12px;
  }
  .feature-strip .asterisk {
    display: none;
  }
}

