:root {
  --bg: #060814;
  --bg-2: #0d1324;
  --ink: #fbf5e9;
  --ink-soft: rgba(251, 245, 233, .76);
  --ink-faint: rgba(251, 245, 233, .54);
  --gold: #efc987;
  --rose: #e56b6f;
  --mint: #8ed7c7;
  --violet: #9c74d1;
  --teal: #1b6867;
  --panel: rgba(11, 18, 36, .76);
  --panel-2: rgba(22, 30, 54, .62);
  --line: rgba(239, 201, 135, .18);
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1380px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 201, 135, .16), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(142, 215, 199, .12), transparent 28%),
    radial-gradient(circle at 35% 86%, rgba(156, 116, 209, .10), transparent 30%),
    linear-gradient(180deg, #060814 0%, #0a1020 48%, #050611 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .95) 0 1px, transparent 1.5px) 11% 15% / 210px 190px,
    radial-gradient(circle, rgba(239, 201, 135, .75) 0 1px, transparent 1.5px) 72% 28% / 260px 220px,
    radial-gradient(circle, rgba(142, 215, 199, .72) 0 1px, transparent 1.5px) 38% 64% / 240px 210px;
  opacity: .42;
}

body::after {
  width: 54vw;
  height: 54vw;
  right: -22vw;
  top: 22vh;
  border: 1px solid rgba(239, 201, 135, .12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(239, 201, 135, .04),
    0 0 80px rgba(142, 215, 199, .06);
}

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

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

p,
h1,
h2,
h3,
ul,
figure {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  pointer-events: none;
}

.site-header__brand,
.site-header__nav,
.site-header__toggle {
  pointer-events: auto;
  box-shadow: var(--shadow);
}

.site-header__brand {
  display: grid;
  grid-template-columns: 46px auto;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 26px 8px 26px 26px;
  background: rgba(8, 12, 26, .74);
  backdrop-filter: blur(16px);
}

.site-header__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a0f1c;
  font-weight: 950;
  letter-spacing: -.06em;
  background:
    radial-gradient(circle at 35% 30%, #fff6d8, var(--gold) 62%, #a46b43);
}

.site-header__title {
  display: grid;
  gap: 1px;
}

.site-header__title strong {
  color: var(--ink);
  letter-spacing: -.04em;
  font-size: 1rem;
}

.site-header__title span {
  color: var(--ink-faint);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header__nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px 26px 26px 26px;
  background: rgba(8, 12, 26, .58);
  backdrop-filter: blur(16px);
}

.site-header__nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.site-header__nav a:hover {
  color: var(--ink);
  background: rgba(239, 201, 135, .12);
  transform: translateY(-1px);
}

.site-header__toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 12, 26, .76);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 20px;
  background: var(--ink);
}

.site-main {
  width: 100%;
}

.section-eyebrow {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.3vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.055em;
}

.section-copy {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(239, 201, 135, .22);
  border-radius: 20px 20px 20px 4px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(239, 201, 135, .14);
}

.button--primary {
  color: #0b0f1b;
  background: linear-gradient(135deg, #fff0c7, var(--gold));
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
}

.hero {
  width: min(1540px, calc(100% - 22px));
  min-height: calc(100vh - 22px);
  margin: 11px auto 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 201, 135, .16);
  border-radius: 0 0 54px 54px;
  background: #050813;
  box-shadow: var(--shadow);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 19, .72) 0%, rgba(5, 8, 19, .32) 42%, rgba(5, 8, 19, .78) 100%),
    linear-gradient(180deg, rgba(5, 8, 19, .12), rgba(5, 8, 19, .72) 88%);
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__layout {
  min-height: calc(100vh - 22px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(340px, 1.2fr) minmax(240px, .7fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: clamp(106px, 10vw, 148px) clamp(18px, 4vw, 58px) clamp(24px, 5vw, 70px);
}

.hero__intro {
  align-self: end;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 34px 10px 34px 34px;
  background: rgba(8, 12, 26, .72);
  backdrop-filter: blur(15px);
}

.hero__intro h1 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 5.15rem);
  line-height: 1.06;
  letter-spacing: -.07em;
}

.hero__intro p:not(.section-eyebrow) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__phone-card {
  align-self: end;
  position: relative;
  min-height: 600px;
  border-radius: 46px;
  overflow: hidden;
  border: 1px solid rgba(239, 201, 135, .16);
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
}

.hero__phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__side {
  align-self: end;
  display: grid;
  gap: 14px;
}

.hero__stat,
.hero__mini {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px 26px 26px 8px;
  background: rgba(8, 12, 26, .68);
  backdrop-filter: blur(14px);
}

.hero__stat strong {
  display: block;
  color: var(--mint);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.hero__stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
}

.hero__mini h3 {
  margin-bottom: 8px;
  color: var(--gold);
}

.hero__mini p {
  color: var(--ink-soft);
}

.hero__ribbon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero__ribbon article {
  padding: 18px;
  border: 1px solid rgba(239, 201, 135, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
}

.hero__ribbon b {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.hero__ribbon span {
  color: var(--ink-faint);
  font-size: .9rem;
}

.cosmic-strip {
  width: var(--container);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 18px;
}

.cosmic-strip__card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .055);
  box-shadow: var(--shadow);
}

.cosmic-strip__card--warm {
  background: linear-gradient(135deg, rgba(239, 201, 135, .22), rgba(229, 107, 111, .08));
}

.cosmic-strip__card--mint {
  background: linear-gradient(135deg, rgba(142, 215, 199, .18), rgba(255, 255, 255, .04));
}

.cosmic-strip__card strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.07em;
  line-height: .92;
}

.cosmic-strip__card span {
  margin-top: 10px;
  color: var(--ink-soft);
}

.features {
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0 60px;
}

.features__head {
  max-width: 850px;
}

.features__orbit {
  margin-top: 30px;
  min-height: 720px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
}

.feature-tile {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
}

.feature-tile--image {
  padding: 0;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-tile--large {
  grid-column: 1 / span 6;
  grid-row: 1 / span 4;
}

.feature-tile--top {
  grid-column: 7 / span 3;
  grid-row: 1 / span 2;
}

.feature-tile--wide {
  grid-column: 10 / span 3;
  grid-row: 1 / span 2;
  background: rgba(142, 215, 199, .08);
}

.feature-tile--tall {
  grid-column: 7 / span 3;
  grid-row: 3 / span 3;
  background: rgba(239, 201, 135, .08);
}

.feature-tile--center {
  grid-column: 10 / span 3;
  grid-row: 3 / span 2;
  background: rgba(156, 116, 209, .1);
}

.feature-tile--bottom {
  grid-column: 1 / span 4;
  grid-row: 5 / span 2;
  background: rgba(229, 107, 111, .09);
}

.feature-tile--image-small {
  grid-column: 5 / span 4;
  grid-row: 5 / span 2;
}

.feature-tile--end {
  grid-column: 9 / span 4;
  grid-row: 5 / span 2;
  background: rgba(142, 215, 199, .08);
}

.feature-tile span {
  display: inline-flex;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-tile h3 {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.16;
  letter-spacing: -.03em;
}

.feature-tile p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .96rem;
}

.flow {
  margin: 40px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
  border-top: 1px solid rgba(239, 201, 135, .1);
  border-bottom: 1px solid rgba(239, 201, 135, .1);
}

.flow__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0;
}

.flow__top {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: end;
}

.flow__poster {
  min-height: 430px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flow__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__steps {
  margin-top: -80px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px 28px 8px 28px;
  background: rgba(8, 12, 26, .82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.flow-step:nth-child(even) {
  transform: translateY(34px);
}

.flow-step span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.flow-step h3 {
  margin-top: 18px;
  color: var(--ink);
}

.flow-step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .95rem;
}

.screens {
  width: var(--container);
  margin: 0 auto;
  padding: 70px 0 40px;
}

.screens__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(240px, .4fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.screens__note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  color: var(--ink-soft);
}

.screens__gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 18px;
}

.screen-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(239, 201, 135, .16);
  border-radius: 18px;
  background: rgba(4, 8, 18, .74);
  backdrop-filter: blur(12px);
}

.screen-card strong {
  color: var(--ink);
}

.screen-card span {
  color: var(--ink-faint);
  font-size: .9rem;
}

.screen-card--one {
  grid-column: 1 / span 5;
  grid-row: 1 / span 5;
}

.screen-card--two {
  grid-column: 6 / span 3;
  grid-row: 1 / span 3;
}

.screen-card--three {
  grid-column: 9 / span 4;
  grid-row: 1 / span 3;
}

.screen-card--four {
  grid-column: 6 / span 4;
  grid-row: 4 / span 3;
}

.screen-card--five {
  grid-column: 10 / span 3;
  grid-row: 4 / span 3;
}

.reviews {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 50px;
}

.reviews__stage {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}

.reviews__title {
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 70% 20%, rgba(239, 201, 135, .12), transparent 38%),
    rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}

.reviews__title p:not(.section-eyebrow) {
  margin-top: 18px;
  color: var(--ink-soft);
}

.reviews__feed {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px 28px 28px 8px;
  background: rgba(255, 255, 255, .055);
  box-shadow: var(--shadow);
}

.review-card:nth-child(2) {
  margin-left: 48px;
  background: rgba(142, 215, 199, .07);
}

.review-card:nth-child(3) {
  margin-right: 54px;
  background: rgba(229, 107, 111, .07);
}

.review-card:nth-child(4) {
  margin-left: 24px;
  background: rgba(156, 116, 209, .07);
}

.review-card p {
  color: var(--ink-soft);
}

.review-card strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
}

.download {
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 100px;
}

.download__panel {
  min-height: 620px;
  position: relative;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 54px;
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
}

.download__visual {
  min-height: 620px;
}

.download__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download__content {
  padding: clamp(28px, 5vw, 64px);
  align-self: center;
}

.download__content h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -.06em;
}

.download__content p {
  margin-top: 18px;
  max-width: 620px;
  color: var(--ink-soft);
}

.download__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  width: min(1540px, calc(100% - 22px));
  margin: 0 auto 11px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(239, 201, 135, .14);
  border-radius: 54px 54px 0 0;
  background: rgba(4, 7, 16, .84);
  box-shadow: var(--shadow);
}

.site-footer__brand,
.site-footer__links a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
}

.site-footer__brand {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 40px 12px 40px 40px;
}

.site-footer__brand h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.7vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.05em;
}

.site-footer__brand p {
  margin-top: 18px;
  color: var(--ink-faint);
}

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

.site-footer__links a {
  min-height: 104px;
  display: grid;
  align-content: center;
  padding: 20px;
  border-radius: 12px 28px 28px 28px;
}

.site-footer__links strong {
  color: var(--ink);
}

.site-footer__links span {
  color: var(--ink-faint);
  font-size: .92rem;
}

.cookie {
  position: fixed;
  z-index: 100;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 880px;
  margin: 0 auto;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 12, 26, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie.is-visible {
  display: grid;
}

.cookie p {
  color: var(--ink-soft);
  font-size: .94rem;
}

.cookie a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie__actions {
  display: flex;
  gap: 10px;
}

.cookie button {
  min-height: 44px;
  min-width: 110px;
  border: 1px solid rgba(239, 201, 135, .18);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
}

.cookie button:first-child {
  color: #0b0f1b;
  background: var(--gold);
}

.cookie button:last-child {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
}

.legal-main {
  width: var(--container);
  margin: 0 auto;
  padding: 132px 0 90px;
}

.legal-hero {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(239, 201, 135, .12), rgba(142, 215, 199, .06));
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.06em;
}

.legal-hero p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.legal-content {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.legal-section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
}

.legal-section h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.legal-section p+p {
  margin-top: 12px;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

.legal-section ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-section a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .site-header__nav {
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 26px;
    background: rgba(8, 12, 26, .96);
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__toggle {
    display: block;
    justify-self: end;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .hero__phone-card {
    min-height: 520px;
  }

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

  .cosmic-strip,
  .flow__top,
  .reviews__stage,
  .download__panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .features__orbit,
  .screens__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .feature-tile,
  .feature-tile--large,
  .feature-tile--top,
  .feature-tile--wide,
  .feature-tile--tall,
  .feature-tile--center,
  .feature-tile--bottom,
  .feature-tile--image-small,
  .feature-tile--end,
  .screen-card,
  .screen-card--one,
  .screen-card--two,
  .screen-card--three,
  .screen-card--four,
  .screen-card--five {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .feature-tile:not(.feature-tile--image) {
    min-height: 240px;
  }

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

  .flow-step:nth-child(even) {
    transform: none;
  }

  .screen-card {
    min-height: 390px;
  }

  .download__content {
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-header__title span {
    display: none;
  }

  .hero {
    width: calc(100% - 14px);
    min-height: auto;
    border-radius: 0 0 34px 34px;
  }

  .hero__layout {
    min-height: auto;
    padding: 104px 14px 24px;
  }

  .hero__intro h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero__actions,
  .download__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__side,
  .hero__ribbon,
  .cosmic-strip,
  .features__orbit,
  .flow__steps,
  .screens__head,
  .screens__gallery {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.65rem, 9vw, 2.5rem);
  }

  .hero__phone-card,
  .flow__poster,
  .download__visual {
    min-height: 420px;
  }

  .screen-card {
    min-height: 360px;
  }

  .review-card:nth-child(2),
  .review-card:nth-child(3),
  .review-card:nth-child(4) {
    margin-left: 0;
    margin-right: 0;
  }

  .site-footer {
    width: calc(100% - 14px);
    padding: 12px;
    border-radius: 34px 34px 0 0;
  }

  .site-footer__brand,
  .site-footer__links a,
  .legal-section,
  .hero__intro,
  .features__head,
  .reviews__title,
  .download__content {
    padding: 22px;
  }

  .cookie {
    grid-template-columns: 1fr;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 390px) {
  .site-header__brand {
    grid-template-columns: 40px auto;
  }

  .site-header__mark {
    width: 40px;
    height: 40px;
  }

  .site-header__toggle {
    width: 48px;
    height: 48px;
  }

  .cookie__actions {
    grid-template-columns: 1fr;
  }
}

/* Update: full-width header and safer How It Works cards */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 14px 18px;
  align-items: center;
  background: rgba(6, 8, 20, .78);
  border-bottom: 1px solid rgba(239, 201, 135, .14);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .34);
}

.site-header__brand,
.site-header__nav,
.site-header__toggle {
  box-shadow: none;
}

.site-header__brand,
.site-header__nav {
  background: rgba(255, 255, 255, .04);
}

.site-header__nav {
  justify-self: end;
}

.flow__top {
  align-items: center;
}

.flow__steps {
  margin-top: 26px;
}

.flow-step:nth-child(even) {
  transform: translateY(18px);
}

@media (max-width: 1180px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
  }

  .site-header__nav {
    top: 76px;
    left: 12px;
    right: 12px;
  }

  .flow__steps {
    margin-top: 22px;
  }

  .flow-step:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 8px 8px;
  }

  .site-header__nav {
    top: 70px;
    left: 8px;
    right: 8px;
  }

  .flow__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}