/* public/seo/public.css — Static Stellar Flirt public pages. */

:root {
  --sf-bg: #020617;
  --sf-bg-deep: #01040d;
  --sf-bg-soft: #071022;
  --sf-surface: rgba(15, 23, 42, 0.72);
  --sf-surface-strong: rgba(15, 23, 42, 0.94);
  --sf-surface-soft: rgba(9, 16, 35, 0.72);
  --sf-surface-hover: rgba(30, 41, 59, 0.82);
  --sf-text: #f8fafc;
  --sf-text-soft: #d9e3f2;
  --sf-text-muted: #9ca9bd;
  --sf-text-dim: #69778d;
  --sf-accent: #7fa8ff;
  --sf-accent-strong: #9abaff;
  --sf-accent-soft: rgba(127, 168, 255, 0.13);
  --sf-violet: #9b87ff;
  --sf-violet-soft: rgba(139, 92, 246, 0.13);
  --sf-cyan: #67d8ff;
  --sf-border: rgba(148, 163, 184, 0.17);
  --sf-border-strong: rgba(148, 180, 255, 0.34);
  --sf-border-bright: rgba(190, 210, 255, 0.52);
  --sf-shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.28);
  --sf-shadow-md: 0 24px 60px rgba(0, 0, 0, 0.42);
  --sf-shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.56);
  --sf-radius: 5px;
  --sf-font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sf-max: 1280px;
  --sf-reading: 700px;
  --sf-nav-h: 76px;
  --sf-gutter: clamp(18px, 3vw, 38px);
  --sf-section: clamp(76px, 8vw, 124px);
  --sf-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --sf-fast: 160ms;
  --sf-normal: 240ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 320px;
  background: var(--sf-bg);
  color: var(--sf-text);
  font-family: var(--sf-font);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(78, 112, 198, 0.11), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(91, 65, 178, 0.09), transparent 27%),
    linear-gradient(180deg, #020617 0%, #030819 48%, #020617 100%);
  color: var(--sf-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--sf-accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  color: var(--sf-text);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.85rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.85rem, 3.45vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  letter-spacing: -0.018em;
}

p {
  color: var(--sf-text-muted);
  line-height: 1.72;
}

::selection {
  color: #fff;
  background: rgba(127, 168, 255, 0.36);
}

:focus-visible {
  outline: 2px solid var(--sf-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

.sf-skip {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border: 1px solid var(--sf-border-bright);
  border-radius: var(--sf-radius);
  background: #0f1d3c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--sf-fast) var(--sf-ease);
}

.sf-skip:focus {
  transform: translateY(0);
}

.sf-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  isolation: isolate;
}

.sf-page::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.72) 0 0.7px, transparent 1px),
    radial-gradient(circle at 73% 23%, rgba(148, 180, 255, 0.66) 0 0.8px, transparent 1.2px),
    radial-gradient(circle at 39% 72%, rgba(255, 255, 255, 0.5) 0 0.55px, transparent 1px),
    radial-gradient(circle at 87% 81%, rgba(155, 135, 255, 0.58) 0 0.75px, transparent 1.2px);
  background-position: 0 0, 24px 18px, 11px 42px, 50px 4px;
  background-size: 136px 136px, 184px 184px, 223px 223px, 278px 278px;
  content: "";
  opacity: 0.44;
  pointer-events: none;
}

.sf-main {
  flex: 1;
  outline: none;
}

.sf-wrap {
  width: min(100%, calc(var(--sf-max) + (var(--sf-gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--sf-gutter);
}

.sf-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

/* Header */
.sf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--sf-nav-h);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.82);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(128%);
  -webkit-backdrop-filter: blur(18px) saturate(128%);
}

.sf-header .sf-wrap,
.sf-header-inner {
  height: 100%;
}

.sf-header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sf-logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--sf-text);
  flex: 0 0 auto;
}

.sf-logo img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 180, 255, 0.28);
  border-radius: var(--sf-radius);
  box-shadow: 0 0 22px rgba(127, 168, 255, 0.16);
}

.sf-logo-copy {
  display: grid;
  gap: 1px;
}

.sf-logo-name {
  color: #f8fafc;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  white-space: nowrap;
}

.sf-logo-copy small {
  color: var(--sf-text-dim);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.sf-nav {
  display: none;
  min-width: 0;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.sf-nav a,
.sf-lang-desktop a {
  border: 1px solid transparent;
  border-radius: var(--sf-radius);
  color: var(--sf-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    color var(--sf-fast) var(--sf-ease),
    border-color var(--sf-fast) var(--sf-ease),
    background var(--sf-fast) var(--sf-ease);
}

.sf-nav a {
  padding: 10px 9px;
}

.sf-nav a:hover,
.sf-nav a[aria-current="page"],
.sf-lang-desktop a:hover,
.sf-lang-desktop a[aria-current="true"] {
  border-color: var(--sf-border);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
}

.sf-header-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.sf-lang-desktop {
  display: none;
  align-items: center;
  gap: 1px;
  padding-right: 5px;
}

.sf-lang-desktop a {
  padding: 8px 7px;
}

.sf-mobile-menu {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.sf-mobile-menu summary {
  display: flex;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(15, 23, 42, 0.62);
  transition:
    background var(--sf-fast) var(--sf-ease),
    border-color var(--sf-fast) var(--sf-ease);
}

.sf-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.sf-mobile-menu summary:hover {
  border-color: var(--sf-border-strong);
  background: rgba(30, 41, 59, 0.78);
}

.sf-ham-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--sf-text-soft);
  transition:
    transform var(--sf-fast) var(--sf-ease),
    opacity var(--sf-fast) var(--sf-ease);
}

.sf-mobile-menu[open] .sf-ham-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.sf-mobile-menu[open] .sf-ham-bar:nth-child(2) {
  opacity: 0;
}

.sf-mobile-menu[open] .sf-ham-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.sf-mobile-drawer {
  position: fixed;
  inset: var(--sf-nav-h) 0 0;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
  padding: 22px var(--sf-gutter) max(26px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--sf-border);
  background:
    radial-gradient(circle at 80% 8%, rgba(90, 77, 170, 0.13), transparent 34%),
    rgba(2, 6, 23, 0.985);
}

.sf-mobile-drawer > a {
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: var(--sf-radius);
  color: var(--sf-text-soft);
  font-size: 1rem;
  font-weight: 600;
}

.sf-mobile-drawer > a:hover,
.sf-mobile-drawer > a[aria-current="page"] {
  border-color: var(--sf-border);
  background: var(--sf-surface);
  color: #fff;
}

.sf-mobile-drawer-sep {
  height: 1px;
  margin: 10px 0;
  background: var(--sf-border);
}

.sf-mobile-drawer-lang {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sf-mobile-drawer-lang a {
  padding: 11px 12px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(15, 23, 42, 0.48);
  color: var(--sf-text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.sf-mobile-drawer-lang a[aria-current="true"] {
  border-color: var(--sf-border-strong);
  color: #fff;
}

.sf-mobile-actions {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

html:has(.sf-mobile-menu[open]) {
  overflow: hidden;
}

/* Buttons */
.sf-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--sf-radius);
  font-family: var(--sf-font);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    transform var(--sf-fast) var(--sf-ease),
    color var(--sf-fast) var(--sf-ease),
    border-color var(--sf-fast) var(--sf-ease),
    background var(--sf-fast) var(--sf-ease),
    box-shadow var(--sf-fast) var(--sf-ease);
}

.sf-btn:hover {
  transform: translateY(-1px);
}

.sf-btn:active {
  transform: translateY(0);
}

.sf-btn-primary {
  border-color: rgba(148, 180, 255, 0.56);
  background:
    radial-gradient(circle at 8% 0%, rgba(127, 168, 255, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(49, 70, 126, 0.98), rgba(24, 38, 76, 0.99));
  box-shadow:
    0 10px 28px rgba(21, 45, 102, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sf-btn-primary:hover {
  border-color: rgba(190, 210, 255, 0.78);
  background:
    radial-gradient(circle at 8% 0%, rgba(155, 190, 255, 0.28), transparent 48%),
    linear-gradient(180deg, rgba(57, 81, 142, 0.99), rgba(28, 45, 88, 0.99));
  box-shadow:
    0 14px 34px rgba(31, 63, 140, 0.42),
    0 0 24px rgba(127, 168, 255, 0.11);
}

.sf-btn-secondary,
.sf-btn-ghost {
  border-color: var(--sf-border);
  background: rgba(8, 13, 28, 0.64);
  color: var(--sf-text-soft);
}

.sf-btn-secondary:hover,
.sf-btn-ghost:hover {
  border-color: var(--sf-border-strong);
  background: rgba(24, 34, 60, 0.82);
  color: #fff;
}

.sf-btn-sm {
  min-height: 36px;
  padding-inline: 13px;
  font-size: 0.76rem;
}

.sf-btn-lg {
  min-height: 52px;
  padding-inline: clamp(23px, 3vw, 32px);
  font-size: 0.94rem;
}

.sf-btn-full {
  width: 100%;
}

/* Home hero */
.sf-hero {
  position: relative;
  overflow: clip;
  padding: clamp(62px, 8vw, 112px) 0 clamp(82px, 9vw, 132px);
}

.sf-hero::before {
  position: absolute;
  width: min(66vw, 980px);
  height: min(66vw, 980px);
  top: -48%;
  right: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 112, 204, 0.13), rgba(84, 68, 170, 0.055) 42%, transparent 70%);
  content: "";
  pointer-events: none;
}

.sf-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.sf-hero-content {
  max-width: 700px;
}

.sf-hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 21px;
  color: var(--sf-accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.sf-hero-brandline span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--sf-accent), rgba(127, 168, 255, 0.08));
  box-shadow: 0 0 12px rgba(127, 168, 255, 0.42);
}

.sf-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 8%, #e4ebfa 58%, #aac4ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.sf-hero-intro {
  max-width: 670px;
  color: #aebbd0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

.sf-hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  list-style: none;
}

.sf-hero-points li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.45;
}

.sf-hero-points li > span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127, 168, 255, 0.32);
  border-radius: var(--sf-radius);
  background: rgba(49, 70, 126, 0.2);
  color: var(--sf-accent-strong);
}

.sf-hero-points .sf-icon {
  width: 14px;
  height: 14px;
}

.sf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.sf-hero-note {
  margin-top: 18px;
  color: var(--sf-text-dim);
  font-size: 0.76rem;
  letter-spacing: 0.025em;
}

.sf-hero-visual {
  min-width: 0;
}

.sf-showcase {
  position: relative;
  width: min(100%, 560px);
  min-height: 520px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(148, 180, 255, 0.28);
  border-radius: var(--sf-radius);
  background: #04091c;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 70px rgba(66, 89, 176, 0.1);
  isolation: isolate;
}

.sf-showcase::before,
.sf-showcase::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.sf-showcase::before {
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 30%),
    linear-gradient(90deg, rgba(127, 168, 255, 0.025), transparent 22%, transparent 78%, rgba(155, 135, 255, 0.025));
}

.sf-showcase::after {
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--sf-radius);
}

.sf-showcase-sky {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.48)),
    url("/assets/premium-constellations/premium-30d.webp");
  background-position: 58% center;
  background-size: cover;
  filter: saturate(0.82) brightness(0.72);
  transform: scale(1.04);
}

.sf-showcase-glow {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  top: 52%;
  left: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 168, 255, 0.24), rgba(91, 65, 178, 0.1) 43%, transparent 72%);
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.sf-showcase-brand {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  display: flex;
  width: min(78%, 390px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.sf-showcase-brand img {
  width: clamp(150px, 37vw, 215px);
  height: auto;
  margin-bottom: 18px;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.11))
    drop-shadow(0 0 30px rgba(127, 168, 255, 0.12));
}

.sf-showcase-brand span {
  margin-bottom: 7px;
  color: rgba(190, 210, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sf-showcase-brand strong {
  color: #f8fafc;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.sf-showcase-signal {
  position: absolute;
  z-index: 5;
  display: flex;
  max-width: min(240px, 70%);
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(148, 180, 255, 0.27);
  border-radius: var(--sf-radius);
  background: rgba(6, 13, 31, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  color: #dce8ff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sf-showcase-signal-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127, 168, 255, 0.25);
  border-radius: var(--sf-radius);
  background: rgba(49, 70, 126, 0.24);
  color: var(--sf-accent-strong);
}

.sf-showcase-signal-icon .sf-icon {
  width: 16px;
  height: 16px;
}

.sf-showcase-signal--verified {
  top: 52px;
  right: 34px;
}

.sf-showcase-signal--video {
  bottom: 64px;
  left: 28px;
}

.sf-showcase-signal--chat {
  right: 28px;
  bottom: 32px;
}

/* Shared section headings */
.sf-section-header {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.sf-section-header--left {
  margin-left: 0;
  text-align: left;
}

.sf-section-header h2 {
  margin-bottom: 15px;
}

.sf-section-header p {
  max-width: 650px;
  color: var(--sf-text-muted);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

.sf-section-header:not(.sf-section-header--left) p {
  margin-inline: auto;
}

.sf-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--sf-accent-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sf-section-kicker::before {
  width: 24px;
  height: 1px;
  background: var(--sf-accent);
  content: "";
  opacity: 0.75;
}

/* Feature bento */
.sf-features-section {
  position: relative;
  padding: var(--sf-section) 0;
  border-block: 1px solid rgba(148, 163, 184, 0.09);
  background:
    radial-gradient(circle at 10% 15%, rgba(127, 168, 255, 0.07), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.06), transparent 30%),
    rgba(1, 5, 17, 0.6);
}

.sf-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.sf-feature {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 176px;
  overflow: hidden;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background:
    linear-gradient(145deg, rgba(18, 30, 58, 0.73), rgba(7, 13, 29, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform var(--sf-normal) var(--sf-ease),
    border-color var(--sf-normal) var(--sf-ease),
    background var(--sf-normal) var(--sf-ease);
}

.sf-feature::after {
  position: absolute;
  width: 170px;
  height: 170px;
  top: -95px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 168, 255, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.sf-feature:hover {
  border-color: var(--sf-border-strong);
  background: linear-gradient(145deg, rgba(23, 38, 72, 0.82), rgba(8, 16, 35, 0.94));
  transform: translateY(-2px);
}

.sf-feature-icon,
.sf-trust-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127, 168, 255, 0.27);
  border-radius: var(--sf-radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(127, 168, 255, 0.22), transparent 65%),
    rgba(20, 34, 65, 0.6);
  color: var(--sf-accent-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.sf-feature-icon .sf-icon,
.sf-trust-icon .sf-icon {
  width: 23px;
  height: 23px;
}

.sf-feature-copy {
  min-width: 0;
}

.sf-feature h3 {
  margin-bottom: 10px;
}

.sf-feature p {
  color: var(--sf-text-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

/* Steps */
.sf-steps-section {
  position: relative;
  padding: var(--sf-section) 0;
}

.sf-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.sf-step {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(8, 14, 31, 0.72);
}

.sf-step-num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127, 168, 255, 0.4);
  border-radius: var(--sf-radius);
  background: rgba(43, 61, 111, 0.42);
  color: #dbeafe;
  font-size: 0.77rem;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(127, 168, 255, 0.08);
}

.sf-step-body h3 {
  margin-bottom: 7px;
}

.sf-step-body p {
  font-size: 0.87rem;
  line-height: 1.66;
}

.sf-steps-detailed {
  margin-block: 34px 0;
}

.sf-steps-detailed .sf-step {
  min-height: 180px;
  flex-direction: column;
}

.sf-steps-detailed .sf-step-num {
  width: 44px;
  height: 44px;
}

/* Trust */
.sf-trust-section {
  padding: var(--sf-section) 0;
  border-block: 1px solid rgba(148, 163, 184, 0.09);
  background:
    linear-gradient(180deg, rgba(3, 9, 25, 0.72), rgba(1, 5, 17, 0.86)),
    url("/assets/premium-constellations/premium-7d.webp") center / cover no-repeat;
  background-blend-mode: normal, luminosity;
}

.sf-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.sf-trust-item {
  display: flex;
  min-width: 0;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(148, 180, 255, 0.18);
  border-radius: var(--sf-radius);
  background: rgba(5, 11, 26, 0.82);
  box-shadow: var(--sf-shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sf-trust-icon {
  width: 42px;
  height: 42px;
}

.sf-trust-icon .sf-icon {
  width: 20px;
  height: 20px;
}

.sf-trust-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.sf-trust-item p {
  font-size: 0.84rem;
  line-height: 1.63;
}

.sf-trust-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Premium */
.sf-premium-section {
  position: relative;
  overflow: clip;
  padding: var(--sf-section) 0;
}

.sf-premium-section::before {
  position: absolute;
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  right: -34%;
  bottom: -52%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 90, 224, 0.13), transparent 69%);
  content: "";
}

.sf-premium-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(148, 180, 255, 0.21);
  border-radius: var(--sf-radius);
  background:
    linear-gradient(90deg, rgba(3, 8, 23, 0.95) 0%, rgba(3, 8, 23, 0.82) 47%, rgba(3, 8, 23, 0.35) 100%),
    url("/assets/premium-constellations/premium-90d.webp") 67% center / cover no-repeat;
  box-shadow: var(--sf-shadow-md);
}

.sf-premium-content {
  max-width: 610px;
}

.sf-premium-content h2 {
  margin-bottom: 15px;
}

.sf-premium-content > p {
  margin-bottom: 25px;
  font-size: 0.98rem;
}

.sf-premium-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  list-style: none;
}

.sf-premium-list li {
  position: relative;
  padding-left: 26px;
  color: #c4cfdf;
  font-size: 0.87rem;
  line-height: 1.5;
}

.sf-premium-list li::before {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 0;
  border: 1px solid rgba(127, 168, 255, 0.38);
  border-radius: var(--sf-radius);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3.5 8.2 2.7 2.7 6.3-6.1' stroke='%239abaff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px no-repeat,
    rgba(43, 61, 111, 0.32);
  content: "";
}

.sf-premium-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
  align-content: center;
}

.sf-premium-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 180, 255, 0.2);
  border-radius: var(--sf-radius);
  background: rgba(4, 10, 25, 0.72);
  color: #d8e4f7;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.sf-premium-card-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127, 168, 255, 0.24);
  border-radius: var(--sf-radius);
  background: rgba(43, 61, 111, 0.34);
  color: var(--sf-accent-strong);
}

.sf-premium-card-icon .sf-icon {
  width: 17px;
  height: 17px;
}

.sf-premium-durations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.sf-duration-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(127, 168, 255, 0.25);
  border-radius: var(--sf-radius);
  background: rgba(43, 61, 111, 0.25);
  color: #cfe0ff;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Final CTA */
.sf-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) 0;
  border-block: 1px solid rgba(148, 163, 184, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(90, 116, 208, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(4, 10, 26, 0.82), rgba(2, 6, 23, 0.96));
  text-align: center;
}

.sf-cta-section::before {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(127, 168, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(127, 168, 255, 0.025),
    0 0 0 110px rgba(127, 168, 255, 0.016);
  content: "";
  transform: translate(-50%, -50%);
}

.sf-cta-section .sf-wrap {
  position: relative;
  z-index: 1;
}

.sf-cta-section h2 {
  max-width: 850px;
  margin: 0 auto 16px;
}

.sf-cta-section > .sf-wrap > p {
  max-width: 670px;
  margin: 0 auto 30px;
  font-size: 0.98rem;
}

.sf-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Shared inner pages */
.sf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: clamp(30px, 5vw, 54px);
  color: var(--sf-text-dim);
  font-size: 0.76rem;
  flex-wrap: wrap;
}

.sf-breadcrumb a {
  color: var(--sf-text-muted);
}

.sf-breadcrumb a:hover {
  color: #fff;
}

.sf-breadcrumb-sep {
  color: #4d5b70;
}

.sf-breadcrumb [aria-current="page"] {
  color: #c7d2e3;
}

.sf-page-hero {
  position: relative;
  max-width: 900px;
  margin-bottom: clamp(30px, 5vw, 54px);
  padding: clamp(48px, 7vw, 84px) 0 clamp(42px, 5vw, 62px);
  border-bottom: 1px solid var(--sf-border);
}

.sf-page-hero::after {
  position: absolute;
  width: 120px;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: linear-gradient(90deg, var(--sf-accent), transparent);
  content: "";
}

.sf-page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.15rem);
}

.sf-page-hero p {
  max-width: var(--sf-reading);
  color: #aebbd0;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
}

.sf-cards,
.sf-premium-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.sf-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: linear-gradient(145deg, rgba(17, 28, 53, 0.72), rgba(7, 13, 29, 0.86));
}

.sf-card::before {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -62px;
  right: -58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 168, 255, 0.1), transparent 70%);
  content: "";
}

.sf-card h2,
.sf-card h3 {
  margin-bottom: 10px;
}

.sf-card h2 {
  font-size: 1.1rem;
}

.sf-card h3 {
  font-size: 1rem;
}

.sf-card p {
  font-size: 0.89rem;
}

.sf-note {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid rgba(127, 168, 255, 0.2);
  border-left-color: rgba(127, 168, 255, 0.72);
  border-radius: var(--sf-radius);
  background: rgba(43, 61, 111, 0.13);
}

.sf-note p {
  color: #b5c0d1;
  font-size: 0.87rem;
}

.sf-cta {
  position: relative;
  overflow: hidden;
  margin: clamp(46px, 7vw, 80px) 0;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(148, 180, 255, 0.22);
  border-radius: var(--sf-radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(127, 168, 255, 0.11), transparent 33%),
    linear-gradient(145deg, rgba(17, 29, 57, 0.78), rgba(5, 11, 26, 0.9));
  text-align: center;
}

.sf-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.sf-cta p {
  max-width: 630px;
  margin: 0 auto 22px;
}

/* FAQ and support */
.sf-contact {
  display: grid;
  gap: 12px;
  margin: 30px 0 56px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(148, 180, 255, 0.22);
  border-radius: var(--sf-radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(127, 168, 255, 0.1), transparent 34%),
    rgba(8, 15, 33, 0.78);
}

.sf-contact h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.sf-contact p {
  max-width: 650px;
  font-size: 0.9rem;
}

.sf-contact-email {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(127, 168, 255, 0.31);
  border-radius: var(--sf-radius);
  background: rgba(43, 61, 111, 0.25);
  color: #d9e6ff;
  font-size: 0.87rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.sf-contact-email:hover {
  border-color: var(--sf-border-bright);
  background: rgba(43, 61, 111, 0.4);
}

.sf-faq {
  display: grid;
  gap: 9px;
  margin: 24px 0 clamp(56px, 8vw, 90px);
}

.sf-faq-item {
  overflow: hidden;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(8, 15, 33, 0.72);
  transition: border-color var(--sf-fast) var(--sf-ease);
}

.sf-faq-item[open] {
  border-color: var(--sf-border-strong);
}

.sf-faq-q {
  display: flex;
  min-height: 58px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: #e8edf6;
  font-size: 0.9rem;
  font-weight: 700;
}

.sf-faq-q::-webkit-details-marker {
  display: none;
}

.sf-faq-q:hover {
  background: rgba(30, 41, 59, 0.44);
}

.sf-faq-indicator {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  color: var(--sf-accent-strong);
  font-size: 1rem;
  font-weight: 400;
  transition: transform var(--sf-fast) var(--sf-ease);
}

.sf-faq-item[open] .sf-faq-indicator {
  transform: rotate(45deg);
}

.sf-faq-a {
  padding: 0 18px 18px;
  color: var(--sf-text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* Footer */
.sf-footer {
  margin-top: auto;
  padding: clamp(52px, 7vw, 78px) 0 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.11);
  background:
    radial-gradient(circle at 15% 0%, rgba(127, 168, 255, 0.055), transparent 30%),
    rgba(1, 5, 16, 0.92);
}

.sf-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  margin-bottom: 42px;
}

.sf-footer-brand .sf-logo {
  margin-bottom: 15px;
}

.sf-footer-brand .sf-logo img {
  width: 36px;
  height: 36px;
}

.sf-footer-brand p {
  max-width: 330px;
  color: var(--sf-text-dim);
  font-size: 0.79rem;
  line-height: 1.65;
}

.sf-footer-col h4 {
  margin-bottom: 14px;
  color: #718099;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sf-footer-col > a:not(.sf-btn) {
  display: block;
  width: fit-content;
  padding: 4px 0;
  color: var(--sf-text-muted);
  font-size: 0.82rem;
}

.sf-footer-col > a:not(.sf-btn):hover {
  color: #fff;
}

.sf-footer-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sf-footer-lang a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(15, 23, 42, 0.48);
  color: var(--sf-text-muted);
  font-size: 0.73rem;
  font-weight: 600;
}

.sf-footer-lang a:hover,
.sf-footer-lang a[aria-current="true"] {
  border-color: var(--sf-border-strong);
  color: #fff;
}

.sf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--sf-border);
  flex-wrap: wrap;
}

.sf-footer-copy,
.sf-footer-legal a {
  color: #5f6d82;
  font-size: 0.72rem;
}

.sf-footer-legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sf-footer-legal a:hover {
  color: var(--sf-text-muted);
}

/* Root selector and 404 */
.sf-root-page,
.sf-404 {
  display: flex;
  min-height: calc(100vh - var(--sf-nav-h));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.sf-root-page > img {
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 24px rgba(127, 168, 255, 0.15));
}

.sf-root-page h1,
.sf-404 h1 {
  margin-bottom: 12px;
}

.sf-root-page > p,
.sf-404 > p:not(.sf-404-code) {
  max-width: 500px;
  margin-bottom: 32px;
}

.sf-locale-grid {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.sf-locale-btn {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(9, 16, 35, 0.72);
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 700;
}

.sf-locale-btn:hover {
  border-color: var(--sf-border-strong);
  background: rgba(24, 35, 66, 0.78);
}

.sf-locale-btn span {
  color: var(--sf-text-dim);
  font-size: 0.7rem;
  font-weight: 500;
}

.sf-404-code {
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff, var(--sf-accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(4.5rem, 16vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.sf-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sf-section-pad {
  padding: var(--sf-section) 0;
}

/* Responsive composition */
@media (min-width: 560px) {
  .sf-hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-hero-points li:last-child {
    grid-column: 1 / -1;
  }

  .sf-features,
  .sf-trust-grid,
  .sf-cards,
  .sf-premium-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (min-width: 768px) {
  .sf-showcase {
    min-height: 560px;
  }

  .sf-feature {
    min-height: 205px;
    flex-direction: column;
  }

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

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

@media (min-width: 1024px) {
  .sf-nav {
    display: flex;
  }

  .sf-header-actions {
    display: flex;
  }

  .sf-mobile-menu {
    display: none;
  }

  .sf-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  }

  .sf-hero-content {
    padding-right: 12px;
  }

  .sf-features {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sf-feature {
    min-height: 218px;
  }

  .sf-feature--1,
  .sf-feature--2 {
    grid-column: span 6;
  }

  .sf-feature--3,
  .sf-feature--4,
  .sf-feature--5,
  .sf-feature--6 {
    grid-column: span 3;
  }

  .sf-feature--1,
  .sf-feature--2 {
    flex-direction: row;
    align-items: flex-start;
  }

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

  .sf-step {
    min-height: 220px;
    flex-direction: column;
  }

  .sf-step:not(:last-child)::after {
    position: absolute;
    width: 12px;
    height: 1px;
    top: 40px;
    right: -13px;
    background: linear-gradient(90deg, rgba(127, 168, 255, 0.52), rgba(127, 168, 255, 0.08));
    content: "";
  }

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

  .sf-trust-item {
    flex-direction: column;
  }

  .sf-premium-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .sf-footer-grid {
    grid-template-columns: 1.5fr 0.85fr 0.85fr 0.9fr;
  }

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

@media (min-width: 1180px) {
  .sf-lang-desktop {
    display: flex;
  }

  .sf-nav a {
    padding-inline: 11px;
  }
}

@media (min-width: 1380px) {
  .sf-header-inner {
    gap: 28px;
  }

  .sf-nav a {
    padding-inline: 13px;
  }

  .sf-showcase {
    min-height: 590px;
  }
}

@media (max-width: 1179px) and (min-width: 1024px) {
  .sf-logo-copy small {
    display: none;
  }

  .sf-header-inner {
    gap: 12px;
  }

  .sf-nav a {
    padding-inline: 7px;
    font-size: 0.73rem;
  }

  .sf-header-actions .sf-btn-primary {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --sf-nav-h: 68px;
  }

  .sf-logo img {
    width: 36px;
    height: 36px;
  }

  .sf-logo-copy small {
    display: none;
  }

  .sf-hero-actions .sf-btn {
    flex: 1 1 150px;
  }

  .sf-showcase {
    min-height: 450px;
  }

  .sf-showcase-brand {
    width: 78%;
  }

  .sf-showcase-signal--verified {
    top: 26px;
    right: 16px;
  }

  .sf-showcase-signal--video {
    bottom: 54px;
    left: 16px;
  }

  .sf-showcase-signal--chat {
    right: 16px;
    bottom: 16px;
  }

  .sf-feature {
    min-height: 0;
  }

  .sf-premium-inner {
    background:
      linear-gradient(180deg, rgba(3, 8, 23, 0.9), rgba(3, 8, 23, 0.72)),
      url("/assets/premium-constellations/premium-90d.webp") center / cover no-repeat;
  }

  .sf-trust-ctas .sf-btn {
    flex: 1 1 170px;
  }

  .sf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  h1 {
    font-size: clamp(2.15rem, 12vw, 3.1rem);
  }

  .sf-hero {
    padding-top: 52px;
  }

  .sf-hero-points {
    grid-template-columns: 1fr;
  }

  .sf-hero-points li:last-child {
    grid-column: auto;
  }

  .sf-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sf-hero-actions .sf-btn {
    width: 100%;
    flex: none;
  }

  .sf-showcase {
    min-height: 410px;
  }

  .sf-showcase-brand img {
    width: 150px;
  }

  .sf-showcase-brand strong {
    font-size: 0.92rem;
  }

  .sf-showcase-signal {
    max-width: 74%;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .sf-showcase-signal-icon {
    width: 25px;
    height: 25px;
  }

  .sf-feature,
  .sf-trust-item,
  .sf-step {
    padding: 20px;
  }

  .sf-feature {
    flex-direction: column;
  }

  .sf-mobile-drawer-lang {
    grid-template-columns: 1fr;
  }

  .sf-contact-email {
    width: 100%;
  }
}

/* Keep the primary action close to the opening message on compact screens. */
.sf-hero-content {
  display: flex;
  flex-direction: column;
}
.sf-hero-brandline { order: 1; }
.sf-hero-content > h1 { order: 2; }
.sf-hero-intro { order: 3; }
.sf-hero-actions { order: 4; }
.sf-hero-points { order: 5; }
.sf-hero-note { order: 6; }

@media (min-width: 768px) {
  .sf-hero-points { order: 4; }
  .sf-hero-actions { order: 5; }
}

/* The drawer is anchored to the sticky header rather than to the filtered details element. */
.sf-mobile-drawer {
  position: absolute;
  inset: 100% 0 auto;
  width: 100vw;
  height: calc(100dvh - var(--sf-nav-h));
}

/* --------------------------------------------------------------------------
   Conversion-focused private-club header, product mockup and access section
   -------------------------------------------------------------------------- */

.sf-header-inner {
  justify-content: space-between;
}

.sf-header-tools,
.sf-header-auth {
  display: flex;
  min-width: 0;
  align-items: center;
}

.sf-header-tools {
  gap: 12px;
  margin-left: auto;
}

.sf-header-auth {
  gap: 8px;
}

.sf-language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.sf-language-switcher summary {
  display: inline-flex;
  min-width: 132px;
  min-height: 40px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(8, 14, 32, 0.76);
  color: var(--sf-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  transition:
    border-color var(--sf-fast) var(--sf-ease),
    background var(--sf-fast) var(--sf-ease),
    color var(--sf-fast) var(--sf-ease);
}

.sf-language-switcher summary::-webkit-details-marker {
  display: none;
}

.sf-language-switcher summary:hover,
.sf-language-switcher[open] summary {
  border-color: var(--sf-border-strong);
  background: rgba(18, 29, 58, 0.92);
  color: #fff;
}

.sf-flag {
  display: inline-flex;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.28);
}

.sf-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sf-language-chevron {
  width: 14px;
  height: 14px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--sf-fast) var(--sf-ease);
}

.sf-language-switcher[open] .sf-language-chevron {
  transform: rotate(180deg);
}

.sf-language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  display: grid;
  width: 188px;
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--sf-border-strong);
  border-radius: var(--sf-radius);
  background: rgba(4, 9, 24, 0.985);
  box-shadow: var(--sf-shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sf-language-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--sf-radius);
  color: var(--sf-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.sf-language-menu a:hover,
.sf-language-menu a[aria-current="true"] {
  border-color: var(--sf-border);
  background: rgba(30, 46, 83, 0.64);
  color: #fff;
}

/* The main landing header intentionally has no distracting page navigation. */
.sf-nav,
.sf-lang-desktop,
.sf-mobile-menu {
  display: none;
}

.sf-hero {
  padding-top: clamp(54px, 6vw, 88px);
}

.sf-hero-grid {
  gap: clamp(42px, 6vw, 86px);
}

.sf-hero-content {
  max-width: 690px;
}

.sf-hero-content > h1 {
  max-width: 670px;
}

.sf-hero-intro {
  max-width: 650px;
}

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

.sf-hero-points li:last-child {
  grid-column: auto;
}

.sf-hero-brandline,
.sf-hero-content > h1,
.sf-hero-intro,
.sf-hero-points,
.sf-hero-actions {
  order: initial;
}

.sf-hero-note {
  display: none;
}

.sf-product-stage {
  position: relative;
  display: grid;
  width: min(100%, 570px);
  min-height: 650px;
  margin-inline: auto;
  place-items: center;
  isolation: isolate;
}

.sf-product-stage::before {
  position: absolute;
  z-index: -3;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 115, 220, 0.2), rgba(78, 59, 160, 0.09) 48%, transparent 72%);
  content: "";
  filter: blur(8px);
}

.sf-product-stage::after {
  position: absolute;
  inset: 7% 3%;
  z-index: -4;
  border: 1px solid rgba(127, 168, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-9deg);
}

.sf-product-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(127, 168, 255, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.sf-product-orbit--one {
  width: 88%;
  height: 54%;
  transform: rotate(17deg);
}

.sf-product-orbit--two {
  width: 64%;
  height: 78%;
  transform: rotate(-22deg);
}

.sf-phone-shell {
  position: relative;
  width: min(72vw, 342px);
  padding: 8px;
  border: 1px solid rgba(190, 210, 255, 0.34);
  border-radius: 31px;
  background: linear-gradient(145deg, #18233d, #050a17 48%, #1b2948);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 0 46px rgba(69, 105, 205, 0.16);
}

.sf-phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 5;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: rgba(150, 165, 195, 0.28);
  transform: translateX(-50%);
}

.sf-phone-screen {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: #060b1c;
}

.sf-phone-appbar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(12, 20, 40, 0.98);
  color: #f8fafc;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sf-phone-appbar img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
}

.sf-phone-photo {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #111827;
}

.sf-phone-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 20, 0.62));
  content: "";
}

.sf-phone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.sf-phone-online {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(69, 205, 139, 0.34);
  border-radius: var(--sf-radius);
  background: rgba(4, 18, 17, 0.82);
  color: #b8f7d7;
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.sf-phone-online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d486;
  box-shadow: 0 0 10px rgba(53, 212, 134, 0.78);
}

.sf-phone-profile {
  display: grid;
  gap: 9px;
  padding: 17px 18px 18px;
}

.sf-phone-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-phone-name-row strong {
  color: #f8fafc;
  font-size: 1.22rem;
  line-height: 1.15;
}

.sf-phone-verified {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(127, 168, 255, 0.34);
  border-radius: var(--sf-radius);
  background: rgba(45, 72, 137, 0.3);
  color: #9fbeff;
}

.sf-phone-verified .sf-icon {
  width: 15px;
  height: 15px;
}

.sf-phone-location {
  color: #8e9bb0;
  font-size: 0.72rem;
  line-height: 1.4;
}

.sf-phone-status {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(53, 212, 134, 0.34);
  border-radius: var(--sf-radius);
  background: rgba(6, 42, 31, 0.54);
  color: #7ce9b2;
  font-size: 0.7rem;
  font-weight: 700;
}

.sf-phone-status .sf-icon {
  width: 15px;
  height: 15px;
}

.sf-phone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sf-phone-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--sf-radius);
  background: rgba(20, 31, 57, 0.64);
  color: #aebbd0;
  font-size: 0.61rem;
  font-weight: 700;
}

.sf-phone-about {
  padding-top: 2px;
}

.sf-phone-about small {
  display: block;
  margin-bottom: 4px;
  color: #66758d;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.sf-phone-about p {
  color: #9ca9bd;
  font-size: 0.66rem;
  line-height: 1.5;
}

.sf-phone-cta {
  min-height: 36px;
  border: 1px solid rgba(148, 180, 255, 0.48);
  border-radius: var(--sf-radius);
  background: linear-gradient(180deg, rgba(49, 70, 126, 0.98), rgba(24, 38, 76, 0.99));
  color: #fff;
  font: 700 0.7rem/1 var(--sf-font);
}

.sf-phone-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  padding: 10px 6px 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #0c1428;
}

.sf-phone-nav > span {
  display: grid;
  place-items: center;
  gap: 3px;
  color: #5e6d85;
}

.sf-phone-nav .sf-icon {
  width: 17px;
  height: 17px;
}

.sf-phone-nav small {
  font-size: 0.46rem;
  font-weight: 700;
}

.sf-phone-nav .is-active {
  color: #78a2ff;
}

.sf-product-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(148, 180, 255, 0.3);
  border-radius: var(--sf-radius);
  background: rgba(8, 15, 34, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  color: #d9e3f2;
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sf-product-badge .sf-icon {
  width: 17px;
  height: 17px;
  color: #8fb1ff;
}

.sf-product-badge--verified {
  top: 68px;
  right: 0;
}

.sf-product-badge--video {
  top: 38%;
  left: 0;
}

.sf-product-badge--media {
  right: -4px;
  bottom: 132px;
}

.sf-product-badge--gift {
  bottom: 74px;
  left: 4px;
}

.sf-access-section {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background:
    radial-gradient(circle at 85% 16%, rgba(85, 111, 206, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(6, 12, 30, 0.9), rgba(3, 8, 22, 0.96));
}

.sf-access-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.sf-access-heading h2 {
  margin: 10px 0 16px;
}

.sf-access-heading > p {
  max-width: 720px;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.sf-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.sf-access-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background:
    linear-gradient(145deg, rgba(21, 34, 65, 0.74), rgba(7, 13, 30, 0.88));
  box-shadow: var(--sf-shadow-sm);
}

.sf-access-card::after {
  position: absolute;
  inset: auto -18% -42% 28%;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 111, 211, 0.13), transparent 70%);
  content: "";
  pointer-events: none;
}

.sf-access-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(148, 180, 255, 0.3);
  border-radius: var(--sf-radius);
  background: rgba(45, 68, 126, 0.24);
  color: #9abaff;
}

.sf-access-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(148, 180, 255, 0.22);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.sf-access-card h3 {
  margin-bottom: 12px;
}

.sf-access-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

@media (min-width: 700px) {
  .sf-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-access-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .sf-header-tools {
    display: flex;
  }

  .sf-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  }

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

  .sf-access-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .sf-product-stage {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  :root {
    --sf-nav-h: 118px;
  }

  .sf-header {
    height: auto;
    min-height: var(--sf-nav-h);
  }

  .sf-header .sf-wrap,
  .sf-header-inner {
    height: auto;
  }

  .sf-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding-block: 10px;
  }

  .sf-header-tools {
    display: contents;
  }

  .sf-language-switcher {
    grid-column: 2;
    grid-row: 1;
  }

  .sf-language-switcher summary {
    min-width: 126px;
  }

  .sf-header-auth {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 8px;
  }

  .sf-header-auth .sf-btn {
    width: 100%;
  }

  .sf-hero {
    padding-top: 44px;
  }

  .sf-hero-points {
    grid-template-columns: 1fr;
  }

  .sf-product-stage {
    min-height: 590px;
  }

  .sf-phone-shell {
    width: min(82vw, 330px);
  }

  .sf-product-badge--verified {
    top: 54px;
    right: 0;
  }

  .sf-product-badge--video {
    left: 0;
  }

  .sf-product-badge--media {
    right: 0;
  }
}

@media (max-width: 420px) {
  .sf-logo-name {
    display: none;
  }

  .sf-language-switcher summary {
    min-width: 122px;
  }

  .sf-product-stage {
    min-height: 552px;
  }

  .sf-phone-shell {
    width: min(83vw, 300px);
    padding: 6px;
    border-radius: 27px;
  }

  .sf-phone-screen {
    border-radius: 21px;
  }

  .sf-phone-photo {
    height: 224px;
  }

  .sf-phone-profile {
    gap: 7px;
    padding: 13px 14px 14px;
  }

  .sf-phone-about {
    display: none;
  }

  .sf-phone-nav {
    padding-block: 8px 10px;
  }

  .sf-product-badge {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 0.62rem;
  }

  .sf-product-badge--verified {
    top: 58px;
  }

  .sf-product-badge--video {
    top: 39%;
  }

  .sf-product-badge--media {
    bottom: 106px;
  }

  .sf-product-badge--gift {
    bottom: 58px;
  }

  .sf-access-card {
    padding: 22px;
  }
}

@media (max-width: 350px) {
  .sf-language-switcher summary {
    min-width: 112px;
    padding-inline: 8px;
  }

  .sf-header-auth .sf-btn {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .sf-product-badge--verified,
  .sf-product-badge--media {
    right: -5px;
  }

  .sf-product-badge--video,
  .sf-product-badge--gift {
    left: -5px;
  }
}


/* --------------------------------------------------------------------------
   Final public landing refinements: silver identity, socials, footer,
   vertical journey timeline and progressive scroll reveals.
   -------------------------------------------------------------------------- */

.sf-logo img.sf-brand-mark {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 0 14px rgba(223, 231, 247, 0.18));
}

.sf-footer-brand .sf-logo img.sf-brand-mark {
  width: 44px;
  height: 44px;
}

.sf-phone-appbar img.sf-brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(236, 241, 250, 0.18));
}

.sf-social-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sf-social-link {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: rgba(8, 14, 32, 0.68);
  color: #9aaaca;
  transition:
    border-color var(--sf-fast) var(--sf-ease),
    background var(--sf-fast) var(--sf-ease),
    color var(--sf-fast) var(--sf-ease),
    transform var(--sf-fast) var(--sf-ease);
}

.sf-social-link:hover {
  border-color: var(--sf-border-strong);
  background: rgba(28, 43, 82, 0.82);
  color: #eef4ff;
  transform: translateY(-2px);
}

.sf-social-link:focus-visible {
  outline: 2px solid rgba(143, 177, 255, 0.88);
  outline-offset: 2px;
}

.sf-social-link svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.sf-social-link svg rect,
.sf-social-link svg circle:not(.sf-social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sf-social-link .sf-social-dot {
  fill: currentColor;
  stroke: none;
}

.sf-footer-brand .sf-social-links {
  margin-top: 18px;
}

.sf-language-switcher--footer {
  width: fit-content;
}

.sf-language-switcher--footer summary {
  min-width: 146px;
  background: rgba(10, 17, 38, 0.68);
}

.sf-language-switcher--footer .sf-language-menu {
  top: auto;
  right: auto;
  bottom: calc(100% + 8px);
  left: 0;
}

.sf-footer-grid {
  align-items: start;
}

.sf-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.sf-timeline::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 53px;
  width: 1px;
  background: linear-gradient(180deg, rgba(131, 166, 242, 0.1), rgba(131, 166, 242, 0.52), rgba(131, 166, 242, 0.1));
  content: "";
  pointer-events: none;
}

.sf-timeline-item {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 28px 24px 20px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background:
    linear-gradient(100deg, rgba(24, 37, 72, 0.72), rgba(7, 13, 30, 0.78) 42%, rgba(5, 10, 24, 0.9));
  box-shadow: var(--sf-shadow-sm);
  transition:
    border-color var(--sf-fast) var(--sf-ease),
    background var(--sf-fast) var(--sf-ease),
    transform var(--sf-fast) var(--sf-ease);
}

.sf-timeline-item:hover {
  border-color: rgba(139, 174, 255, 0.32);
  background:
    linear-gradient(100deg, rgba(29, 45, 86, 0.8), rgba(9, 16, 36, 0.84) 42%, rgba(5, 10, 24, 0.94));
  transform: translateX(4px);
}

.sf-timeline-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 66px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 174, 255, 0.38);
  border-radius: var(--sf-radius);
  background: rgba(35, 54, 103, 0.72);
  box-shadow: 0 0 0 8px rgba(5, 11, 27, 0.76), 0 0 22px rgba(83, 124, 224, 0.12);
  color: #dbe7ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sf-timeline-copy {
  min-width: 0;
}

.sf-timeline-copy h3 {
  margin-bottom: 7px;
  color: #f4f7fd;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.sf-timeline-copy p {
  max-width: 850px;
  color: var(--sf-text-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.sf-motion-ready .sf-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms var(--sf-ease),
    transform 720ms var(--sf-ease);
  transition-delay: var(--sf-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.sf-motion-ready .sf-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1024px) {
  .sf-footer-grid {
    grid-template-columns: minmax(300px, 1.5fr) minmax(190px, 0.72fr) minmax(190px, 0.7fr);
  }
}

@media (max-width: 640px) {
  .sf-header-inner {
    grid-template-columns: auto minmax(76px, 1fr) auto;
  }

  .sf-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .sf-social-links--header {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .sf-language-switcher {
    grid-column: 3;
    grid-row: 1;
  }

  .sf-header-auth {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .sf-language-switcher--footer {
    grid-column: auto;
    grid-row: auto;
  }

  .sf-language-switcher--footer summary {
    min-width: 146px;
  }

  .sf-timeline {
    gap: 12px;
    margin-top: 28px;
  }

  .sf-timeline::before {
    top: 32px;
    bottom: 32px;
    left: 38px;
  }

  .sf-timeline-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 17px 18px 14px;
  }

  .sf-timeline-item:hover {
    transform: none;
  }

  .sf-timeline-number {
    width: 48px;
    height: 46px;
    box-shadow: 0 0 0 6px rgba(5, 11, 27, 0.76), 0 0 18px rgba(83, 124, 224, 0.1);
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .sf-logo img.sf-brand-mark {
    width: 42px;
    height: 42px;
  }

  .sf-social-links--header {
    gap: 5px;
  }

  .sf-social-links--header .sf-social-link {
    width: 34px;
    height: 34px;
  }

  .sf-social-links--header .sf-social-link svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 350px) {
  .sf-header-inner {
    gap: 9px 7px;
  }

  .sf-social-links--header {
    gap: 4px;
  }

  .sf-social-links--header .sf-social-link {
    width: 31px;
    height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sf-motion-ready .sf-reveal,
  .sf-motion-ready .sf-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sf-social-link,
  .sf-timeline-item {
    transition: none;
  }
}
