/* Styles used only by index.html and ru/index.html; loaded after site.css. */
.hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; gap: 56px; padding-block: 48px 80px; }
.hero-art, .stand-art { position: relative; isolation: isolate; }
.hero-art { aspect-ratio: 2; }
.hero-art picture, .stand-art picture { display: block; }
.hero-art img, .stand-art img { display: block; width: 100%; height: auto; }
.art-overlay { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.services-band { background: var(--peach); }
.services-more { display: flex; justify-content: flex-end; margin-top: 32px; }
.services-more .secondary { gap: 12px; font-weight: 600; }
.services-more svg { flex: 0 0 24px; }
.section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: var(--column-gap); align-items: end; }
.section-intro p { max-width: 47ch; color: var(--muted); font-size: 18px; }
.services { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--column-gap); margin-top: 48px; }
.service { border-top: 2px solid var(--accent); padding-top: 28px; }
.service-title { display: flex; align-items: flex-start; gap: 16px; }
.service-title svg { color: var(--accent); margin-top: 2px; }
.service > p { margin-top: 22px; max-width: 50ch; }
.service ul { list-style: none; margin: 28px 0 0; padding: 0; }
.service li { position: relative; padding-left: 24px; margin-top: 16px; color: var(--muted); text-wrap: pretty; }
.service li:before { content: ""; position: absolute; top: .78em; left: 0; width: 7px; height: 2px; background: var(--accent); }
.stand { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.stand-art { width: 100%; max-width: 490px; aspect-ratio: 46 / 31; }
.stand h2 { max-width: 580px; }
.stand p { margin-top: 26px; }
.stand .gift-note { color: var(--muted); font-size: 17px; }
.process { border-top: 1px solid var(--line); }
.process h2 { max-width: 760px; text-align: left; }
.process-layout { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); align-items: center; gap: clamp(28px, 3vw, 48px); margin-top: 48px; }
.process-layout .steps { margin-top: 0; }
.conversation-art { display: block; width: 100%; max-width: 400px; justify-self: end; mix-blend-mode: darken; }
.conversation-art img { display: block; width: 100%; height: auto; }
.steps { max-width: 760px; padding: 0; margin: 48px 0 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 0 20px; padding: 0 168px 40px 0; }
.steps li:last-child { padding-bottom: 0; }
.step-number { position: relative; z-index: 1; display: grid; place-items: center; align-self: start; width: 44px; height: 44px; border: 1px solid var(--accent); border-radius: 50%; background: var(--peach); color: var(--accent); font-size: 16px; font-variant-numeric: tabular-nums; font-weight: 600; transition: background-color 200ms ease, border-color 200ms ease; }
.steps h3 { padding-top: 6px; font-size: 25px; }
.steps p { grid-column: 2; margin-top: 12px; color: var(--muted); }
.route-connector { position: absolute; top: calc(50% - 20px); right: 0; width: 128px; height: 100%; overflow: visible; pointer-events: none; fill: none; stroke: var(--line); stroke-width: 1; }
.route-connector path { vector-effect: non-scaling-stroke; }
.route-progress { stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: none; stroke-dashoffset: 0; }
.route-arrow { stroke: var(--accent); }
.route-mobile { display: none; }
.steps[data-animated] .route-progress { stroke-dasharray: 1; stroke-dashoffset: var(--remaining, 1); }
.steps[data-animated] .step-number { background: var(--paper); border-color: var(--line); }
.steps[data-animated] li[data-reached] .step-number { background: var(--peach); border-color: var(--accent); }
.process-end { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; max-width: 640px; margin: 36px 0 0; }
.process-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; }
.faq-link { min-height: 56px; padding: 13px 22px; border: 1px solid var(--line); border-radius: 5px; color: var(--ink); text-decoration: none; font-weight: 600; transition: background-color .18s ease, border-color .18s ease; }
.faq-link:focus-visible, .faq-link:active { background: var(--art-wash); border-color: var(--art-line); }
@media (hover: hover) {
  .faq-link:hover { background: var(--art-wash); border-color: var(--art-line); }
}
.ownership { display: flex; align-items: flex-start; gap: 14px; max-width: 480px; }
.ownership svg { color: var(--accent); margin-top: 4px; }
.ownership p { font-size: 15px; color: var(--muted); }
.ownership strong { display: block; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
@media(max-width:900px) {
  .process-layout { grid-template-columns: 1fr; margin-top: 36px; }
  .conversation-art { display: none; }
  .process h2 { margin-inline: 0; text-align: left; }
  .steps { margin-top: 36px; }
  .steps li { padding: 0 0 32px; }
  .route-connector { top: 22px; left: 22px; right: auto; width: 1px; }
  .route-desktop { display: none; }
  .route-mobile { display: inline; }
  .process-end { margin-top: 32px; }
}
@media(max-width:1100px) {
  .hero { gap: 32px; }
  .stand { gap: 48px; }
}
@media(min-width:761px) and (max-width:1000px) {
  .service-title h3 { font-size: 24px; }
}
@media(max-width:760px) {
  .hero { display: flex; flex-direction: column; align-items: stretch; gap: 24px; padding-block: 20px 40px; }
  .hero-art { width: 100%; max-width: 410px; align-self: center; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .section-intro p { font-size: 17px; }
  .services { grid-template-columns: 1fr; gap: 40px; margin-top: 36px; }
  .service { padding-top: 24px; }
  .service-title { gap: 14px; }
  .service-title svg { width: 28px; height: 28px; }
  .service > p { margin-top: 20px; }
  .service ul { margin-top: 24px; }
  .stand { display: flex; flex-direction: column; align-items: stretch; gap: 24px; }
  .stand-art { order: 2; max-width: 360px; align-self: center; }
  .stand-copy { order: 1; }
  .stand p { margin-top: 22px; }
  .stand .gift-note { margin-top: 18px; }
}
@media(max-width:360px) {
  .service-title { gap: 10px; }
}
.street-route { stroke-dasharray: 1; stroke-dashoffset: 0; animation: route-arrive 1.22s cubic-bezier(.4,0,.2,1) .12s backwards; }
.place-marker { transform-origin: 767px 140px; animation: marker-arrive .36s ease-out 1.42s backwards; }
.nfc-wave { opacity: .65; }
@keyframes route-arrive { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes marker-arrive { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nfc-touch { 0%, 100% { opacity: .65; } 45% { opacity: 1; } 70% { opacity: .25; } }
@media(hover:hover) and (pointer:fine) {
  .stand-art:hover .nfc-wave { animation: nfc-touch .8s ease-out both; }
  .stand-art:hover .wave-two { animation-delay: .12s; }
  .stand-art:hover .wave-three { animation-delay: .24s; }
}
.hero-art { background: var(--paper); }
.hero-art .art-overlay { z-index: 1; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; mix-blend-mode: darken; filter: brightness(1.012); }
.hero-art[data-video-ready] .hero-video { opacity: 1; }
.hero-art[data-video-ready] picture { visibility: hidden; }
@media(prefers-reduced-motion:reduce) {
  .hero-video { display: none; }
  .hero-art[data-video-ready] picture { visibility: visible; }
}
