:root {
  --bg: #050914;
  --bg-deep: #02040a;
  --panel: rgba(9, 18, 35, 0.72);
  --panel-strong: rgba(12, 26, 50, 0.86);
  --text: #f3f8ff;
  --muted: rgba(220, 235, 255, 0.72);
  --line: rgba(151, 199, 255, 0.18);
  --line-strong: rgba(103, 173, 255, 0.38);
  --blue: #2f82ff;
  --cyan: #77d9ff;
  --violet: #7e74ff;
  --lime: #aee7c1;
  --warm: #ffd166;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(ellipse at 16% 9%, rgba(47, 130, 255, 0.18), transparent 36rem),
    radial-gradient(ellipse at 86% 12%, rgba(119, 217, 255, 0.1), transparent 34rem),
    radial-gradient(ellipse at 72% 86%, rgba(126, 116, 255, 0.1), transparent 32rem),
    linear-gradient(145deg, var(--bg), var(--bg-deep) 72%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -20;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(82, 231, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 139, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -19;
  pointer-events: none;
  opacity: 0.1;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.07) 8px),
    linear-gradient(120deg, transparent, rgba(82, 231, 255, 0.08), transparent);
  mix-blend-mode: screen;
}

body.menu-open {
  overflow: hidden;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(31, 139, 255, 0.24), transparent 42%),
    var(--bg-deep);
  animation: loaderOut 0.9s ease 0.2s forwards;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.ambient span {
  position: absolute;
  width: 54vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(82, 231, 255, 0.62), transparent);
  filter: drop-shadow(0 0 14px rgba(82, 231, 255, 0.46));
  opacity: 0.28;
  animation: lightSweep 9s linear infinite;
}

.ambient span:nth-child(1) {
  top: 18%;
  left: -20%;
}

.ambient span:nth-child(2) {
  top: 48%;
  left: -36%;
  animation-delay: -3.2s;
  background: linear-gradient(90deg, transparent, rgba(143, 108, 255, 0.55), transparent);
}

.ambient span:nth-child(3) {
  top: 76%;
  left: -28%;
  animation-delay: -6.1s;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 106, 0.36), transparent);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 9, 20, 0.72);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(82, 231, 255, 0.5);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(82, 231, 255, 0.92), rgba(31, 139, 255, 0.86) 48%, rgba(143, 108, 255, 0.82));
  color: #02101d;
  box-shadow: 0 0 34px rgba(31, 139, 255, 0.42);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-menu a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--text);
  background: rgba(125, 193, 255, 0.1);
  transform: translateY(-1px);
}

.site-menu .menu-cta {
  color: #02101d;
  background: linear-gradient(135deg, #d8fbff, var(--cyan) 42%, var(--blue));
  box-shadow: 0 0 34px rgba(82, 231, 255, 0.34);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 78px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(transparent, var(--bg-deep));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.92), rgba(2, 4, 10, 0.56) 52%, rgba(2, 4, 10, 0.86)),
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(82, 231, 255, 0.045) 39px 40px);
}

.hero-content {
  max-width: 760px;
  animation: riseIn 0.9s ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-family: "Russo One", "Manrope", sans-serif;
  font-size: clamp(2.55rem, 5.8vw, 5.55rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(31, 139, 255, 0.24);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.4vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn,
.text-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(160, 212, 255, 0.24);
  border-radius: 999px;
  color: var(--text);
  background:
    radial-gradient(circle at var(--btn-x, 50%) var(--btn-y, 50%), rgba(82, 231, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
}

.btn::before,
.text-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.3) 48%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(82, 231, 255, 0.38), rgba(143, 108, 255, 0.28));
  filter: blur(14px);
  transition: opacity 0.26s ease;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(82, 231, 255, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 34px rgba(31, 139, 255, 0.2);
}

.btn:hover::before,
.btn:focus-visible::before,
.text-link:hover::before,
.text-link:focus-visible::before {
  transform: translateX(130%);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
}

.btn-primary {
  color: #02101d;
  border-color: transparent;
  background:
    radial-gradient(circle at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(135deg, #dffcff 0%, var(--cyan) 42%, var(--blue) 100%);
  box-shadow: 0 16px 38px rgba(31, 139, 255, 0.28), 0 0 42px rgba(82, 231, 255, 0.26);
}

.btn-secondary {
  border-color: rgba(82, 231, 255, 0.48);
  background: rgba(31, 139, 255, 0.12);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.055);
}

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.58s ease-out forwards;
  pointer-events: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-stats .hero-stat-office {
  border-color: rgba(119, 217, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(47, 130, 255, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 42px rgba(47, 130, 255, 0.12);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: "Russo One", "Manrope", sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  animation: riseIn 1s ease 0.12s both;
}

.photo-shell {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 0.78;
  border-radius: 28px;
  isolation: isolate;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.banner-shell {
  width: min(100%, 620px);
  aspect-ratio: 16 / 9;
  border-radius: 26px;
}

.photo-shell:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-6px);
}

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

.photo-shell::before {
  inset: -12px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(82, 231, 255, 0.72), rgba(143, 108, 255, 0.12) 42%, rgba(183, 255, 106, 0.34));
  filter: blur(10px);
  opacity: 0.8;
}

.photo-shell::after {
  inset: 14px;
  z-index: 3;
  border: 1px solid rgba(225, 247, 255, 0.22);
  border-radius: 22px;
  box-shadow: inset 0 0 40px rgba(31, 139, 255, 0.18);
}

.photo-shell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% 50%;
  border: 1px solid rgba(182, 226, 255, 0.28);
  border-radius: 28px;
  filter: grayscale(1) contrast(1.12) brightness(0.86);
  box-shadow: 0 42px 95px rgba(0, 0, 0, 0.62);
}

.banner-shell img {
  object-position: center;
  border-radius: 26px;
  filter: contrast(1.08) brightness(0.9) saturate(1.05);
}

.banner-shell::after,
.banner-shell .scanline {
  border-radius: 26px;
}

.photo-rings {
  position: absolute;
  inset: -24px;
  z-index: -2;
  border: 1px solid rgba(82, 231, 255, 0.18);
  border-radius: 38px;
  transform: rotate(-4deg);
  animation: frameFloat 5.8s ease-in-out infinite;
}

.photo-rings::before,
.photo-rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(143, 108, 255, 0.2);
  border-radius: inherit;
}

.photo-rings::before {
  inset: 16px -12px -8px 14px;
}

.photo-rings::after {
  inset: -10px 24px 20px -12px;
  border-color: rgba(183, 255, 106, 0.18);
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  border-radius: 28px;
  pointer-events: none;
}

.scanline::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(82, 231, 255, 0.16), transparent);
  animation: scanMove 4.8s ease-in-out infinite;
}

.hero-panel {
  position: relative;
  width: min(92%, 430px);
  margin-top: -56px;
  padding: 24px;
  border-radius: 20px;
  transform: translateZ(0);
  animation: panelFloat 5s ease-in-out infinite;
}

.panel-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Russo One", "Manrope", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
}

.hero-panel p,
.format-card p,
.condition-card p,
.social-card p,
.cta p {
  color: var(--muted);
  line-height: 1.5;
}

.formats,
.office-focus,
.choice-section,
.remote-section,
.conditions,
.socials,
.cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.choice-section {
  padding: 92px 0 38px;
}

.choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(119, 217, 255, 0.22), transparent 34%),
    linear-gradient(135deg, transparent, rgba(126, 116, 255, 0.08));
  transition: opacity 0.35s ease;
}

.choice-card:hover,
.choice-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(119, 217, 255, 0.48);
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.5), 0 0 42px rgba(47, 130, 255, 0.15);
}

.choice-card:hover::before,
.choice-card:focus-within::before {
  opacity: 1;
}

.choice-card > * {
  position: relative;
  z-index: 1;
}

.choice-card-office {
  border-color: rgba(119, 217, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(47, 130, 255, 0.2), rgba(255, 255, 255, 0.052)),
    rgba(255, 255, 255, 0.05);
}

.choice-card-remote {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(126, 116, 255, 0.075)),
    rgba(255, 255, 255, 0.035);
}

.choice-label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 16px;
  border: 1px solid rgba(119, 217, 255, 0.26);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(119, 217, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-card h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3.1vw, 2.85rem);
  line-height: 1;
  text-transform: uppercase;
}

.choice-card p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.55;
}

.choice-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 28px;
  padding: 0;
  color: rgba(232, 244, 255, 0.84);
  list-style: none;
}

.choice-card li {
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.choice-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(119, 217, 255, 0.42);
}

.choice-card .btn {
  margin-top: auto;
}

.office-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  gap: 18px;
  padding: 92px 0 38px;
}

.office-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(47, 130, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.office-copy::after {
  content: "OFFICE";
  position: absolute;
  right: -0.18em;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Russo One", "Manrope", sans-serif;
  font-size: clamp(5rem, 15vw, 11rem);
  line-height: 0.8;
}

.office-copy > * {
  position: relative;
  z-index: 1;
}

.office-copy p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.office-stack {
  display: grid;
  gap: 18px;
}

.office-mini {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
}

.office-mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(119, 217, 255, 0.12);
  font-weight: 900;
}

.office-mini strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.office-mini p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.formats {
  padding: 72px 0 38px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

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

.format-card,
.condition-card,
.social-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.format-card {
  min-height: 270px;
  padding: 28px;
}

.format-card::before,
.condition-card::before,
.social-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(82, 231, 255, 0.24), transparent 32%),
    linear-gradient(135deg, transparent, rgba(143, 108, 255, 0.08));
  transition: opacity 0.35s ease;
}

.format-card::after,
.condition-card::after,
.social-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 20px;
  height: 1px;
  opacity: 0.58;
  background: linear-gradient(90deg, transparent, rgba(82, 231, 255, 0.56), transparent);
  transform: scaleX(0.3);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.format-card:hover,
.format-card:focus-within,
.condition-card:hover,
.condition-card:focus-within,
.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(82, 231, 255, 0.58);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), 0 0 44px rgba(31, 139, 255, 0.16);
}

.format-card:hover::before,
.format-card:focus-within::before,
.condition-card:hover::before,
.condition-card:focus-within::before,
.social-card:hover::before,
.social-card:focus-visible::before {
  opacity: 1;
}

.format-card:hover::after,
.format-card:focus-within::after,
.condition-card:hover::after,
.condition-card:focus-within::after,
.social-card:hover::after,
.social-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.format-card > *,
.condition-card > *,
.social-card > * {
  position: relative;
}

.format-card-featured {
  background:
    linear-gradient(145deg, rgba(31, 139, 255, 0.24), rgba(143, 108, 255, 0.14)),
    rgba(255, 255, 255, 0.06);
}

.balanced-formats {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.format-card-office {
  min-height: 320px;
  border-color: rgba(119, 217, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(47, 130, 255, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.format-card-office h3 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  text-transform: uppercase;
}

.format-card-remote {
  align-self: center;
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(126, 116, 255, 0.075)),
    rgba(255, 255, 255, 0.035);
}

.format-index,
.condition-card span,
.social-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(82, 231, 255, 0.18), rgba(143, 108, 255, 0.14));
  font-size: 0.82rem;
  font-weight: 900;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(82, 231, 255, 0.32);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.conditions {
  padding: 68px 0 46px;
}

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

.condition-card {
  min-height: 226px;
  padding: 24px;
  animation-delay: calc(var(--i) * 0.045s);
}

.condition-card-featured {
  border-color: rgba(119, 217, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(47, 130, 255, 0.18), rgba(119, 217, 255, 0.06)),
    rgba(255, 255, 255, 0.052);
}

.remote-section {
  padding: 66px 0 38px;
}

.remote-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.085), rgba(126, 116, 255, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.remote-inner::after {
  content: "ONLINE";
  position: absolute;
  right: -0.12em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.032);
  font-family: "Russo One", "Manrope", sans-serif;
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.8;
}

.remote-inner > * {
  position: relative;
  z-index: 1;
}

.remote-inner p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.condition-card strong,
.social-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.condition-card p,
.social-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.socials {
  padding: 58px 0 38px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  min-height: 164px;
  display: block;
  padding: 22px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.social-card-main {
  border-color: rgba(119, 217, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(47, 130, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.042);
}

.social-card:nth-child(2) span {
  color: #dffcff;
  background: linear-gradient(145deg, rgba(82, 231, 255, 0.2), rgba(31, 139, 255, 0.18));
}

.social-card:nth-child(3) span {
  color: #ffd0e7;
  background: linear-gradient(145deg, rgba(255, 79, 159, 0.2), rgba(143, 108, 255, 0.16));
}

.social-card:nth-child(4) span {
  color: #eaffff;
  background: linear-gradient(145deg, rgba(82, 231, 255, 0.2), rgba(255, 209, 102, 0.13));
}

.cta {
  padding: 88px 0 120px;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border-radius: 28px;
  background:
    linear-gradient(112deg, rgba(2, 4, 10, 0.58), rgba(2, 4, 10, 0.2)),
    linear-gradient(135deg, rgba(47, 130, 255, 0.2), rgba(119, 217, 255, 0.09) 52%, rgba(126, 116, 255, 0.08));
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(82, 231, 255, 0.08) 69px 70px),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.5;
}

.cta-inner::after {
  content: "4AK";
  position: absolute;
  right: clamp(20px, 6vw, 70px);
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Russo One", "Manrope", sans-serif;
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 0.8;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta p {
  max-width: 680px;
  font-size: 1.04rem;
}

.floating-hr {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 58px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 0 22px;
  border-radius: 999px;
  color: #02101d;
  background: linear-gradient(135deg, #e7fbff, var(--cyan) 48%, var(--blue));
  box-shadow: 0 16px 44px rgba(47, 130, 255, 0.28), 0 0 0 8px rgba(119, 217, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal.is-visible .condition-card,
.section-reveal.is-visible .social-card {
  animation: cardOpen 0.72s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes lightSweep {
  from {
    transform: translateX(-20vw) rotate(-12deg);
  }
  to {
    transform: translateX(150vw) rotate(-12deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes frameFloat {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-8px);
  }
}

@keyframes scanMove {
  0%,
  42%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }
  54% {
    opacity: 0.86;
  }
  72% {
    transform: translateY(430%);
    opacity: 0;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardOpen {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 860px) {
  body::before,
  body::after {
    opacity: 0.08;
  }

  .ambient span {
    opacity: 0.14;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
  }

  .site-menu {
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 9, 20, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(26px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .menu-open .site-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .site-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 82px 12px 24px;
    gap: 14px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(1.82rem, 9.8vw, 2.55rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.52rem, 7.5vw, 2.25rem);
  }

  h3 {
    font-size: 1.05rem;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero-text {
    max-width: 34rem;
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero-visual {
    order: -1;
    margin-top: 0;
    width: min(100%, 520px);
    justify-self: center;
  }

  .photo-shell {
    width: min(100%, 238px);
    border-radius: 22px;
    transform: none;
  }

  .banner-shell {
    width: min(100%, 390px);
    aspect-ratio: 1280 / 704;
    border-radius: 16px;
  }

  .photo-shell::before {
    inset: -8px;
    border-radius: 26px;
    filter: blur(7px);
    opacity: 0.55;
  }

  .photo-shell img,
  .scanline,
  .banner-shell img {
    border-radius: 22px;
  }

  .banner-shell img,
  .banner-shell .scanline {
    border-radius: 18px;
  }

  .banner-shell img {
    object-fit: cover;
    object-position: center;
  }

  .photo-rings,
  .scanline::before {
    display: none;
  }

  .hero-panel {
    width: min(100%, 360px);
    margin-top: -14px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .hero-panel strong {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }

  .hero-panel p {
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .office-focus,
  .choice-grid,
  .remote-inner,
  .hero-stats,
  .format-grid,
  .conditions-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 22px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .formats,
  .office-focus,
  .choice-section,
  .conditions,
  .remote-section,
  .socials,
  .cta {
    width: min(100% - 24px, 520px);
  }

  .office-focus {
    padding: 58px 0 28px;
  }

  .choice-section {
    padding: 42px 0 22px;
  }

  .choice-card {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .choice-card h3 {
    margin-bottom: 10px;
    font-size: 1.34rem;
  }

  .choice-card p,
  .remote-inner p:not(.eyebrow),
  .cta p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .choice-card ul {
    gap: 7px;
    margin: 2px 0 18px;
    font-size: 0.88rem;
  }

  .choice-label {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .remote-section {
    padding: 52px 0 28px;
  }

  .remote-inner {
    justify-items: start;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
  }

  .remote-inner::after,
  .cta-inner::after {
    display: none;
  }

  .office-copy {
    padding: 26px;
    border-radius: 24px;
  }

  .office-mini {
    min-height: auto;
    padding: 20px;
  }

  .formats {
    padding: 58px 0 30px;
  }

  .conditions,
  .socials {
    padding: 38px 0 22px;
  }

  .format-card,
  .condition-card,
  .social-card {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
  }

  .condition-card span,
  .social-card span,
  .format-index {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .format-card-office h3 {
    font-size: 1.7rem;
  }

  .cta {
    padding: 52px 0 96px;
  }

  .cta-inner {
    padding: 22px;
    border-radius: 20px;
  }

  .cta-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
    gap: 9px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    font-size: 0.76rem;
    white-space: normal;
    text-align: center;
  }

  .floating-hr {
    left: 18px;
    right: 18px;
    min-height: 54px;
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: clamp(1.72rem, 9.5vw, 2.2rem);
  }

  .banner-shell {
    width: min(100%, 350px);
  }
}

@media (max-width: 380px) {
  .site-header {
    width: calc(100% - 14px);
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 1.62rem;
  }

  .hero-text,
  .choice-card p,
  .condition-card p,
  .remote-inner p:not(.eyebrow),
  .social-card p {
    font-size: 0.86rem;
  }

  .banner-shell {
    width: 100%;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
    justify-self: center;
  }

  .office-focus {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
