/* AgendaStudio — espaço para o talento, clareza para a rotina. */
:root {
  --paper: #f7f8f5;
  --ink: #252832;
  --muted: #626874;
  --purple: #5146a5;
  --purple-dark: #403780;
  --plum: #20232e;
  --lavender: #e6e8f0;
  --lime: #d4e68c;
  --line: #dfe2e6;
  --radius: 16px;
  --width: 1240px;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--lime);
  color: var(--plum);
}
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
.journey :focus-visible,
.closing :focus-visible {
  outline-color: var(--lime);
}
.container {
  width: min(var(--width), calc(100% - 96px));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  background: var(--plum);
  color: white;
  border-radius: 8px;
  padding: 12px 18px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #f7f8f5f2;
  border-bottom: 1px solid #dfe2e6;
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -1.1px;
  line-height: 1;
}
.brand-mark {
  display: grid;
  place-items: center;
  background: var(--purple);
  color: white;
  width: 37px;
  height: 39px;
  border-radius: 11px;
  transform: none;
}
.brand-mark .icon {
  width: 23px;
  height: 23px;
}
.brand-accent,
.brand-dot {
  color: var(--purple);
}
.brand-accent {
  font-weight: 450;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 28px;
  margin-left: 40px;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav a {
  font-size: 13px;
  font-weight: 550;
}
.nav-links a,
.login-link {
  transition: color 0.2s;
}
.nav-links a:hover,
.login-link:hover {
  color: var(--purple);
}
.login-link {
  display: flex;
  align-items: center;
  gap: 7px;
}
.login-link .icon {
  width: 15px;
  height: 15px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-height: 56px;
  padding: 16px 23px;
  background: var(--purple);
  color: white;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button .icon {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.button:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px #3a225b18;
}
.button:hover .icon {
  transform: translateX(3px);
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  gap: 18px;
}
.button-outline {
  background: transparent;
  color: var(--purple);
  border-color: #b9bcd2;
}
.button-outline:hover {
  background: var(--lavender);
}
.menu-toggle {
  display: none;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--purple);
  line-height: 1.5;
  margin-bottom: 21px;
}
.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
h1,
h2,
h3 {
  font-weight: 650;
}
h1,
h2 {
  letter-spacing: -2.4px;
  line-height: 1.1;
}
em {
  font-family: inherit;
  font-style: normal;
  font-weight: 650;
  color: var(--purple);
  font-size: 1em;
  line-height: inherit;
}
h2 {
  font-size: clamp(36px, 3.7vw, 48px);
}
.hero {
  overflow: clip;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 69px;
  padding-bottom: 65px;
  min-height: 720px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 4px;
  min-width: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  background: #ececf2;
  border: 1px solid #dddfe8;
  padding: 7px 11px;
  border-radius: 5px;
  font-size: 9px;
  letter-spacing: 1.35px;
  margin-bottom: 27px;
}
h1 {
  font-size: clamp(43px, 4.55vw, 62px);
  letter-spacing: -2.8px;
  line-height: 1.1;
}
h1 em {
  display: inline-block;
  white-space: nowrap;
  line-height: 1.1;
}
.hero-description {
  font-size: 17px;
  font-weight: 550;
  line-height: 1.6;
  margin-top: 26px;
  letter-spacing: -0.2px;
}
.hero-explanation {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 365px;
  margin-top: 10px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 29px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.text-link:hover {
  color: var(--purple);
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.play-icon {
  width: 25px;
  height: 25px;
  border: 1px solid #c4c8d2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8px;
  padding-left: 2px;
}
.trial-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}
.trial-note > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trial-note .icon {
  width: 13px;
  height: 13px;
  color: var(--purple);
}
.hero-art {
  position: relative;
  height: 572px;
  min-width: 0;
}
.hero-arch {
  position: absolute;
  width: 87%;
  height: 85%;
  right: -8px;
  top: 14px;
  border-radius: 28px;
  background: #e4e8ef;
}
.hero-orbit {
  position: absolute;
  width: 94%;
  height: 83%;
  right: -17px;
  top: 37px;
  border: 1px solid #c5cbd8;
  border-radius: 28px;
  transform: rotate(-7deg);
}
.studio-photo {
  position: absolute;
  left: 4px;
  top: 98px;
  width: 47%;
  height: 335px;
  border: 7px solid var(--paper);
  border-radius: 17px;
  overflow: hidden;
  transform: rotate(-4deg);
  box-shadow: 0 18px 40px #2b173514;
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
}
.studio-photo:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #211a26ad);
}
.photo-caption {
  position: absolute;
  bottom: 22px;
  left: 20px;
  z-index: 1;
  color: white;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.phone {
  --phone-width: 244px;
  position: relative;
  width: var(--phone-width);
  padding: 8px 7px 9px;
  border: 2px solid #b0a7b4;
  border-radius: 37px;
  background: #29252e;
  box-shadow:
    inset 0 0 0 1px #6e6576,
    0 25px 45px -20px #160b3866;
}
.phone:after {
  content: "";
  position: absolute;
  right: -4px;
  top: 117px;
  width: 3px;
  height: 35px;
  border-radius: 0 2px 2px 0;
  background: #796f7e;
}
.phone-screen {
  border-radius: 27px;
  overflow: hidden;
  background: #fff;
}
.phone-screen img {
  width: 100%;
  height: auto;
}
.phone-camera {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 13px;
  background: #29252e;
  border-radius: 20px;
}
.hero-phone {
  --phone-width: 244px;
  position: absolute;
  right: 30px;
  top: 23px;
  transform: rotate(7deg);
}
.hero-link-tag {
  position: absolute;
  z-index: 4;
  left: 6px;
  top: 67px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffffff5;
  border: 1px solid #f1edf5;
  box-shadow: 0 10px 30px #291d3a0d;
  padding: 12px 15px;
  border-radius: 11px;
  transform: rotate(-5deg);
  font-size: 12px;
  font-weight: 600;
}
.mini-icon {
  display: grid;
  place-items: center;
  background: #ececf4;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: var(--purple);
}
.mini-icon .icon {
  width: 17px;
  height: 17px;
}
.hero-link-tag small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.booking-note {
  position: absolute;
  z-index: 5;
  bottom: 52px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid #eee8f1;
  border-radius: 12px;
  padding: 17px 18px;
  box-shadow: 0 10px 35px #2c173912;
  transform: rotate(-3deg);
  width: 330px;
}
.booking-check {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: #51652c;
  flex-shrink: 0;
}
.booking-check .icon {
  width: 20px;
  height: 20px;
}
.booking-note strong {
  display: block;
  font-size: 12px;
  font-weight: 650;
}
.booking-note div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.art-footnote {
  position: absolute;
  bottom: 4px;
  right: 25px;
  font-size: 11px;
  letter-spacing: 0.1px;
  color: var(--muted);
}
.art-footnote > span {
  font-size: 27px;
  color: var(--purple);
  margin-right: 8px;
  vertical-align: -3px;
}
.benefit-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  padding: 27px 0;
  gap: 20px;
}
.benefit-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}
.benefit-strip li:first-child {
  justify-content: flex-start;
}
.benefit-strip li:last-child {
  border: 0;
}
.benefit-strip .icon {
  color: var(--purple);
  width: 23px;
  height: 23px;
}
.benefit-strip span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.benefit-strip strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 550;
}
.section {
  padding-block: 104px;
}
.section-heading {
  margin-bottom: 40px;
}
.heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.section-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 350px;
}
.heading-split > .section-description {
  padding-bottom: 5px;
}
.audiences {
  padding-bottom: 82px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.audience-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 13px;
  min-width: 0;
  height: 305px;
  background: var(--plum);
  color: white;
}
.audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.audience-card:nth-child(1) img {
  object-position: center 52%;
}
.audience-card:nth-child(2) img {
  object-position: 55% center;
}
.audience-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#1e142c3b 0%, transparent 35%, #1d1529df 100%);
}
.audience-card:hover img {
  transform: scale(1.055);
}
.audience-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  font-size: 8px;
  font-weight: 550;
  letter-spacing: 1.2px;
  border: 1px solid #ffffff70;
  background: #18131b1f;
  backdrop-filter: blur(8px);
  padding: 5px 8px;
  border-radius: 4px;
}
.audience-caption {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 20px;
  right: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.audience-caption strong {
  display: block;
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.6px;
  line-height: 1.3;
}
.audience-caption > span > span {
  display: block;
  font-size: 10px;
  color: #e2dce7;
  margin-top: 7px;
}
.circle-arrow {
  display: grid;
  place-items: center;
  border: 1px solid #ffffff65;
  border-radius: 50%;
  height: 31px;
  width: 31px;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.circle-arrow .icon {
  height: 16px;
  width: 16px;
}
.audience-card:hover .circle-arrow {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--plum);
}
.examples-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 23px;
}
.examples-note .status-dot {
  width: 5px;
  height: 5px;
  color: var(--purple);
}
.journey {
  background: var(--plum);
  color: #fff;
  padding-block: 86px;
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.journey-copy {
  min-width: 0;
}
.journey .eyebrow {
  color: var(--lime);
}
.journey h2 {
  font-size: 46px;
}
.journey h2 em {
  color: #c4c0f1;
}
.journey .section-description {
  color: #bcc2cf;
  margin-top: 23px;
  font-size: 14px;
}
.journey-tabs {
  margin-top: 29px;
}
.journey-tab {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  background: transparent;
  border: 0;
  border-top: 1px solid #ffffff19;
  color: #d1d5df;
  text-align: left;
  padding: 16px 3px;
  transition: color 0.2s;
}
.journey-tab:last-child {
  border-bottom: 1px solid #ffffff19;
}
.step-index {
  font-size: 11px;
  line-height: 25px;
  color: #a3aabb;
  width: 20px;
  flex-shrink: 0;
}
.step-copy {
  flex: 1;
}
.step-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.step-copy > span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: #bcc2cf;
  max-width: 330px;
}
.is-enhanced .journey-tab[aria-selected="false"] .step-copy > span {
  display: none;
}
.journey-tab > .icon {
  width: 18px;
  height: 18px;
  opacity: 0;
  align-self: flex-start;
  margin-top: 3px;
}
.journey-tab[aria-selected="true"] {
  color: var(--lime);
  padding-block: 19px;
}
.journey-tab[aria-selected="true"] .step-index {
  color: var(--lime);
}
.journey-tab[aria-selected="true"] > .icon {
  opacity: 1;
}
.journey-tab:hover {
  color: white;
}
.journey-showcase {
  position: relative;
  isolation: isolate;
  border-radius: 22px;
  background: #2d3241;
  min-height: 659px;
  padding: 25px 30px 24px;
  text-align: center;
  min-width: 0;
}
.journey-showcase:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16px;
  border: 1px solid #ffffff12;
  border-radius: inherit;
}
.showcase-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #cbd1dd;
  margin-bottom: 22px;
}
.showcase-label .status-dot {
  color: var(--lime);
  width: 5px;
  height: 5px;
}
.showcase-number {
  position: absolute;
  z-index: -1;
  left: 14px;
  top: 135px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 190px;
  line-height: 1;
  color: #ffffff09;
  letter-spacing: -9px;
}
.journey-panel .phone {
  --phone-width: 236px;
  margin: 0 auto;
  transform: rotate(3deg);
}
.journey-panel > p {
  font-size: 12px;
  line-height: 1.65;
  color: #d5d9e2;
  margin-top: 24px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ebeef2;
  padding: 34px;
  min-width: 0;
}
.feature-card h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.9px;
  margin-top: 21px;
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 14px;
  max-width: 330px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #cdd0e0;
  border-radius: 11px;
  color: var(--purple);
}
.feature-icon .icon {
  width: 22px;
  height: 22px;
}
.feature-agenda {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  padding-right: 0;
  min-height: 348px;
  background: #e9ecf1;
}
.feature-agenda .feature-copy {
  position: relative;
  z-index: 1;
}
.feature-agenda h3 {
  font-size: 25px;
}
.feature-tag {
  display: block;
  margin-top: 26px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 1.2px;
  color: var(--purple);
}
.agenda-preview {
  position: relative;
  background: white;
  border: 1px solid #d3d8e1;
  border-radius: 13px 0 0 0;
  transform: rotate(-5deg) translateY(19px);
  transform-origin: bottom right;
  margin-bottom: -63px;
  box-shadow: -8px 12px 24px #291d3a0c;
  overflow: hidden;
  align-self: stretch;
  min-width: 0;
  max-height: 355px;
}
.preview-bar {
  height: 34px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border-bottom: 1px solid #e9ebef;
}
.preview-bar > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cdd2de;
}
.preview-bar small {
  font-size: 7px;
  margin-left: 6px;
  color: var(--muted);
}
.agenda-preview > img {
  width: 100%;
  max-width: none;
}
.feature-payment {
  grid-column: span 5;
  background: #eef0e6;
}
.feature-payment .feature-icon {
  border-color: #d4d7bb;
  color: #647140;
}
.payment-options {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.payment-options > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #dfe0d5;
  border-radius: 8px;
  background: #ffffff9c;
  font-size: 12px;
  padding: 10px 13px;
}
.payment-options .icon {
  width: 16px;
  height: 16px;
  color: #667247;
}
.payment-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666b55;
  font-size: 11px;
  margin-top: 16px;
}
.payment-footnote .icon {
  width: 12px;
  height: 12px;
}
.feature-finance {
  grid-column: span 5;
  min-height: 330px;
  background: #eceef1;
  display: flex;
  gap: 10px;
  padding-right: 0;
}
.feature-finance .feature-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.feature-finance h3 {
  font-size: 25px;
}
.feature-finance p {
  max-width: 215px;
}
.finance-preview {
  width: 155px;
  align-self: flex-end;
  flex-shrink: 0;
  transform: rotate(8deg) translate(10px, 25px);
  background: #fff;
  border: 5px solid #fff;
  outline: 1px solid #dbe0e6;
  border-radius: 16px;
  box-shadow: 0 10px 20px #3017440a;
  overflow: hidden;
  height: 247px;
  margin-bottom: -35px;
}
.finance-preview img {
  width: 100%;
}
.feature-discovery {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 15px;
  background: #edf0ed;
}
.feature-discovery h3 {
  font-size: 25px;
}
.feature-discovery .text-link {
  margin-top: 23px;
  color: var(--purple);
  font-size: 11px;
}
.discovery-art {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 270px;
}
.map-ring {
  position: absolute;
  top: 48%;
  left: 50%;
  border: 1px solid #cfd5d9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-one {
  width: 88px;
  height: 88px;
}
.ring-two {
  width: 160px;
  height: 160px;
}
.ring-three {
  width: 235px;
  height: 235px;
}
.map-marker {
  position: absolute;
  top: calc(48% - 29px);
  left: calc(50% - 24px);
  display: grid;
  place-items: center;
  width: 48px;
  height: 56px;
  background: var(--purple);
  color: #fff;
  border-radius: 24px 24px 24px 4px;
  transform: rotate(-20deg);
  box-shadow: 0 10px 25px #6641b531;
}
.map-marker .icon {
  transform: rotate(20deg);
  width: 25px;
  height: 25px;
}
.map-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #a0a7c7;
  border: 3px solid #edf0ed;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #b5bdd0;
}
.point-one {
  top: 23%;
  left: 20%;
}
.point-two {
  top: 61%;
  right: 10%;
}
.map-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  width: 185px;
  text-align: center;
  line-height: 1.5;
  font-size: 10px;
  color: var(--muted);
  box-shadow: 0 7px 20px #2c183709;
}
.map-label strong {
  font-weight: 550;
  color: var(--ink);
}
.getting-started {
  padding-top: 13px;
  padding-bottom: 85px;
}
.start-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.start-heading .button {
  margin-bottom: 5px;
}
.start-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  list-style: none;
  margin-top: 44px;
}
.start-steps li {
  border-top: 1px solid #d2d7dd;
  padding-top: 21px;
}
.start-step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
  color: var(--purple);
}
.start-step-top > span {
  font-family: var(--sans);
  font-weight: 650;
  font-size: 36px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.start-step-top .icon {
  width: 23px;
  height: 23px;
  opacity: 0.8;
}
.start-steps h3 {
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.4px;
}
.start-steps p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 11px;
  max-width: 320px;
}
.faq {
  background: #eceeea;
  padding-block: 82px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 100px;
}
.faq-heading .section-description {
  margin-top: 24px;
  max-width: 270px;
}
.faq-list {
  border-top: 1px solid #d4d9d6;
}
.faq-list details {
  border-bottom: 1px solid #d4d9d6;
}
.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 23px 0;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple);
}
.faq-plus:before,
.faq-plus:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s;
}
.faq-plus:after {
  transform: rotate(90deg);
}
details[open] .faq-plus:after {
  transform: rotate(0);
}
.faq-list details[open] summary {
  color: var(--purple);
}
.faq-list details > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: -7px;
  padding: 0 35px 23px 0;
}
.closing {
  padding-top: 78px;
}
.closing-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 26px;
  background: var(--plum);
  color: white;
  text-align: center;
  padding: 59px 45px;
}
.closing .eyebrow {
  color: var(--lime);
  font-size: 9px;
  margin-bottom: 20px;
}
.closing h2 {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -1.7px;
}
.closing h2 em {
  color: #c3bff0;
}
.closing-card > p:not(.eyebrow) {
  font-size: 13px;
  color: #c3c8d4;
  margin-top: 22px;
}
.button-lime {
  background: var(--lime);
  color: var(--plum);
  margin-top: 27px;
}
.button-lime:hover {
  background: #e8f4b6;
}
.closing-note {
  display: block;
  color: #b7becd;
  font-size: 10px;
  margin-top: 16px;
}
.site-footer {
  padding-top: 57px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding-bottom: 34px;
}
.footer-main > div > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}
.footer-main nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-main nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--purple);
}
.footer-main nav .icon {
  width: 14px;
  height: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 21px;
}
.footer-bottom small,
.footer-bottom > a {
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > a > span {
  margin-left: 5px;
}

@media (min-width: 1450px) {
  .hero-inner {
    padding-block: 83px 77px;
    gap: 50px;
  }
  .hero-art {
    height: 595px;
  }
  .hero-phone {
    --phone-width: 257px;
    right: 38px;
  }
  .studio-photo {
    height: 350px;
    top: 106px;
  }
  .booking-note {
    bottom: 46px;
    left: 48px;
  }
  .hero-actions {
    gap: 23px;
  }
  .hero-art .art-footnote {
    bottom: 0;
  }
  .hero h1 {
    font-size: 67px;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 25px;
  }
  .primary-nav {
    margin-left: 10px;
    gap: 20px;
  }
  .nav-links,
  .nav-actions {
    gap: 20px;
  }
  .hero-inner {
    gap: 18px;
    min-height: 675px;
    padding-block: 50px;
  }
  .hero-art {
    height: 530px;
  }
  .hero-phone {
    --phone-width: 220px;
    right: 13px;
    top: 34px;
  }
  .studio-photo {
    left: 0;
    top: 116px;
    height: 290px;
  }
  .hero-link-tag {
    left: 0;
    top: 63px;
  }
  .booking-note {
    left: 5px;
    bottom: 41px;
    width: 307px;
    padding: 15px;
  }
  .art-footnote {
    right: 0;
    font-size: 10px;
  }
  .hero-arch {
    top: 40px;
    height: 79%;
    right: -5px;
  }
  .hero-orbit {
    top: 61px;
    height: 74%;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding-inline: 17px;
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .audience-grid {
    gap: 14px;
  }
  .audience-caption {
    left: 15px;
    right: 12px;
  }
  .audience-caption strong {
    font-size: 17px;
  }
  .audience-caption > span > span {
    font-size: 9px;
  }
  .audience-label {
    left: 15px;
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .audience-card {
    height: 280px;
  }
  .journey-grid {
    gap: 65px;
  }
  .journey h2 {
    font-size: 42px;
  }
  .feature-card {
    padding: 28px;
  }
  .feature-agenda {
    padding-right: 0;
  }
  .feature-finance {
    padding-right: 0;
  }
  .feature-card h3 {
    font-size: 23px;
  }
  .feature-finance .finance-preview {
    width: 125px;
    height: 220px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .feature-discovery {
    gap: 9px;
  }
  .map-label {
    width: 170px;
  }
  .faq-grid {
    gap: 60px;
  }
}
@media (max-width: 1000px) and (min-width: 901px) {
  .brand {
    font-size: 20px;
  }
  .brand-mark {
    width: 33px;
    height: 35px;
  }
  .nav-links,
  .nav-actions {
    gap: 15px;
  }
  .primary-nav {
    margin-left: 0;
  }
  .primary-nav a {
    font-size: 12px;
  }
  .button-small {
    padding-inline: 13px;
    gap: 12px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-phone {
    --phone-width: 204px;
  }
  .hero-art {
    height: 495px;
  }
  .booking-note {
    bottom: 31px;
  }
  .studio-photo {
    height: 265px;
    width: 48%;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .hero-art .hero-link-tag {
    font-size: 11px;
    padding: 10px;
  }
  .hero-art .hero-link-tag small {
    font-size: 9px;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand {
    font-size: 21px;
  }
  .brand-mark {
    width: 33px;
    height: 35px;
  }
  .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .is-enhanced .menu-toggle {
    display: flex;
  }
  .menu-toggle > span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-open .menu-toggle > span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-open .menu-toggle > span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .primary-nav {
    flex-basis: 100%;
    margin: 0;
    padding: 20px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    border-top: 1px solid var(--line);
  }
  .is-enhanced .primary-nav {
    display: none;
  }
  .is-enhanced .menu-open .primary-nav {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links a {
    padding: 12px 0;
    font-size: 15px;
  }
  .nav-actions {
    justify-content: space-between;
  }
  .nav-actions .button {
    font-size: 14px;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-block: 47px;
    min-height: 600px;
  }
  .hero h1 {
    font-size: clamp(34px, 4.9vw, 44px);
    letter-spacing: -1.8px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 22px;
  }
  .hero-explanation {
    font-size: 13px;
    max-width: 310px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 23px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 22px;
  }
  .trial-note {
    font-size: 10px;
    gap: 12px;
  }
  .hero-art {
    height: 470px;
  }
  .hero-phone {
    --phone-width: 196px;
    right: 7px;
    top: 35px;
  }
  .studio-photo {
    height: 250px;
    top: 110px;
    width: 49%;
    left: -2px;
    border-width: 5px;
  }
  .photo-caption {
    font-size: 23px;
    left: 14px;
    bottom: 20px;
  }
  .hero-link-tag {
    left: 0;
    top: 62px;
    gap: 7px;
    font-size: 10px;
    padding: 9px;
    border-radius: 9px;
  }
  .hero-link-tag small {
    font-size: 8px;
  }
  .mini-icon {
    width: 28px;
    height: 28px;
  }
  .mini-icon .icon {
    width: 14px;
    height: 14px;
  }
  .booking-note {
    width: 280px;
    gap: 9px;
    left: 0;
    bottom: 27px;
    padding: 13px;
  }
  .booking-note strong {
    font-size: 10px;
  }
  .booking-note div > span {
    font-size: 9px;
  }
  .booking-check {
    width: 32px;
    height: 32px;
  }
  .art-footnote {
    font-size: 9px;
    right: 0;
    bottom: -3px;
  }
  .art-footnote > span {
    font-size: 23px;
    margin-right: 3px;
  }
  .benefit-strip {
    gap: 14px;
    padding-block: 23px;
  }
  .benefit-strip li {
    gap: 10px;
  }
  .benefit-strip .icon {
    width: 20px;
    height: 20px;
  }
  .benefit-strip span {
    font-size: 10px;
  }
  .benefit-strip strong {
    font-size: 11px;
  }
  .section {
    padding-block: 76px;
  }
  .heading-split {
    gap: 30px;
  }
  .section-description {
    max-width: 280px;
    font-size: 13px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.7px;
  }
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .audience-card {
    height: 310px;
  }
  .audience-caption {
    left: 22px;
    right: 20px;
  }
  .audience-caption strong {
    font-size: 22px;
  }
  .audience-caption > span > span {
    font-size: 11px;
  }
  .audience-label {
    font-size: 9px;
    left: 22px;
    top: 20px;
  }
  .journey-grid {
    gap: 30px;
  }
  .journey h2 {
    font-size: 36px;
  }
  .journey .section-description {
    font-size: 13px;
  }
  .journey-showcase {
    padding-inline: 15px;
    min-height: 600px;
  }
  .journey-panel .phone {
    --phone-width: 215px;
  }
  .step-copy strong {
    font-size: 14px;
  }
  .journey-tab {
    gap: 12px;
  }
  .step-copy > span {
    font-size: 11px;
  }
  .showcase-label {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .journey-panel > p {
    font-size: 11px;
  }
  .feature-card {
    padding: 25px;
  }
  .feature-agenda {
    grid-template-columns: 1fr;
    padding-right: 25px;
    min-height: 420px;
  }
  .feature-agenda .feature-copy {
    max-width: 235px;
  }
  .feature-agenda .feature-tag {
    display: none;
  }
  .agenda-preview {
    position: absolute;
    right: -35px;
    bottom: -80px;
    width: 195px;
    height: 230px;
    opacity: 0.75;
    transform: rotate(-7deg);
  }
  .feature-agenda p {
    max-width: 200px;
  }
  .feature-payment h3 {
    font-size: 24px;
  }
  .feature-payment .payment-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 22px;
  }
  .feature-payment .payment-options > span {
    font-size: 11px;
    padding: 7px 12px;
  }
  .payment-footnote {
    font-size: 9px;
    align-items: flex-start;
  }
  .payment-footnote .icon {
    margin-top: 3px;
  }
  .feature-finance {
    min-height: 400px;
    flex-direction: column;
    padding-right: 25px;
  }
  .feature-finance .feature-copy {
    max-width: 220px;
  }
  .feature-finance .finance-preview {
    position: absolute;
    right: 6px;
    bottom: -85px;
    width: 155px;
    height: 240px;
    opacity: 0.75;
  }
  .feature-finance p {
    max-width: 200px;
  }
  .feature-discovery {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-discovery p {
    max-width: 310px;
  }
  .discovery-art {
    min-height: 150px;
    position: absolute;
    right: 15px;
    bottom: 16px;
    width: 160px;
  }
  .ring-three {
    width: 160px;
    height: 160px;
  }
  .ring-two {
    width: 115px;
    height: 115px;
  }
  .ring-one {
    width: 66px;
    height: 66px;
  }
  .map-label {
    width: 150px;
    font-size: 9px;
    bottom: -5px;
    padding: 7px 10px;
  }
  .map-marker {
    width: 37px;
    height: 43px;
    top: calc(48% - 22px);
    left: calc(50% - 19px);
  }
  .map-marker .icon {
    width: 21px;
    height: 21px;
  }
  .feature-discovery .feature-copy {
    z-index: 1;
  }
  .getting-started {
    padding-top: 0;
  }
  .start-steps {
    gap: 28px;
  }
  .start-steps h3 {
    font-size: 17px;
  }
  .start-steps p {
    font-size: 12px;
  }
  .start-heading .button {
    font-size: 12px;
    min-height: 48px;
    padding-inline: 16px;
  }
  .faq-grid {
    gap: 45px;
    grid-template-columns: 1fr 1.2fr;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details > p {
    font-size: 12px;
    padding-right: 20px;
  }
  .closing {
    padding-top: 65px;
  }
  .closing h2 {
    font-size: 42px;
  }
  .footer-main nav {
    gap: 22px;
  }
  .footer-main nav a {
    font-size: 11px;
  }
  .footer-bottom {
    gap: 20px;
  }
  .footer-bottom small,
  .footer-bottom > a {
    font-size: 9px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 94px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 72px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 37px;
    padding-bottom: 28px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(36px, 8.7vw, 56px);
    letter-spacing: -1.8px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1.15px;
    margin-bottom: 23px;
    padding: 6px 9px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.65;
    margin-top: 24px;
  }
  .hero-explanation {
    max-width: 385px;
    font-size: 13px;
    margin-top: 9px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 17px;
    margin-top: 25px;
  }
  .hero-actions .button {
    min-height: 53px;
    font-size: 13px;
    gap: 20px;
    padding-inline: 19px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .trial-note {
    font-size: 10px;
    gap: 16px;
    margin-top: 17px;
  }
  .hero-art {
    width: 100%;
    max-width: 460px;
    justify-self: center;
    height: 480px;
    margin-top: 7px;
  }
  .hero-arch {
    top: 17px;
    height: 83%;
    width: 86%;
    right: 4px;
  }
  .hero-orbit {
    top: 35px;
    right: 0;
    width: 94%;
    height: 78%;
  }
  .hero-phone {
    --phone-width: 205px;
    right: 28px;
    top: 10px;
  }
  .studio-photo {
    width: 47%;
    height: 280px;
    left: 9px;
    top: 100px;
    border-width: 6px;
  }
  .photo-caption {
    font-size: 25px;
  }
  .hero-link-tag {
    left: 8px;
    top: 56px;
    padding: 11px;
    font-size: 11px;
  }
  .hero-link-tag small {
    font-size: 9px;
  }
  .booking-note {
    left: 21px;
    bottom: 29px;
    width: 295px;
    padding: 15px;
  }
  .booking-note strong {
    font-size: 11px;
  }
  .booking-note div > span {
    font-size: 9px;
  }
  .booking-check {
    width: 34px;
    height: 34px;
  }
  .art-footnote {
    bottom: -3px;
    right: 19px;
    font-size: 10px;
  }
  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 13px;
    padding-block: 25px;
  }
  .benefit-strip li {
    justify-content: flex-start;
    gap: 12px;
    border: 0;
  }
  .benefit-strip li:nth-child(even) {
    padding-left: 8px;
  }
  .benefit-strip span {
    font-size: 10px;
  }
  .benefit-strip strong {
    font-size: 11px;
  }
  .benefit-strip .icon {
    width: 21px;
    height: 21px;
  }
  .section {
    padding-block: 63px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.7px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1.15px;
    margin-bottom: 23px;
  }
  .heading-split {
    display: block;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .heading-split > .section-description {
    margin-top: 22px;
    max-width: 350px;
    padding: 0;
  }
  .section-description {
    font-size: 13px;
  }
  .audience-grid {
    gap: 12px;
  }
  .audience-card {
    height: 240px;
    border-radius: 11px;
  }
  .audience-label {
    top: 13px;
    left: 12px;
    font-size: 6.5px;
    letter-spacing: 0.5px;
    padding: 4px 6px;
  }
  .audience-caption {
    bottom: 17px;
    left: 13px;
    right: 12px;
    align-items: flex-start;
  }
  .audience-caption strong {
    font-size: 17px;
    letter-spacing: -0.5px;
  }
  .audience-caption > span > span {
    font-size: 9px;
    max-width: 105px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .circle-arrow {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .circle-arrow .icon {
    width: 13px;
    height: 13px;
  }
  .examples-note {
    font-size: 9px;
    gap: 6px;
    margin-top: 20px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .journey h2 {
    font-size: 38px;
  }
  .journey .section-description {
    margin-top: 22px;
  }
  .journey-tabs {
    margin-top: 28px;
  }
  .journey-tab {
    padding: 16px 4px;
    gap: 15px;
  }
  .journey-tab[aria-selected="true"] {
    padding-block: 18px;
  }
  .step-copy strong {
    font-size: 15px;
  }
  .step-copy > span {
    font-size: 12px;
    max-width: 290px;
  }
  .journey-showcase {
    width: 100%;
    max-width: 410px;
    margin: auto;
    min-height: 593px;
    padding: 22px 22px 25px;
    border-radius: 18px;
  }
  .showcase-label {
    font-size: 8px;
    margin-bottom: 18px;
  }
  .journey-panel .phone {
    --phone-width: 218px;
    transform: rotate(3deg);
  }
  .journey-panel > p {
    font-size: 11px;
    margin-top: 23px;
  }
  .showcase-number {
    left: 10px;
    top: 140px;
    font-size: 175px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    grid-column: auto;
    padding: 27px;
    border-radius: 19px;
  }
  .feature-card h3 {
    font-size: 27px;
    margin-top: 19px;
  }
  .feature-card p {
    font-size: 13px;
    max-width: 290px;
  }
  .feature-agenda {
    min-height: 375px;
    display: block;
  }
  .feature-agenda .feature-copy {
    max-width: 100%;
  }
  .feature-agenda p {
    max-width: 240px;
  }
  .agenda-preview {
    right: -13px;
    bottom: -25px;
    width: 175px;
    height: 220px;
    opacity: 0.6;
  }
  .feature-payment {
    padding-bottom: 28px;
  }
  .feature-payment .payment-options {
    flex-direction: row;
    gap: 8px;
    margin-top: 23px;
  }
  .feature-payment .payment-options > span {
    font-size: 12px;
    padding: 10px 13px;
  }
  .payment-footnote {
    font-size: 10px;
  }
  .feature-finance {
    min-height: 340px;
  }
  .feature-finance .feature-copy {
    max-width: 100%;
  }
  .feature-finance p {
    max-width: 205px;
  }
  .feature-finance .finance-preview {
    right: -12px;
    bottom: 6px;
    width: 146px;
    height: 221px;
    opacity: 0.85;
    transform: rotate(8deg) translate(10px, 25px);
  }
  .feature-discovery {
    min-height: 340px;
  }
  .feature-discovery p {
    max-width: 275px;
  }
  .feature-discovery .text-link {
    font-size: 11px;
    margin-top: 21px;
    position: relative;
    max-width: 160px;
  }
  .discovery-art {
    right: -5px;
    bottom: 7px;
    width: 142px;
    min-height: 126px;
    opacity: 0.8;
  }
  .map-label {
    width: 140px;
    font-size: 8px;
    bottom: -3px;
  }
  .ring-three {
    width: 150px;
    height: 150px;
  }
  .ring-two {
    width: 108px;
    height: 108px;
  }
  .ring-one {
    width: 62px;
    height: 62px;
  }
  .getting-started {
    padding-top: 5px;
  }
  .start-heading {
    display: block;
  }
  .start-heading .button {
    margin-top: 27px;
    margin-bottom: 0;
  }
  .start-steps {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 32px;
  }
  .start-steps li {
    display: grid;
    grid-template-columns: 43px 1fr;
    column-gap: 19px;
    padding-top: 23px;
  }
  .start-step-top {
    grid-row: 1 / 3;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 17px;
    margin: 0;
  }
  .start-step-top > span {
    font-size: 31px;
  }
  .start-step-top .icon {
    width: 19px;
    height: 19px;
  }
  .start-steps h3 {
    font-size: 19px;
    margin-top: 3px;
  }
  .start-steps p {
    font-size: 13px;
    margin-top: 8px;
    max-width: 100%;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .faq-heading {
    position: relative;
  }
  .faq-heading .section-description {
    margin-top: 20px;
    max-width: 265px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 21px;
  }
  .faq-list details > p {
    font-size: 12px;
    padding-bottom: 23px;
  }
  .closing {
    padding-top: 45px;
  }
  .closing .container {
    width: calc(100% - 24px);
  }
  .closing-card {
    padding: 47px 20px 41px;
    border-radius: 20px;
  }
  .closing h2 {
    font-size: clamp(30px, 7.3vw, 41px);
    letter-spacing: -1px;
  }
  .closing .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .closing-card > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 230px;
    margin: 21px auto 0;
  }
  .closing-card .button {
    font-size: 13px;
    margin-top: 23px;
  }
  .closing-note {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-main {
    display: block;
    padding-bottom: 27px;
  }
  .footer-main > div > p {
    font-size: 11px;
    margin-top: 15px;
  }
  .footer-main nav {
    margin-top: 27px;
    gap: 14px 20px;
    flex-wrap: wrap;
  }
  .footer-main nav a {
    font-size: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding-block: 20px 27px;
  }
  .footer-bottom small,
  .footer-bottom > a {
    font-size: 9px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 34px;
    letter-spacing: -1.6px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-art {
    height: 441px;
  }
  .hero-phone {
    --phone-width: 185px;
    right: 14px;
  }
  .studio-photo {
    height: 246px;
    top: 99px;
    left: 4px;
  }
  .hero-link-tag {
    left: 0;
    top: 62px;
    padding: 9px;
    font-size: 10px;
  }
  .hero-link-tag small {
    font-size: 8px;
  }
  .booking-note {
    left: 4px;
    width: 273px;
    padding: 12px;
    bottom: 25px;
  }
  .booking-note strong {
    font-size: 10px;
  }
  .booking-note div > span {
    font-size: 8px;
  }
  .art-footnote {
    font-size: 9px;
    right: 5px;
  }
  .photo-caption {
    font-size: 23px;
    left: 12px;
  }
  .benefit-strip {
    column-gap: 9px;
  }
  .benefit-strip li {
    gap: 8px;
  }
  .benefit-strip li:nth-child(even) {
    padding-left: 1px;
  }
  .benefit-strip span {
    font-size: 9px;
  }
  .benefit-strip strong {
    font-size: 10px;
  }
  h2 {
    font-size: 32px;
  }
  .audience-card {
    height: 220px;
  }
  .audience-label {
    font-size: 5.8px;
    letter-spacing: 0.25px;
    padding-inline: 5px;
    left: 10px;
  }
  .audience-caption {
    left: 11px;
    right: 11px;
  }
  .audience-caption strong {
    font-size: 15px;
  }
  .audience-caption > span > span {
    font-size: 8px;
    max-width: 89px;
  }
  .circle-arrow {
    width: 21px;
    height: 21px;
  }
  .journey h2 {
    font-size: 33px;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 24px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .feature-agenda p {
    max-width: 207px;
  }
  .feature-finance p {
    max-width: 170px;
  }
  .feature-finance .finance-preview {
    width: 129px;
    right: -20px;
    bottom: -5px;
  }
  .feature-discovery {
    min-height: 365px;
  }
  .feature-discovery .text-link {
    max-width: 145px;
  }
  .discovery-art {
    right: -17px;
  }
  .faq-heading .section-description {
    max-width: 235px;
  }
  .closing-card {
    padding-inline: 14px;
  }
  .closing h2 {
    font-size: 29px;
  }
  .closing-note {
    font-size: 8px;
  }
}
/* Give supporting visuals their own space on narrow layouts. */
@media (max-width: 900px) {
  .feature-agenda,
  .feature-finance {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .feature-agenda .feature-copy,
  .feature-finance .feature-copy {
    max-width: 100%;
    flex: 0 0 auto;
  }
  .feature-agenda p,
  .feature-finance p {
    max-width: 100%;
  }
  .feature-agenda .agenda-preview {
    position: relative;
    inset: auto;
    align-self: flex-end;
    flex: none;
    width: min(250px, 100%);
    height: 215px;
    margin: 24px -14px -56px 0;
    transform: rotate(-5deg);
    opacity: 1;
  }
  .feature-finance .finance-preview {
    position: relative;
    inset: auto;
    align-self: flex-end;
    flex: none;
    width: 165px;
    height: 215px;
    margin: 24px -4px -56px 0;
    transform: rotate(7deg);
    opacity: 1;
  }
  .feature-discovery .discovery-art {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 154px;
    margin-top: 20px;
    opacity: 1;
  }
  .feature-discovery .text-link {
    max-width: 100%;
  }
}
@media (max-width: 680px) {
  .audience-label {
    font-size: 8px;
    letter-spacing: 0.35px;
    background: #20232e90;
  }
  .audience-caption {
    padding-bottom: 26px;
  }
  .audience-caption > span > span {
    font-size: 11px;
    max-width: 100%;
    padding-right: 0;
  }
  .circle-arrow {
    bottom: 0;
  }
  .feature-card {
    min-height: 0;
  }
  .feature-agenda .agenda-preview {
    height: 195px;
    width: 220px;
    margin-bottom: -51px;
  }
  .feature-finance .finance-preview {
    height: 195px;
    width: 175px;
    margin-bottom: -51px;
  }
  .feature-finance .feature-copy {
    max-width: 100%;
  }
  .feature-discovery .discovery-art {
    min-height: 175px;
    margin-top: 26px;
  }
  .feature-discovery .map-label {
    font-size: 10px;
    width: 180px;
    bottom: 0;
  }
  .feature-discovery .ring-three {
    width: 185px;
    height: 185px;
  }
  .examples-note {
    font-size: 11px;
    align-items: flex-start;
    text-align: center;
  }
  .examples-note .status-dot {
    margin-top: 6px;
  }
}
@media (max-width: 370px) {
  .audience-label {
    display: none;
  }
  .audience-caption strong {
    font-size: 16px;
  }
  .audience-caption > span > span {
    font-size: 10px;
  }
  .feature-card h3 {
    font-size: 25px;
  }
}
/* Controls stay beside the preview; vertical page scrolling remains native. */
.journey-current,
.journey-controls,
.journey-swipe-hint {
  display: none;
}
.is-enhanced .journey-showcase {
  touch-action: pan-y pinch-zoom;
}
.is-enhanced .journey-current {
  display: block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
  min-height: 42px;
  max-width: 310px;
  margin: 0 auto 8px;
}
.is-enhanced .journey-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}
.journey-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  color: var(--lime);
  background: #ffffff08;
}
.journey-arrow:hover {
  background: #ffffff15;
}
.journey-arrow .icon {
  width: 19px;
  height: 19px;
}
.journey-previous .icon {
  transform: rotate(180deg);
}
.journey-dots {
  display: flex;
}
.journey-dots button {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 44px;
  border: 0;
  background: transparent;
}
.journey-dots span {
  width: 7px;
  height: 7px;
  border-radius: 20px;
  background: #a3aabb;
}
.journey-dots [aria-pressed="true"] span {
  width: 18px;
  background: var(--lime);
}
.is-enhanced .journey-swipe-hint {
  display: block;
  margin-top: 9px;
  color: #bcc2cf;
  font-size: 11px;
}
.journey-panel > p {
  min-height: 4.95em;
}
.is-enhanced .journey-panel img {
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 680px) {
  .is-enhanced .journey-tabs {
    display: none;
  }
  .is-enhanced .journey-current {
    min-height: 42px;
    font-size: 12px;
  }
  .journey-controls {
    gap: 4px;
  }
}
@media (max-width: 370px) {
  .is-enhanced .journey-controls {
    gap: 2px;
  }
  .journey-dots button {
    min-width: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
