.practice-strip {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 32px;
}
.practice-strip p {
  font-size: 0.75rem;
  line-height: 1.7;
}
.practice-strip p strong {
  color: var(--ink);
  font-weight: 600;
}
.practice-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.practice-strip svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.3;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.workflow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.step-top > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 650;
  flex-shrink: 0;
}
.step-line {
  height: 1px;
  background: var(--line);
  width: 100%;
}
.workflow h3 {
  margin-bottom: 15px;
  font-size: 1.32rem;
}
.workflow > li { display: flex; flex-direction: column; }
.workflow p { margin-bottom: 22px; }
.workflow p {
  font-size: 0.88rem;
  line-height: 1.85;
}
.step-foot {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 1100px) {
  .practice-strip > div {
    font-size: 0.73rem;
    gap: 8px;
  }
}
@media (max-width: 850px) {
  .practice-strip {
    flex-wrap: wrap;
    justify-content: start;
    gap: 24px;
  }
  .practice-strip > p {
    width: 100%;
  }
  .practice-strip > p br {
    display: none;
  }
  .practice-strip > div {
    font-size: 0.8rem;
    flex: 1;
  }
  .workflow {
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .practice-strip {
    padding-block: 22px;
    gap: 18px;
  }
  .practice-strip > p {
    font-size: 0.78rem;
  }
  .practice-strip > div {
    font-size: 0.67rem;
    gap: 6px;
    flex: auto;
  }
  .practice-strip svg {
    width: 19px;
    height: 19px;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step-top {
    margin-bottom: 16px;
  }
  .step-foot {
    margin-top: 0;
  }
  .workflow p { margin-bottom: 14px; }
  .workflow p {
    max-width: 49ch;
  }
}

.product-section {
  background: linear-gradient(var(--surface), var(--bg));
  border-top: 1px solid var(--line);
}
.product-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  gap: 36px;
  margin-bottom: 44px;
}
.product-tabs button {
  padding: 15px 0 20px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  font-weight: 650;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: -1px;
}
.product-tabs button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.product-tabs button:hover {
  color: var(--accent);
}
.tour-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
  min-height: 485px;
}
.tour-copy h3 {
  font-size: 2.35rem;
  line-height: 1.18;
  letter-spacing: -0.045em;
}
.tour-copy > p {
  font-size: 0.91rem;
  line-height: 1.8;
  margin-top: 22px;
  max-width: 40ch;
}
.tour-copy .text-link {
  margin-top: 5px;
}
.tour-screen {
  margin: 0;
  background: #f6f7f9;
  border: 8px solid color-mix(in srgb, var(--tint), var(--card) 35%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: center;
}
.tour-screen-label {
  padding: 17px 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #151923;
  border-bottom: 1px solid #e0e4eb;
  font-weight: 650;
}
.tour-screen-label span {
  color: #667082;
  font-weight: 400;
}
.tour-screen img {
  width: 100%;
  padding: 15px;
  max-height: 410px;
  object-fit: contain;
  object-position: top;
}
.tour-screen figcaption {
  font-size: 0.61rem;
  color: #5b6474;
  padding: 10px 20px 16px;
  border-top: 1px solid #e0e4eb;
}
@media (max-width: 1100px) {
  .tour-panel {
    gap: 45px;
  }
}
@media (max-width: 850px) {
  .tour-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }
  .tour-copy {
    max-width: 530px;
  }
  .tour-copy > p {
    max-width: 55ch;
  }
  .tour-screen {
    width: 100%;
    max-width: 650px;
  }
}
@media (max-width: 600px) {
  .product-tabs {
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .product-tabs button {
    font-size: 0.71rem;
    max-width: 100px;
    min-height: 66px;
    text-align: left;
    line-height: 1.5;
  }
  .tour-copy h3 {
    font-size: 2rem;
  }
  .tour-screen-label {
    font-size: 0.65rem;
    padding: 12px;
  }
  .tour-screen img {
    padding: 8px;
  }
  .tour-screen figcaption {
    padding: 12px;
    font-size: 0.58rem;
  }
}

.page-intro {
  padding-block: 64px 48px;
  text-align: center;
}
.page-intro h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}
.page-intro + .section.container { padding-top: 24px; }
.page-intro + .product-section { padding-top: 56px; }
.page-intro .lead {
  margin-top: 28px;
  max-width: 56ch;
  margin-inline: auto;
}
.page-kicker {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
  justify-content: center;
}
.explore-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.explore-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.explore-card:hover {
  border-color: var(--accent);
}
.explore-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}
.explore-card p {
  font-size: 0.9rem;
  margin-block: 20px 22px;
}
.explore-card .text-link {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.8rem;
}
.home-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  margin-top: 28px;
  padding: 32px 36px;
}
.home-pricing p {
  font-size: 0.85rem;
  max-width: 60ch;
  margin-top: 12px;
}
.home-pricing .button {
  flex-shrink: 0;
}
.detail-grid article {
  border-top: 2px solid var(--line);
  padding-top: 28px;
}
.detail-grid p {
  font-size: 0.9rem;
  margin-top: 18px;
  line-height: 1.8;
}
.detail-grid h3 a { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 5px; }
.detail-grid h3 a:hover { color: var(--accent); text-decoration-color: currentColor; }
.detail-grid .text-link {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--accent);
}
.page-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-size: 0.9rem;
}
.page-next > span {
  color: var(--muted);
}
.page-next a {
  font-size: 1.3rem;
  font-weight: 650;
  color: var(--accent);
}
.walkthrough {
  background: var(--surface);
}
.walkthrough-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.walkthrough .lead {
  margin-block: 24px 18px;
  font-size: 1rem;
}
.walkthrough p:not(.lead) {
  font-size: 0.9rem;
  max-width: 50ch;
}
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.check-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.check-panel .check-list {
  margin-bottom: 0;
}
.walkthrough-note {
  font-size: 0.8rem;
  margin-top: 25px;
  max-width: 85ch;
}
.pricing-intro {
  padding-bottom: 20px;
}
.pricing-intro + .pricing-section {
  padding-top: 25px;
}
.pricing-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.8rem;
  margin-top: -40px;
  max-width: 940px;
  margin-bottom: 0;
}
.pricing-policy-links a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.desktop-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 7px;
}
@media (max-width: 1000px) {
  .explore-grid {
    gap: 18px;
  }
  .explore-card {
    padding: 23px;
  }
  .walkthrough-grid {
    gap: 35px;
  }
}
@media (max-width: 850px) {
  .explore-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .explore-card {
    padding: 28px;
  }
  .explore-card p {
    max-width: 55ch;
  }
  .home-pricing {
    align-items: start;
    flex-direction: column;
    padding: 28px;
  }
  .walkthrough-grid {
    grid-template-columns: 1fr;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .page-intro {
    padding-block: 40px 32px;
  }
  .page-intro h1 {
    font-size: 2.5rem;
  }
  .page-intro .lead {
    margin-top: 22px;
  }
  .page-kicker {
    margin-bottom: 18px;
  }
  .page-next a {
    font-size: 1.1rem;
  }
  .page-actions {
    gap: 18px;
  }
  .page-actions .text-link {
    font-size: 0.82rem;
  }
  .pricing-policy-links {
    margin-top: -24px;
  }
  .check-panel {
    padding: 25px;
  }
}
