:root {
  --bg: #020202;
  --bg-strong: #090909;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8f8f8;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-soft: rgba(255, 255, 255, 0.48);
  --shadow: rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.64)),
    url("sobati.jpg") center center / cover no-repeat fixed;
  color: var(--text);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.25;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.3));
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 20px 60px var(--shadow);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: clamp(82px, 10.2vw, 128px);
  height: auto;
  object-fit: contain;
}

.brand__text {
  display: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a,
.lang-switcher__button,
.app-shortcuts a,
.social-card,
.quick-pick {
  transition: 180ms ease;
}

.nav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.lang-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.lang-switcher__button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switcher__button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.34), rgba(12, 12, 12, 0.16));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 5%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(2px);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 22px;
  padding: 38px 32px 42px;
  min-height: inherit;
  align-items: center;
}

.glass-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(24px);
}

.hero__copy {
  padding: 0;
  width: 100%;
  max-width: none;
}

.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 24px 12px 12px;
}

.hero__art img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.36));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 8.6ch;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__text {
  max-width: 44ch;
  font-size: 1rem;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button--full {
  width: 100%;
}

.stat-card__label,
.card-index,
.app-card__label,
.status-pill {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.96rem;
  line-height: 1.55;
}

.section {
  padding: 92px 0 0;
}

.section--compact {
  padding-top: 30px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.info-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.15;
}

.info-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.15rem;
}

.section-heading {
  margin-bottom: 28px;
}

.about-grid,
.card-grid,
.experience-grid,
.contact-layout,
.form-grid,
.social-grid,
.media-grid,
.collection-icons,
.testimonial-grid,
.video-showcase {
  display: grid;
  gap: 18px;
}

.about-stack {
  display: grid;
  gap: 22px;
}

.about-section {
  display: block;
}

.about-section .feature-panel,
.about-section .image-panel--about {
  max-width: 980px;
}

.feature-panel,
.content-card,
.tall-card,
.language-note,
.app-card,
.contact-form,
.image-panel {
  border-radius: var(--radius);
  padding: 26px;
}

.image-panel {
  overflow: hidden;
  padding: 0;
  min-height: 420px;
  position: relative;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.08) brightness(0.72);
}

.image-panel__overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.54), rgba(15, 15, 15, 0.82));
  backdrop-filter: blur(16px);
}

.image-panel__overlay strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.image-panel__overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.feature-panel--lead {
  display: grid;
  align-content: space-between;
}

.feature-panel--lead h3,
.feature-panel--story h3 {
  margin-bottom: 16px;
  font-size: 1.7rem;
}

.feature-panel--story {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 36%);
}

.image-panel--about {
  min-height: 420px;
}

.about-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-note span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.about-note strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

.about-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-points li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-icons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-collection-card {
  min-height: 240px;
  padding: 24px;
}

.icon-collection-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.3rem;
}

.testimonial-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.testimonial-card {
  padding: 28px;
  border-radius: 28px;
}

.testimonial-card--quote {
  position: relative;
  overflow: hidden;
}

.testimonial-card__quote-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
}

.testimonial-card__text {
  max-width: 42ch;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.testimonial-card__meta {
  display: grid;
  gap: 4px;
}

.testimonial-card__meta span {
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.testimonial-points {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.testimonial-point {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.testimonial-point i {
  color: #fff;
}

.video-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  min-height: 420px;
  padding: 18px;
}

.media-card--video {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
}

.media-card__video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-card__content {
  padding: 16px 8px 6px;
}

.media-card__content h3 {
  margin-bottom: 8px;
}

.media-card__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.content-card {
  min-height: 230px;
}

.content-card p {
  max-width: 32ch;
}

.section--split .experience-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.timeline__step {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.social-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.social-card span {
  color: var(--muted-soft);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.social-card:hover,
.social-card:focus-visible,
.app-shortcuts a:hover,
.app-shortcuts a:focus-visible,
.quick-pick:hover,
.quick-pick:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.language-note {
  max-width: 860px;
}

.contact-split + .contact-split {
  margin-top: 32px;
}

.section-heading--tight {
  margin-bottom: 18px;
}

.app-card {
  position: sticky;
  top: 110px;
}

.app-card--wide,
.contact-notes--wide {
  max-width: none;
  width: 100%;
}

.app-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-card__hero {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.app-card__intro {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.app-card__body {
  display: grid;
  gap: 0;
}

.app-card__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-card__line span {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-card__line strong {
  font-size: 1.18rem;
  text-align: right;
}

.app-shortcuts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.app-shortcuts--primary {
  grid-template-columns: 1fr;
}

.app-shortcuts--secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-shortcuts a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.app-shortcuts--primary a {
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 28%);
}

.contact-form--advanced {
  max-width: none;
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-intro {
  max-width: 54ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
}

.status-pill {
  margin-bottom: 0;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.contact-form span {
  color: var(--muted-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  padding-top: 18px;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.62) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-notes {
  padding: 28px;
  min-height: 100%;
  display: grid;
  gap: 18px;
}

.contact-guide {
  display: grid;
  gap: 14px;
}

.contact-guide__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-guide__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-guide__item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact-guide__step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-note-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-note-bar span {
  color: rgba(255, 255, 255, 0.52);
}

.contact-note-bar strong {
  display: inline-flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.quick-picks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 2px;
}

.quick-pick {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.quick-pick.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.contact-message {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: var(--muted-soft);
}

.site-footer {
  margin-top: 88px;
  padding: 28px 30px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer__logo {
  width: clamp(110px, 14vw, 180px);
  height: auto;
  object-fit: contain;
}

.site-footer__brand h3 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1;
}

.site-footer__meta {
  display: grid;
  gap: 18px;
  align-content: center;
}

.site-footer__meta p {
  margin-bottom: 0;
  max-width: 46ch;
}

.site-footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

body[data-dir="rtl"] {
  direction: rtl;
}

body[data-dir="rtl"] .site-header {
  grid-template-columns: auto 1fr auto;
}

body[data-dir="rtl"] .brand,
body[data-dir="rtl"] .app-card__top,
body[data-dir="rtl"] .hero__actions,
body[data-dir="rtl"] .quick-picks {
  flex-direction: row-reverse;
}

body[data-dir="rtl"] .nav {
  justify-content: center;
}

body[data-dir="rtl"] .app-card__line,
body[data-dir="rtl"] .form-header {
  flex-direction: row-reverse;
}

body[data-dir="rtl"] .site-footer__brand,
body[data-dir="rtl"] .site-footer__links,
body[data-dir="rtl"] .contact-note-bar {
  flex-direction: row-reverse;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 28px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero__content,
  .section--split .experience-grid,
  .card-grid,
  .info-strip,
  .site-footer,
  .collection-icons,
  .testimonial-grid,
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .hero__art {
    padding-top: 0;
  }

  .app-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(1280px, calc(100% - 20px));
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 18px;
  }

  .hero__copy,
  .feature-panel,
  .content-card,
  .tall-card,
  .language-note,
  .app-card,
  .contact-form {
    padding: 22px;
  }

  .social-grid,
  .form-grid,
  .form-grid--triple,
  .timeline__item {
    grid-template-columns: 1fr;
  }

  .app-shortcuts {
    grid-template-columns: 1fr;
  }

  .app-card__line {
    align-items: start;
    flex-direction: column;
  }

  .app-card__line strong {
    text-align: left;
  }

  .contact-guide__item {
    grid-template-columns: 1fr;
  }

  .form-header {
    align-items: flex-start;
  }

  .site-footer__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline__item {
    gap: 12px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    max-width: none;
    font-size: 2rem;
  }
}
