:root {
  color-scheme: light;
  --ink: #17191c;
  --muted: #5e6369;
  --paper: #f4f5f3;
  --surface: #ffffff;
  --line: #d8dbdd;
  --green: #087f5b;
  --green-dark: #056146;
  --blue: #0a66d9;
  --amber: #bd6800;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: rgba(23, 25, 28, 0.96);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img,
.footer-brand img {
  border-radius: 7px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

nav a:not(.nav-download) {
  color: #d7dadd;
}

nav a:hover,
nav a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.nav-download {
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 620px;
  height: min(760px, calc(100svh - 112px));
  overflow: hidden;
  color: #ffffff;
  background-color: #292c30;
  background-image: url("assets/app-screenshot.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 13, 0.64);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7ee2bd;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 760;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e6e8ea;
  font-size: 21px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #69b9ff;
  outline-offset: 3px;
}

.button-primary {
  color: #ffffff;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: #ffffff;
  background: rgba(18, 20, 22, 0.28);
}

.button-secondary:hover {
  background: rgba(18, 20, 22, 0.64);
}

.release-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  color: #c7cbcf;
  font-size: 13px;
}

.section-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  padding: 82px 0;
  background: var(--surface);
}

.intro-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 740;
}

h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.intro-grid > p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.preview,
.usage-showcase,
.tag-showcase,
.details-showcase,
.features,
.workflow,
.teams,
.privacy,
.faq {
  padding: 96px 0;
}

.preview,
.workflow,
.privacy,
.faq {
  background: var(--paper);
}

.usage-showcase {
  color: #ffffff;
  background: #202326;
}

.usage-showcase .section-label {
  color: #67dcb4;
}

.usage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 80px;
  align-items: start;
  margin-bottom: 34px;
}

.usage-intro > p {
  margin: 32px 0 0;
  color: #c9ced2;
  font-size: 18px;
}

.usage-preview {
  margin: 0;
}

.usage-content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: start;
}

.usage-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 1692 / 660;
  object-fit: cover;
  object-position: top;
  border: 1px solid #555b60;
  border-radius: 8px;
  background: #303234;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.usage-preview figcaption {
  margin-top: 13px;
  color: #aeb6bb;
  font-size: 13px;
}

.usage-benefits {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border-top: 1px solid #4a5054;
}

.usage-benefits article {
  min-width: 0;
  padding: 17px 0;
  border-bottom: 1px solid #4a5054;
}

.usage-benefits p {
  margin: 8px 0 0;
  color: #b8c0c5;
}

.details-showcase,
.features {
  background: var(--surface);
}

.tag-showcase {
  background: var(--paper);
}

.teams {
  color: #ffffff;
  background: #15231e;
}

.teams .section-label {
  color: #8ce5c5;
}

.teams-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 80px;
  align-items: start;
}

.teams-intro > p {
  margin: 32px 0 0;
  color: #cbd8d3;
  font-size: 18px;
}

.team-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.team-flow article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.team-flow h3 {
  margin-top: 18px;
}

.team-flow p,
.team-assurance p {
  margin: 0;
  color: #b9c9c3;
}

.team-step {
  color: #83e5c2;
  font-size: 13px;
  font-weight: 800;
}

.team-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin-top: 34px;
}

.team-assurance > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.team-assurance strong {
  color: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.app-preview {
  margin: 0;
}

.app-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 1692 / 1135;
  object-fit: contain;
  border: 1px solid #aeb2b6;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(27, 31, 35, 0.16);
}

.app-preview figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.tag-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 42px;
}

.tag-intro > p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.tag-preview {
  margin: 0;
}

.tag-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 1531 / 1027;
  object-fit: contain;
  border: 1px solid #aeb2b6;
  border-radius: 8px;
  background: #242729;
  box-shadow: 0 22px 55px rgba(27, 31, 35, 0.16);
}

.tag-preview figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.tag-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.tag-benefits article {
  padding: 24px 34px 0 0;
}

.tag-benefits p {
  margin: 8px 0 0;
  color: var(--muted);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.detail-gallery-single {
  grid-template-columns: minmax(0, 1fr);
}

.detail-gallery figure {
  min-width: 0;
  margin: 0;
}

.detail-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1692 / 1135;
  object-fit: contain;
  border: 1px solid #aeb2b6;
  border-radius: 8px;
  background: #303234;
  box-shadow: 0 18px 42px rgba(27, 31, 35, 0.13);
}

.detail-gallery figcaption {
  display: grid;
  gap: 5px;
  padding-top: 15px;
}

.detail-gallery figcaption strong {
  font-size: 17px;
}

.detail-gallery figcaption span {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-grid article {
  min-height: 252px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid p,
.privacy-grid > p:last-child,
.faq-list p,
.steps span {
  color: var(--muted);
}

.feature-grid p {
  margin: 0;
}

.feature-number {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  gap: 8px;
  padding: 26px 34px 0 0;
  counter-increment: steps;
}

.steps li::before {
  content: "0" counter(steps);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.privacy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 140px minmax(300px, 0.9fr) minmax(280px, 0.8fr);
  gap: 50px;
  align-items: start;
}

.privacy-grid > p:last-child {
  margin: 3px 0 0;
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 20px 36px 20px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  content: "+";
  color: var(--green);
  font-size: 22px;
  font-weight: 500;
}

details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -4px 0 20px;
}

.download-cta {
  padding: 74px 0;
  color: #ffffff;
  background: var(--green-dark);
}

.download-cta .section-label {
  color: #8ce5c5;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.download-grid p:last-child {
  margin: 16px 0 0;
  color: #c8eadf;
}

.button-light {
  color: var(--green-dark);
  background: #ffffff;
}

footer {
  padding: 30px 0;
  color: #c9cdd0;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  font-size: 12px;
}

.footer-inner p {
  margin: 0;
}

.pricing-preview {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-grid article {
  min-width: 0;
  padding: 28px;
  background: var(--surface);
}

.plan-name {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-price {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 760;
  line-height: 1.1;
}

.plan-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 0 22px;
}

.pricing-notes p {
  margin: 0;
  color: var(--muted);
}

.pricing-notes strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.text-link {
  color: var(--blue);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.document-main {
  min-height: calc(100vh - 160px);
  padding: 72px 0 96px;
}

.document-header {
  max-width: 820px;
  margin-bottom: 44px;
}

.changelog-shell {
  max-width: 980px;
}

.changelog-list {
  border-top: 1px solid var(--line);
}

.release-entry {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: 46px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.release-entry > h3,
.release-entry > ul {
  grid-column: 2;
}

.release-entry h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.release-entry ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.release-entry li + li {
  margin-top: 8px;
}

.release-meta {
  grid-row: 1 / span 2;
}

.release-meta h2 {
  margin: 0 0 5px;
  font-size: 25px;
}

.release-meta span,
.release-meta strong {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.release-meta strong {
  width: max-content;
  margin-top: 12px;
  padding: 3px 8px;
  border: 1px solid rgba(8, 127, 91, 0.35);
  border-radius: 3px;
  color: var(--green-dark);
  background: rgba(8, 127, 91, 0.08);
  text-transform: uppercase;
}

.release-series .release-meta h2 {
  font-size: 20px;
}

.document-header h1 {
  font-size: 48px;
}

.document-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 72px;
  align-items: start;
}

.document-content h2 {
  margin: 42px 0 12px;
  font-size: 26px;
}

.document-content h2:first-child {
  margin-top: 0;
}

.document-content h3 {
  margin: 28px 0 8px;
  font-size: 19px;
}

.document-content p,
.document-content li {
  color: #34383d;
}

.document-content li + li {
  margin-top: 8px;
}

.document-aside {
  position: sticky;
  top: 94px;
  padding: 22px;
  border-left: 3px solid var(--green);
  background: var(--surface);
}

.document-aside strong,
.document-aside a {
  display: block;
}

.document-aside a {
  margin-top: 8px;
  color: var(--blue);
}

.policy-date {
  color: var(--muted);
  font-size: 14px;
}

.comparison-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: var(--surface);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #eceeec;
}

.contact-section {
  scroll-margin-top: 96px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 28px 0 48px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-field {
  min-width: 0;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #b9bdbb;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.contact-field input {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-field textarea {
  min-height: 154px;
  padding: 12px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 126, 86, 0.14);
}

.contact-field.has-error input,
.contact-field.has-error textarea {
  border-color: #b42318;
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: #b42318;
  font-size: 13px;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-submit {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:hover:not(:disabled) {
  background: #006f4c;
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(0, 126, 86, 0.22);
  outline-offset: 2px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  color: #087443;
}

.form-status.is-error {
  color: #b42318;
}

@media (max-width: 900px) {
  .hero {
    min-height: 590px;
    height: min(700px, calc(100svh - 90px));
    background-position: 30% top;
  }

  h1 {
    font-size: 50px;
  }

  .intro-grid,
  .usage-intro,
  .teams-intro,
  .tag-intro,
  .faq-grid,
  .privacy-grid,
  .download-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .usage-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-grid > p {
    margin-top: 0;
  }

  .feature-grid,
  .price-grid,
  .steps,
  .detail-gallery,
  .team-flow,
  .usage-benefits,
  .tag-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-assurance,
  .team-assurance > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .document-aside {
    position: static;
  }

  .release-entry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .release-entry > h3,
  .release-entry > ul {
    grid-column: 1;
  }

  .release-meta {
    grid-row: auto;
  }

  .pricing-notes {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(23, 25, 28, 0.99);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  .site-header[data-menu-open="true"] nav {
    display: flex;
  }

  .site-header nav a {
    padding: 10px 12px;
  }

  .site-header .nav-download {
    margin-top: 6px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    min-height: 60px;
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 610px;
    height: calc(100svh - 84px);
    max-height: 720px;
    background-position: 18% top;
  }

  .hero-content {
    width: min(100% - 28px, var(--content));
    padding: 76px 0 52px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .release-note {
    gap: 6px;
  }

  .section-inner {
    width: min(100% - 28px, var(--content));
  }

  .intro,
  .pricing-preview,
  .preview,
  .usage-showcase,
  .tag-showcase,
  .details-showcase,
  .features,
  .workflow,
  .teams,
  .privacy,
  .faq {
    padding: 68px 0;
  }

  .feature-grid,
  .price-grid,
  .steps,
  .detail-gallery,
  .team-flow,
  .usage-benefits,
  .tag-benefits {
    grid-template-columns: 1fr;
  }

  .document-header h1 {
    font-size: 38px;
  }

  .comparison-table {
    table-layout: fixed;
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    overflow-wrap: anywhere;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .teams-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tag-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .usage-intro {
    gap: 24px;
  }

  .usage-intro > p {
    margin-top: 0;
  }

  .usage-benefits article {
    padding: 20px 0;
    border-bottom: 1px solid #4a5054;
  }

  .tag-intro > p {
    margin-top: 0;
  }

  .tag-benefits article {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .teams-intro > p {
    margin-top: 0;
  }

  .team-flow {
    margin-top: 38px;
  }

  .team-flow article {
    min-height: 0;
    padding: 24px;
  }

  .feature-grid article {
    min-height: 0;
    padding: 24px;
  }

  .steps li {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }

  .download-cta {
    padding: 56px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
