@charset "UTF-8";
:root {
  --ink: #292929;
  --muted: #646464;
  --teal: #27272a;
  --teal-dark: #18181b;
  --line: #e5e5e5;
  --pale: #f5f5f5;
  --white: #fff;
  --navy: #292929;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #27272a;
  outline-offset: 5px;
  border-radius: 4px;
}
::selection {
  background: #e3e3e3;
  color: #292929;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  flex-shrink: 0;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
}
h1,
h2 {
  letter-spacing: -0.055em;
  font-weight: 650;
  text-wrap: balance;
}
h3,
h4 {
  font-weight: 650;
  letter-spacing: -0.025em;
}
p {
  text-wrap: pretty;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  z-index: 100;
  transform: translateY(-200%);
}
.skip:focus {
  transform: none;
}
.header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 100px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  width: 172px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}
.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav {
  font-size: 0.875rem;
  font-weight: 600;
}
.main-nav a,
.login {
  transition: color 0.2s;
}
.main-nav a:hover,
.login:hover,
.footer a:hover {
  color: var(--teal);
}
.header-actions {
  gap: 20px;
}
.languages {
  display: flex;
  align-items: center;
  gap: 2px;
}
.languages a {
  min-height: 44px;
  min-width: 34px;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--muted);
}
.languages a[aria-current] {
  color: var(--teal);
  background: #f3f3f3;
  border-radius: 7px;
}
.languages a:hover {
  color: var(--teal);
  background: #f1f7f7;
}
.login {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  padding: 17px 25px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  min-height: 54px;
  line-height: 1.35;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 10px #6565650d;
}
.button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.button.small {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 0.875rem;
  white-space: nowrap;
}
.hero {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: 88px;
  padding-bottom: 86px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}
.hero .eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.045em;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #f3f3f3;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.5vw, 4.35rem);
  line-height: 1.06;
  margin-bottom: 27px;
}
.hero h1 span {
  color: var(--teal);
}
.lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 505px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link span {
  color: var(--teal);
  font-size: 1.3rem;
}
.reassurance {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 25px;
}
.reassurance span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reassurance svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.app-preview {
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  background: #f2f7f8;
  box-shadow:
    0 24px 70px -20px #3f3f3f30,
    0 0 0 12px #f5f9f9;
  transform: rotate(1deg);
  animation: arrive 0.8s ease-out both;
  position: relative;
  min-width: 0;
}
.preview-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
}
.chrome-dots {
  display: flex;
  gap: 5px;
}
.chrome-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d7d7;
}
.chrome-dots i:first-child {
  background: #b4b4b4;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.preview-body {
  padding: 26px;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.micro {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.preview-heading h2 {
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}
.preview-plus {
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.preview-plus svg {
  width: 18px;
  height: 18px;
}
.preview-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 8px 0 22px;
}
.issue-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 20px;
  border-radius: 11px;
  margin-bottom: 12px;
  box-shadow: 0 3px 5px #34343403;
}
.issue-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #545454;
  font-weight: 650;
}
.tag svg {
  width: 16px;
  height: 16px;
}
.tag.warm {
  color: #595959;
}
.status {
  font-size: 0.75rem;
  color: #595959;
  background: #f4f4f4;
  padding: 3px 9px;
  border-radius: 5px;
}
.issue-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 9px;
}
.issue-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.issue-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf1f2;
  margin-top: 17px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.75rem;
}
.issue-bottom span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.issue-bottom svg {
  width: 15px;
  height: 15px;
}
.compact {
  padding-top: 17px;
  padding-bottom: 17px;
}
.compact .issue-top {
  margin-bottom: 10px;
}
.opinion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 3px 0;
}
.opinion-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #ededed;
  border-radius: 50%;
  color: var(--teal);
  flex-shrink: 0;
}
.opinion-icon svg {
  width: 20px;
  height: 20px;
}
.opinion strong {
  font-size: 0.875rem;
  font-weight: 600;
}
.opinion p {
  font-size: 0.75rem;
  color: var(--muted);
}
.app-preview figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  padding: 0 26px 15px;
}
.city-vision {
  margin-bottom: 48px;
}
.city-vision img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: var(--pale);
}
.city-vision figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.principles {
  border-block: 1px solid var(--line);
  background: #fbfdfd;
}
.principles > .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.principles > .container > span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  font-weight: 500;
  font-size: 1rem;
}
.principles > .container > span + span {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.principle-number {
  color: #828282;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.principles svg {
  width: 19px;
  height: 19px;
  color: var(--teal);
  margin-left: auto;
  margin-right: 35px;
}
.section {
  padding-block: 96px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 43px;
}
.section h2,
.detail-section h2,
.faq-section h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.12;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.section-intro {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 480px;
  justify-self: end;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  background: #f7fafa;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 27px 23px 30px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.feature-card:hover {
  border-color: #c3c3c3;
  transform: translateY(-3px);
}
.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: var(--teal);
  border-radius: 10px;
  flex-shrink: 0;
}
.index {
  font-size: 0.75rem;
  color: #737373;
  letter-spacing: 0.05em;
}
.feature-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
.feature-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}
.detail-section {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  padding-block: 76px;
}
.detail-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('/assets/sturovo-detail-background.webp') center / cover
    no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.detail-copy .eyebrow {
  color: #c4c4c4;
  margin-bottom: 20px;
}
.detail-copy > p:not(.eyebrow) {
  color: #d4d4d4;
  margin-top: 24px;
  max-width: 460px;
}
.checklist {
  margin: 29px 0 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.9375rem;
}
.checklist svg {
  width: 18px;
  height: 18px;
  color: #c4c4c4;
  margin-top: 4px;
}
.timeline-panel {
  background: #fff;
  border-radius: 14px;
  padding: 29px 30px;
  color: var(--ink);
  box-shadow: 0 12px 35px #00000016;
}
.timeline-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.timeline-heading h3 {
  font-size: 1.1875rem;
}
.timeline {
  margin: 27px 0 24px;
}
.timeline li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  position: relative;
  padding-bottom: 29px;
}
.timeline li:not(:last-child):before {
  content: '';
  position: absolute;
  top: 36px;
  bottom: 0;
  left: 17px;
  border-left: 1px dashed #c5c5c5;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--teal);
  flex-shrink: 0;
}
.timeline-dot svg {
  width: 18px;
  height: 18px;
}
.timeline h4 {
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 3px;
}
.timeline li p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}
.timeline-note {
  padding: 16px;
  background: #f5f8f8;
  border-radius: 7px;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  margin: 50px 0 0;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.step-number {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--teal);
  font-weight: 350;
  display: block;
  margin-bottom: 24px;
}
.steps h3 {
  font-size: 1.1875rem;
  margin-bottom: 13px;
}
.steps p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 22px 0 96px;
}
.faq-section .eyebrow {
  margin-bottom: 17px;
}
.faq-section h2 {
  font-size: 2.5rem;
}
.faq-support {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.faq-support:hover {
  color: var(--teal-dark);
}
.questions {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 77px;
  padding: 19px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary svg {
  width: 19px;
  height: 19px;
  color: var(--teal);
  transition: transform 0.2s;
}
details[open] summary svg {
  transform: rotate(45deg);
}
details[open] summary {
  color: var(--teal);
}
details > p {
  font-size: 1rem;
  color: var(--muted);
  padding: 0 32px 24px 0;
}
.closing {
  background: #f3f3f3;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 53px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.closing .eyebrow {
  font-size: 0.6875rem;
  margin-bottom: 19px;
}
.closing h2 {
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  line-height: 1.15;
}
.closing p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 19px;
  font-size: 1rem;
}
.closing-actions {
  display: grid;
  gap: 12px;
  flex-shrink: 0;
}
.secondary {
  background: transparent;
  border-color: #b3b3b3;
  color: var(--teal-dark);
  box-shadow: none;
}
.secondary:hover {
  background: #e8e8e8;
}
.footer {
  padding-top: 65px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 37px;
}
.footer-top .logo {
  width: 158px;
  height: 45px;
}
.footer-top p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 17px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: start;
  padding-top: 17px;
  font-size: 0.875rem;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.footer-links svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-bottom a {
  min-height: 44px;
  display: flex;
  gap: 15px;
  align-items: center;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(15px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1deg);
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 105px;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 20px;
  }
  .main-nav {
    gap: 16px;
  }
  .header-actions {
    gap: 13px;
  }
  .logo {
    width: 150px;
  }
  .hero {
    gap: 38px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 4.5vw, 3.8rem);
  }
  .hero-actions {
    gap: 12px;
  }
  .header .button.small {
    display: none;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-top {
    margin-bottom: 26px;
  }
  .detail-grid {
    gap: 50px;
  }
  .section-heading {
    gap: 50px;
  }
  .closing {
    padding: 44px;
  }
  .preview-body {
    padding: 21px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    min-height: 90px;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 14px;
  }
  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    border-top: 1px solid #edf2f2;
    padding-top: 8px;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 36px;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 58px;
    gap: 43px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }
  .hero h1 br {
    display: none;
  }
  .hero h1 span {
    display: block;
  }
  .hero h1 span br {
    display: initial;
  }
  .hero .lead {
    max-width: 570px;
  }
  .reassurance {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 18px;
  }

  .app-preview {
    max-width: 550px;
    width: 100%;
    justify-self: center;
    transform: none;
    animation: none;
  }
  .preview-body {
    padding: 26px;
  }
  .principles > .container > span {
    font-size: 0.875rem;
    gap: 9px;
    padding-block: 23px;
  }
  .principles > .container > span + span {
    padding-left: 16px;
  }
  .principles svg {
    display: none;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    gap: 35px;
    align-items: start;
  }
  .section-intro {
    font-size: 1rem;
  }
  .detail-grid {
    gap: 30px;
  }
  .detail-section {
    padding-block: 54px;
  }
  .timeline-panel {
    padding: 23px 20px;
  }
  .steps {
    gap: 25px;
  }
  .faq-section {
    gap: 35px;
    padding-bottom: 65px;
    grid-template-columns: 1fr 1.4fr;
  }
  .faq-section h2 {
    font-size: 2rem;
  }
  .closing {
    display: block;
  }
  .closing-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .footer-links {
    gap: 23px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 10px;
  }
  .logo {
    width: 137px;
    height: 43px;
  }
  .header-actions {
    gap: 9px;
  }
  .languages a {
    min-width: 30px;
  }
  .login {
    font-size: 0.8125rem;
  }
  .main-nav {
    justify-content: space-between;
    font-size: 0.8125rem;
    gap: 10px;
  }
  .hero {
    padding-top: 39px;
    gap: 35px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 8.5vw, 3.2rem);
    line-height: 1.09;
  }
  .lead {
    font-size: 1.0625rem;
    line-height: 1.75;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
  .button {
    padding: 16px 22px;
    min-height: 53px;
  }
  .reassurance {
    font-size: 0.75rem;
    margin-top: 17px;
    gap: 5px;
    flex-direction: column;
  }

  .app-preview {
    box-shadow:
      0 16px 35px -20px #3f3f3f30,
      0 0 0 6px #f5f9f9;
  }
  .preview-body {
    padding: 20px 15px;
  }
  .preview-heading h2 {
    font-size: 1.3rem;
  }
  .issue-card {
    padding: 16px;
  }
  .issue-card h3 {
    font-size: 1.0625rem;
  }
  .preview-chrome {
    padding-inline: 15px;
  }
  .principles > .container {
    grid-template-columns: 1fr;
  }
  .principles > .container > span {
    padding: 13px 0;
    gap: 15px;
  }
  .principles > .container > span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .principles svg {
    display: block;
    margin-right: 0;
  }
  .section {
    padding-block: 51px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 29px;
  }
  .section-intro {
    justify-self: start;
  }
  .section h2,
  .detail-section h2 {
    font-size: 2.3rem;
  }
  .eyebrow {
    font-size: 0.6875rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-top {
    margin-bottom: 19px;
  }
  .feature-card h3 {
    font-size: 1.25rem;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .detail-copy > p:not(.eyebrow) {
    margin-top: 20px;
  }
  .timeline-panel {
    padding: 24px 20px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 30px;
  }
  .step-number {
    font-size: 1.75rem;
    margin-bottom: 17px;
  }
  .steps h3 {
    font-size: 1.25rem;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 8px;
    padding-bottom: 50px;
  }
  .faq-section h2 {
    font-size: 2.3rem;
  }
  .faq-section summary {
    font-size: 1rem;
    min-height: 75px;
  }
  .closing {
    padding: 31px 24px;
    border-radius: 12px;
  }
  .closing h2 {
    font-size: 2rem;
  }
  .closing h2 br {
    display: none;
  }
  .closing-actions {
    display: grid;
  }
  .closing .eyebrow {
    font-size: 0.625rem;
  }
  .footer {
    padding-top: 43px;
  }
  .footer-top {
    flex-direction: column;
    gap: 14px;
    padding-bottom: 24px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 10px 27px;
    padding-top: 0;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 0.75rem;
  }
  .footer-bottom > span {
    padding-top: 10px;
  }
  .footer-bottom a {
    white-space: nowrap;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-actions {
    gap: 5px;
  }
  .logo {
    width: 121px;
  }
  .languages a {
    min-width: 27px;
  }
  .header .login {
    font-size: 0.75rem;
  }
  .preview-chrome {
    font-size: 0.6875rem;
  }
  .tag {
    font-size: 0.6875rem;
  }
  .status {
    font-size: 0.6875rem;
    padding-inline: 7px;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .app-preview {
    transform: none;
  }
  .button:hover,
  .feature-card:hover {
    transform: none;
  }
}
@media print {
  .header-actions,
  .hero-actions,
  .closing-actions,
  .skip {
    display: none;
  }
  .container {
    width: 100%;
  }
  .hero,
  .section,
  .detail-section,
  .faq-section {
    padding-block: 24px;
  }
  .app-preview {
    box-shadow: none;
    transform: none;
  }
  .detail-section {
    background: #fff;
    color: var(--ink);
  }
  .detail-copy > p:not(.eyebrow),
  .detail-copy .eyebrow {
    color: var(--ink);
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  details > p {
    display: block !important;
  }
  .closing {
    break-inside: avoid;
  }
  .footer {
    padding-top: 24px;
  }
}

/* Keep secondary labels readable at every breakpoint. */
.micro,
.eyebrow,
.closing .eyebrow,
.tag,
.status,
.preview-chrome {
  font-size: 0.75rem;
}
