:root {
  --bg: #0a0a16;
  --bg-soft: #11112a;
  --card: #15152f;
  --card-2: #191938;
  --text: #ecebf5;
  --muted: #a3a2c2;
  --muted-2: #7d7ca0;
  --accent: #7c5cff;
  --accent-2: #c84dff;
  --good: #36d399;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --grad: linear-gradient(135deg, var(--accent), var(--accent-2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 82% -8%, rgba(200, 77, 255, 0.22), transparent 60%),
    radial-gradient(900px 480px at -8% 6%, rgba(124, 92, 255, 0.20), transparent 55%),
    var(--bg);
  line-height: 1.62;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
  line-height: 1.12;
}

/* gradient text helper */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 22, 0.66);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 11px;
}
.brand .vps {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  text-decoration: none;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
}
.lang-switch a {
  padding: 6px 12px;
  color: var(--muted);
}
.lang-switch a:hover {
  text-decoration: none;
  color: var(--text);
}
.lang-switch a.active {
  background: var(--grad);
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 12px 34px rgba(124, 92, 255, 0.34);
}
.btn-ghost {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  border-color: var(--accent);
}

/* store button */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #fff;
  color: #0a0a16;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.store-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.store-btn svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.store-btn .st {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.store-btn .st small {
  font-size: 11px;
  color: #4a4a66;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.store-btn .st b {
  font-size: 17px;
  font-weight: 700;
}

/* ---------- Badge / eyebrow ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #d8caff;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.32);
  padding: 6px 14px;
  border-radius: 999px;
}
.badge .ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(54, 211, 153, 0.18);
}

/* ---------- Hero ---------- */
.hero {
  padding: 52px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  margin: 20px 0 18px;
}
.hero p.lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 540px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted-2);
}

/* phones */
.phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  min-height: 480px;
  width: 100%;
  max-width: 100%;
}
.phones img {
  position: relative;
  z-index: 1;
  width: clamp(118px, 36vw, 232px);
  max-width: 46%;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55))
    drop-shadow(0 10px 28px rgba(124, 92, 255, 0.22));
}
.phones img.front {
  margin-left: clamp(-22px, -6vw, -64px);
  margin-bottom: 26px;
  z-index: 2;
}
.phones img.back {
  margin-bottom: 0;
  transform: translateY(-8px);
  opacity: 0.96;
}

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
}
.section-head {
  max-width: 660px;
  margin-bottom: 42px;
}
.section-head-center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head-center h2 {
  margin-top: 0;
}
.section-head-center .sub {
  margin-left: auto;
  margin-right: auto;
}
.section h2 {
  font-size: clamp(27px, 3.6vw, 36px);
  margin: 10px 0 12px;
}
.section .sub {
  color: var(--muted);
  margin: 0;
}

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}
.stat .num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat .lbl {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* features grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid rgba(124, 92, 255, 0.30);
}
.feat-icon svg {
  width: 23px;
  height: 23px;
  stroke: #d8caff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* servers */
.servers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.server {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.server .flag {
  font-size: 0;
  width: 40px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  margin-bottom: 8px;
}
.server .flag svg {
  width: 40px;
  height: 28px;
  display: block;
}
.server .country {
  font-weight: 700;
  font-size: 17px;
}
.server .meta {
  color: var(--muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.server .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(200, 77, 255, 0.14));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 46px 40px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0 0 10px;
}
.cta-band p {
  color: var(--muted);
  margin: 0 0 26px;
}
.cta-band .app-icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  display: block;
  margin: 0 auto 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* ---------- Install steps (iOS page) ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  max-width: 760px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: var(--grad);
}
.step-body {
  flex: 1;
}
.step-body h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.step-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
}
.step-body .store-badge {
  margin: 0;
}

/* ---------- Inner page / prose ---------- */
.page {
  flex: 1;
  padding: 56px 0 64px;
}
.prose {
  max-width: 760px;
}
.prose h1 {
  font-size: clamp(30px, 4.4vw, 42px);
  margin: 14px 0 18px;
}
.prose h2 {
  font-size: 22px;
  margin: 34px 0 12px;
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose ul {
  padding-left: 20px;
}
.prose li {
  margin: 6px 0;
}
.prose h3 {
  font-size: 17px;
  margin: 22px 0 8px;
  color: var(--text);
}
.prose a {
  color: #c8b6ff;
}
.prose code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid rgba(124, 92, 255, 0.22);
  color: #d8caff;
}

/* notice box (placeholder pages) */
.notice {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 22px 0;
}
.notice p {
  margin: 0 0 10px;
}
.notice p:last-child {
  margin: 0;
}
.meta-line {
  color: var(--muted-2);
  font-size: 14px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}
.faq details {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq .answer {
  padding: 0 0 18px;
  color: var(--muted);
}
.faq .answer p {
  margin: 0 0 10px;
}
.faq .answer p:last-child {
  margin: 0;
}

/* contact card */
.contact-card {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 18px 0 26px;
}
.contact-card .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
  padding: 8px 0;
  color: var(--muted);
}
.contact-card .row b {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 46px 0 30px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 22px;
}
.footer-grid h4 {
  color: var(--text);
  font-size: 14px;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.footer-grid a {
  display: block;
  color: var(--muted);
  padding: 5px 0;
}
.footer-grid a:hover {
  color: var(--text);
  text-decoration: none;
}
.footer-about {
  max-width: 320px;
}
.footer-bottom {
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-2);
}

/* ---------- Store badges (download buttons) ---------- */
.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero .downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 540px;
  gap: 12px;
}
.hero .store-badge {
  min-width: 0;
}
.sec-divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 0;
  max-width: var(--maxw);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #0e0e1d;
  color: #fff;
  border: 1px solid var(--border-strong);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  min-width: 168px;
}
.store-badge:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #14142b;
}
.store-badge .ic {
  width: 26px;
  height: 26px;
  flex: none;
  display: block;
  object-fit: contain;
}
.store-badge .ic-apple {
  filter: none;
}
.store-badge .tx {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.store-badge .tx small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.store-badge .tx b {
  font-size: 17px;
  font-weight: 700;
}

/* ---------- Countdown timer ---------- */
.countdown-sec {
  padding: 56px 0 80px;
  text-align: center;
}
.countdown-title {
  font-size: clamp(22px, 3.4vw, 34px);
  margin: 0 0 20px;
}
.countdown-sub {
  color: var(--muted);
  max-width: 640px;
  margin: 32px auto 0;
  padding: 0 12px;
}
.countdown {
  display: inline-flex;
  gap: clamp(8px, 2vw, 20px);
  margin: 28px auto 0;
  flex-wrap: nowrap;
}
.cd-unit {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: clamp(14px, 2.4vw, 24px) clamp(10px, 2.4vw, 26px);
  min-width: clamp(68px, 16vw, 116px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.cd-num {
  display: block;
  font-size: clamp(30px, 7vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(11px, 1.6vw, 14px);
  text-transform: lowercase;
}

/* ---------- Orbit (radial features) ---------- */
.orbit-sec {
  padding: 48px 0;
  overflow: visible;
}
.orbit-stage {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.orbit-lines line {
  stroke: rgba(124, 92, 255, 0.4);
  stroke-width: 0.4;
  stroke-dasharray: 1.6 1.6;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.orbit-ring text {
  fill: #c8b6ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.orbit-logo {
  width: 58%;
  height: 58%;
  border-radius: 24%;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(124, 92, 255, 0.45);
  z-index: 3;
}
.orbit-feat {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(130px, 22vw, 230px);
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: clamp(10px, 1.6vw, 18px);
  z-index: 2;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.orbit-feat.f1 { top: 6%;  left: 50%; }
.orbit-feat.f2 { top: 36%; left: 92%; }
.orbit-feat.f3 { top: 86%; left: 76%; }
.orbit-feat.f4 { top: 86%; left: 24%; }
.orbit-feat.f5 { top: 36%; left: 8%; }
.orbit-feat h3 {
  margin: 0 0 8px;
  font-size: clamp(15px, 1.85vw, 20px);
  line-height: 1.25;
}
.orbit-feat p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.45vw, 16px);
  line-height: 1.5;
}

/* ---------- Platforms (download section, two columns) ---------- */
.platforms-sec > .container {
  display: flex;
  justify-content: center;
  max-width: var(--maxw);
}
.platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1040px, 100%);
  margin-inline: auto;
}
.platform-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px 28px;
  text-align: center;
}
.platform-col h3 {
  flex: 0 0 auto;
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 22px;
}
.platform-shots {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 22px);
  min-height: clamp(300px, 38vw, 460px);
  min-width: 0;
}
.platform-shots img {
  max-width: calc(50% - 8px);
  max-height: clamp(280px, 30vw, 400px);
  width: auto;
  height: auto;
  flex: 0 1 auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 50px rgba(124, 92, 255, 0.5));
}
.platform-shots.desktop img {
  max-height: clamp(240px, 26vw, 360px);
}
.platform-col .downloads {
  flex: 0 0 auto;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 0;
}

html.is-mobile .platform-col-desktop {
  display: none;
}

html.is-mobile .platforms {
  grid-template-columns: 1fr;
  width: min(520px, 100%);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .phones {
    min-height: 420px;
    margin-top: 8px;
  }
  .servers {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 56px 0 40px;
  }
  .nav-links {
    display: none;
  }
  .grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .servers {
    grid-template-columns: 1fr;
  }
  .phones {
    min-height: 340px;
  }
  .cta-band {
    padding: 34px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-card .row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .platforms {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
  }
  .downloads {
    justify-content: center;
  }
  .hero .downloads {
    justify-content: flex-start;
  }
  .store-badge {
    min-width: 0;
    flex: 1 1 calc(50% - 12px);
  }
  .cd-unit {
    border-radius: 14px;
  }
  .orbit-sec {
    padding: 40px 0 48px;
  }
  .orbit-stage {
    aspect-ratio: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
  }
  .orbit-lines {
    display: none;
  }
  .orbit-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(260px, 78vw);
    height: min(260px, 78vw);
    margin: 0 auto 24px;
    flex-shrink: 0;
  }
  .orbit-ring text {
    font-size: 13px;
  }
  .orbit-feat,
  .orbit-feat.f1,
  .orbit-feat.f2,
  .orbit-feat.f3,
  .orbit-feat.f4,
  .orbit-feat.f5 {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 460px;
  }
  .orbit-feat h3 {
    font-size: 18px;
  }
  .orbit-feat p {
    font-size: 15px;
  }
  .platform-shots img {
    height: clamp(300px, 78vw, 440px);
  }
  .platform-shots.desktop img {
    height: clamp(260px, 72vw, 380px);
  }
}
