:root {
  color-scheme: dark;
  --bg: #04080b;
  --bg-soft: #081016;
  --text: #f6fbff;
  --muted: rgba(226, 242, 249, 0.72);
  --subtle: rgba(226, 242, 249, 0.48);
  --line: rgba(212, 244, 255, 0.16);
  --glass: rgba(7, 22, 31, 0.48);
  --glass-strong: rgba(10, 29, 40, 0.72);
  --cyan: #70e6ff;
  --mint: #9df4d0;
  --ink: #061018;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
  --df-bg: #050807;
  --df-card: rgba(8, 18, 15, 0.72);
  --df-green: #20d887;
  --df-green-soft: rgba(32, 216, 135, 0.18);
  --df-border: rgba(32, 216, 135, 0.25);
  --df-text: #f2f5f3;
  --df-muted: rgba(242, 245, 243, 0.62);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 10%, rgba(112, 230, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #020507 0%, #081016 52%, #030507 100%);
}

body.team-page {
  background: #000;
}

body.promotion-page {
  background: #000;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 22px clamp(18px, 3vw, 44px);
  transition: padding 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(0, 0, 0, 0.84);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1720px);
  min-height: 42px;
  margin: 0 auto;
}

.brand,
.nav-left,
.nav-panel,
.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  min-width: max-content;
  padding: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 42px;
}

.brand img {
  display: block;
  width: auto;
  height: 26px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  display: inline-flex;
  align-items: center;
  height: 42px;
  line-height: 1;
}

.nav-left {
  height: 42px;
  gap: 42px;
}

.nav-panel {
  height: 42px;
  justify-content: center;
  gap: 34px;
}

.nav-panel a,
.nav-item,
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 0;
  color: rgba(241, 249, 252, 0.76);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.nav-panel a:hover,
.nav-panel a.is-active,
.nav-link:hover {
  color: var(--cyan);
  background: transparent;
}

.nav-item {
  cursor: default;
}

.nav-actions {
  height: 42px;
  justify-content: flex-end;
  gap: 32px;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-primary {
  color: #031014;
  background: linear-gradient(135deg, #f8ffff, #8ff1ff 48%, #a9ffd8);
  box-shadow: 0 12px 34px rgba(112, 230, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 8, 12, 0.72) 0%, rgba(2, 8, 12, 0.54) 20%, rgba(2, 8, 12, 0.22) 38%, rgba(2, 8, 12, 0) 52%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #04090d;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.04) contrast(1.09) saturate(1.07);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(32px, 6vw, 92px), 1680px);
  min-height: 92svh;
  margin: 0 auto;
  padding: 180px 0 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.1rem, 6.4vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  white-space: nowrap;
}

.hero-subtitle,
.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.hero-subtitle {
  color: rgba(246, 251, 255, 0.9);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy {
  margin-top: 12px;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.feature-showcase {
  position: relative;
  overflow: hidden;
  padding: 110px clamp(16px, 2.8vw, 48px) 112px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(77, 224, 148, 0.06), transparent 26rem),
    #020303;
  isolation: isolate;
}

.feature-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(91, 243, 174, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 243, 174, 0.032) 1px, transparent 1px);
  background-size: 104px 104px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.feature-showcase::after {
  content: none;
}

.feature-shell {
  width: min(100%, 1760px);
  margin: 0 auto;
}

.feature-showcase h2 {
  max-width: min(100%, 1180px);
  margin: 0 auto 60px;
  color: var(--text);
  font-size: clamp(2.8rem, 4.4vw, 4.45rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.58);
  text-wrap: balance;
}

.feature-showcase h2 span,
.feature-showcase h2 small {
  display: block;
}

.feature-showcase h2 span {
  white-space: nowrap;
}

.feature-showcase h2 small {
  position: relative;
  margin-top: 20px;
  padding-bottom: 22px;
  color: rgba(226, 242, 249, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 620;
  line-height: 1.5;
}

.feature-showcase h2 small::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(520px, 58vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(39, 226, 157, 0.82), transparent);
  box-shadow: 0 0 14px rgba(39, 226, 157, 0.62);
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px 34px 36px;
  border: 1px solid rgba(113, 255, 197, 0.18);
  border-radius: 24px;
  background: #080f0e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(111, 255, 204, 0.86), transparent 96px) top left / 132px 2px no-repeat,
    linear-gradient(270deg, rgba(111, 255, 204, 0.86), transparent 96px) top right / 132px 2px no-repeat,
    linear-gradient(90deg, rgba(111, 255, 204, 0.68), transparent 96px) bottom left / 132px 2px no-repeat,
    linear-gradient(270deg, rgba(111, 255, 204, 0.68), transparent 96px) bottom right / 132px 2px no-repeat,
    linear-gradient(180deg, rgba(111, 255, 204, 0.86), transparent 96px) top left / 2px 132px no-repeat,
    linear-gradient(180deg, rgba(111, 255, 204, 0.86), transparent 96px) top right / 2px 132px no-repeat,
    linear-gradient(0deg, rgba(111, 255, 204, 0.68), transparent 96px) bottom left / 2px 132px no-repeat,
    linear-gradient(0deg, rgba(111, 255, 204, 0.68), transparent 96px) bottom right / 2px 132px no-repeat;
  box-shadow: 0 0 24px rgba(77, 224, 148, 0.08);
}

.feature-card h3 {
  display: grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 0 0 30px;
  color: rgba(247, 255, 252, 0.96);
  font-size: 1.36rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.feature-card h3::before,
.feature-card h3::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 226, 157, 0.75));
}

.feature-card h3::after {
  background: linear-gradient(90deg, rgba(39, 226, 157, 0.75), transparent);
}

.feature-visual {
  display: grid;
  min-height: 420px;
  aspect-ratio: 16 / 7.6;
  place-items: center;
  background: transparent;
}

.feature-visual img,
.feature-visual object {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
}

.feature-visual object {
  pointer-events: none;
  background: #080f0e;
  filter: none;
}

.feature-card:nth-child(2) .feature-visual {
  min-height: 0;
  aspect-ratio: 1260 / 640;
}

.feature-card p {
  max-width: 680px;
  min-height: 64px;
  margin: 24px auto 0;
  color: rgba(226, 232, 232, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}

.feature-use-cases {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  margin: auto 0 0;
  padding-top: 26px;
}

.feature-use-cases span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(91, 243, 174, 0.22);
  border-radius: 8px;
  color: rgba(234, 250, 244, 0.9);
  background: rgba(11, 21, 19, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.feature-use-cases span::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: #26dfa0;
  -webkit-mask: var(--tag-icon) center / contain no-repeat;
  mask: var(--tag-icon) center / contain no-repeat;
}

.feature-use-cases span[data-icon="stack"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7l8-4 8 4-8 4-8-4zm0 5l8 4 8-4M4 17l8 4 8-4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="switch"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7h11l-3-3m3 3-3 3M17 17H6l3 3m-3-3 3-3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="zero"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='7' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 16l8-8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="link"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 13a5 5 0 0 0 7 0l2-2a5 5 0 0 0-7-7l-1 1M14 11a5 5 0 0 0-7 0l-2 2a5 5 0 0 0 7 7l1-1' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="refresh"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 11a8 8 0 0 0-14-5l-2 2m0 0h6M4 8V2m0 11a8 8 0 0 0 14 5l2-2m0 0h-6m6 0v6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="film"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 5v14M16 5v14M4 9h4M4 15h4M16 9h4M16 15h4' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="box"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l8 4.5v9L12 21l-8-4.5v-9L12 3zm0 0v9m8-4.5-8 4.5-8-4.5' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="user"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="cart"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h2l2 11h10l2-7H7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='20' r='1.5'/%3E%3Ccircle cx='17' cy='20' r='1.5'/%3E%3C/svg%3E");
}

.feature-use-cases span[data-icon="cast"] {
  --tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 15h.01M11 15a4 4 0 0 0-4-4M14 15a7 7 0 0 0-7-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.install-steps {
  position: relative;
  overflow: hidden;
  padding: 42px clamp(16px, 3.4vw, 58px) 76px;
  border-bottom: 0;
  color: var(--df-text);
  background: #000;
  isolation: isolate;
}

.install-steps::before {
  content: none;
}

.install-steps::after {
  content: none;
}

.install-shell {
  width: min(100%, 1580px);
  margin: 0 auto;
}

.install-steps h2 {
  margin: 0 0 34px;
  transform: translateY(-28px);
  color: var(--df-text);
  font-size: clamp(2.2rem, 3.4vw, 3.75rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

.install-steps h2 span {
  color: var(--df-green);
  text-shadow: 0 0 28px rgba(32, 216, 135, 0.32);
}

.install-tabs,
.install-stage {
  border: 1px solid var(--df-border);
  background: rgba(2, 6, 5, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.install-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 12px;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.install-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(242, 245, 243, 0.09);
  border-radius: 10px;
  color: rgba(242, 245, 243, 0.46);
  background: rgba(0, 0, 0, 0.2);
  font: inherit;
  font-size: clamp(0.94rem, 1.24vw, 1.1rem);
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.install-tab::after {
  content: none;
}

.install-tab span {
  color: inherit;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.install-tab:hover,
.install-tab.is-active {
  color: var(--df-text);
  border-color: rgba(32, 216, 135, 0.45);
  background: linear-gradient(180deg, rgba(32, 216, 135, 0.13), rgba(32, 216, 135, 0.045));
}

.install-tab.is-active {
  color: var(--df-green);
  box-shadow: inset 0 0 0 1px rgba(32, 216, 135, 0.08);
}

.install-stage {
  position: relative;
  padding: clamp(26px, 2.8vw, 42px) 12px;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.install-stage::before {
  content: none;
}

.install-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  min-height: 330px;
  animation: install-panel-enter 280ms ease both;
}

.install-panel[hidden] {
  display: none;
}

@keyframes install-panel-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.install-copy {
  grid-column: 1;
  min-width: 0;
  padding: 0 clamp(20px, 3vw, 52px);
}

.install-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.install-index {
  display: inline-grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(32, 216, 135, 0.62);
  border-radius: 50%;
  color: var(--df-green);
  background: rgba(32, 216, 135, 0.08);
  box-shadow: 0 0 30px rgba(32, 216, 135, 0.12);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.install-copy h3 {
  margin: 0;
  color: rgba(249, 255, 252, 0.98);
  font-size: clamp(1.7rem, 2.45vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.install-subtitle {
  margin: 14px 0 0;
  color: var(--df-green);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 780;
  line-height: 1.45;
  text-shadow: 0 0 18px rgba(32, 216, 135, 0.22);
}

.install-description {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--df-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  min-height: 54px;
}

.install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(75, 238, 165, 0.5);
  border-radius: 10px;
  color: #f8fffb;
  background: linear-gradient(135deg, #07563b, #109b66 54%, #18bd79);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 32px rgba(32, 216, 135, 0.18);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.install-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 42px rgba(32, 216, 135, 0.26);
}

.install-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-actions span {
  color: rgba(242, 245, 243, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

.install-warning {
  flex-basis: 100%;
  margin: -2px 0 0;
  color: #ff4d4f;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.55;
}

.install-note-link {
  flex-basis: 100%;
  margin: -2px 0 0;
  color: rgba(242, 245, 243, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
}

.install-note-link:hover {
  color: #70e6ff;
}

.install-preview {
  position: relative;
  display: grid;
  grid-column: 2 / 4;
  min-width: 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(32, 216, 135, 0.2);
  border-radius: clamp(16px, 1.6vw, 24px);
  background:
    linear-gradient(135deg, rgba(7, 17, 14, 0.96), rgba(1, 3, 3, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 28px 70px rgba(0, 0, 0, 0.3);
}

.install-preview::before {
  content: none;
}

.install-preview::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(242, 245, 243, 0.08);
  border-radius: 14px;
  pointer-events: none;
}

.install-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.install-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  place-items: center;
  padding: 22px;
  color: rgba(242, 245, 243, 0.72);
  text-align: center;
}

.install-placeholder span {
  font-size: clamp(1.1rem, 1.6vw, 1.38rem);
  font-weight: 850;
  line-height: 1.2;
}

.install-placeholder small {
  color: rgba(242, 245, 243, 0.38);
  font-size: 0.8rem;
  line-height: 1.45;
}

.works-showcase {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(16px, 3.2vw, 56px) 92px;
  color: var(--df-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 216, 135, 0.1), transparent 28rem),
    radial-gradient(circle at 82% 26%, rgba(112, 230, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, #020708 0%, #03090a 58%, #020405 100%);
  isolation: isolate;
}

.works-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%),
    linear-gradient(rgba(91, 243, 174, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 243, 174, 0.018) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
}

.works-shell {
  width: min(100%, 1580px);
  margin: 0 auto;
}

.works-heading {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.works-heading h2 {
  margin: 0;
  color: rgba(249, 255, 252, 0.98);
  font-size: clamp(2.3rem, 3.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.56);
}

.works-heading h2 span {
  color: var(--df-green);
  text-shadow: 0 0 28px rgba(32, 216, 135, 0.34);
}

.works-heading p {
  margin: 14px 0 0;
  color: rgba(242, 245, 243, 0.62);
  font-size: clamp(0.98rem, 1.3vw, 1.14rem);
  font-weight: 620;
  line-height: 1.7;
}

.works-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(138px, 10.5vw, 166px);
  gap: 16px;
}

.work-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: inherit;
  background: #07100f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 46px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.work-card-large {
  grid-row: span 2;
}

.work-card:hover {
  border-color: rgba(75, 238, 165, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 58px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(32, 216, 135, 0.08);
  transform: translateY(-1px);
}

.work-cover,
.work-cover img,
.work-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.work-cover img {
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 420ms ease, filter 420ms ease;
}

.work-card:hover .work-cover img,
.work-card:hover .work-placeholder {
  transform: scale(1.04);
}

.work-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%),
    radial-gradient(circle at 32% 24%, rgba(32, 216, 135, 0.24), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(112, 230, 255, 0.12), transparent 26%),
    linear-gradient(140deg, #0a1514 0%, #07100f 48%, #020506 100%);
  transition: transform 420ms ease, filter 420ms ease;
}

.work-card:nth-child(3n) .work-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 32%),
    radial-gradient(circle at 22% 70%, rgba(32, 216, 135, 0.2), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(185, 207, 199, 0.11), transparent 24%),
    linear-gradient(140deg, #0c1214 0%, #070d0f 54%, #020506 100%);
}

.work-card:nth-child(4n) .work-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), transparent 34%),
    radial-gradient(circle at 75% 68%, rgba(32, 216, 135, 0.18), transparent 25%),
    radial-gradient(circle at 30% 20%, rgba(238, 210, 156, 0.09), transparent 24%),
    linear-gradient(140deg, #10110c 0%, #08100e 50%, #020506 100%);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 52%);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  pointer-events: none;
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(75, 238, 165, 0.36), transparent 92px) top left / 120px 1px no-repeat,
    linear-gradient(270deg, rgba(255, 255, 255, 0.14), transparent 72px) bottom right / 120px 1px no-repeat;
  opacity: 0.78;
}

.work-content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-width: 0;
}

.work-content > div {
  display: flex;
  min-width: 0;
  min-height: 34px;
  flex-direction: column;
  justify-content: center;
}

.work-play {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(242, 245, 243, 0.82);
  border-radius: 50%;
  background: rgba(2, 7, 8, 0.42);
  box-shadow: 0 0 22px rgba(32, 216, 135, 0.12);
}

.work-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(249, 255, 252, 0.96);
}

.work-content h3,
.work-content p {
  margin: 0;
  letter-spacing: 0;
}

.work-content h3 {
  color: rgba(249, 255, 252, 0.96);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  font-weight: 850;
  line-height: 1.16;
}

.work-card-large .work-content h3 {
  font-size: clamp(1rem, 1.18vw, 1.16rem);
}

.work-card:not(.work-card-large) .work-content {
  right: 16px;
  bottom: 15px;
  left: 16px;
  gap: 10px;
}

.work-card:not(.work-card-large) .work-content > div {
  min-height: 28px;
}

.work-card:not(.work-card-large) .work-play {
  width: 28px;
  height: 28px;
}

.work-card:not(.work-card-large) .work-play::before {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
}

.work-card:not(.work-card-large) .work-content h3 {
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.12;
}

.work-card:not(.work-card-large) .work-content p {
  margin-top: 2px;
  font-size: 0.7rem;
  line-height: 1.15;
}

.work-content p {
  margin-top: 3px;
  color: rgba(242, 245, 243, 0.66);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1.18;
}

.works-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.works-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 44px;
  border: 1px solid rgba(32, 216, 135, 0.66);
  border-radius: 10px;
  color: var(--df-green);
  background: rgba(2, 8, 8, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.works-more:hover {
  background: rgba(48, 255, 160, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(32, 216, 135, 0.16);
  transform: translateY(-1px);
}

.course-learning {
  position: relative;
  overflow: hidden;
  color: var(--df-text);
  background:
    radial-gradient(circle at 22% 24%, rgba(32, 216, 135, 0.08), transparent 25rem),
    radial-gradient(circle at 82% 72%, rgba(112, 230, 255, 0.045), transparent 28rem),
    linear-gradient(180deg, #020405 0%, #020706 56%, #010303 100%);
  isolation: isolate;
}

.course-learning::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(91, 243, 174, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 243, 174, 0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
}

.course-learning-shell {
  display: grid;
  grid-template-columns: minmax(460px, 0.7fr) minmax(740px, 1.3fr);
  gap: clamp(42px, 4.6vw, 82px);
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: 120px clamp(16px, 3.2vw, 56px) 110px;
}

.course-copy {
  align-self: center;
  max-width: 640px;
}

.course-kicker {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--df-green), rgba(112, 230, 255, 0.9), transparent);
  box-shadow: 0 0 18px rgba(32, 216, 135, 0.9);
}

.course-copy h2 {
  margin: 0;
  color: rgba(249, 255, 252, 0.98);
  font-size: clamp(2.5rem, 3vw, 3.55rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
}

.course-title-line {
  display: inline-block;
  color: rgba(249, 255, 252, 0.98);
  white-space: nowrap;
}

.course-copy h2 .course-brand {
  color: var(--df-green);
  background: linear-gradient(92deg, #20d887 0%, #00f5ff 94%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.course-copy p {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(242, 245, 243, 0.68);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 560;
  line-height: 1.85;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.course-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 255, 180, 0.44);
  border-radius: 999px;
  color: rgba(242, 245, 243, 0.88);
  background: rgba(2, 12, 10, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 20px rgba(32, 216, 135, 0.08);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
}

.course-tag svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: rgba(0, 255, 180, 0.94);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.course-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 56px;
  margin-top: 50px;
  border: 1px solid rgba(0, 255, 180, 0.64);
  border-radius: 8px;
  color: rgba(0, 255, 180, 0.96);
  background: rgba(2, 12, 10, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 rgba(32, 216, 135, 0);
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-button:hover {
  border-color: rgba(0, 255, 180, 0.88);
  color: #33ffbd;
  background: rgba(0, 255, 180, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 28px rgba(32, 216, 135, 0.18);
  transform: translateY(-1px);
}

.course-track {
  display: flex;
  flex-direction: column;
  justify-self: end;
  width: min(100%, 980px);
  gap: 32px;
}

.course-card {
  --course-offset: 0px;
  position: relative;
  align-self: flex-end;
  width: min(100%, 860px);
  min-height: 176px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0, 4, 4, 0.96), rgba(0, 4, 4, 0.96)) padding-box,
    linear-gradient(
      115deg,
      rgba(0, 255, 180, 0.18) 0%,
      rgba(0, 255, 180, 0.58) 18%,
      rgba(0, 255, 180, 0.28) 48%,
      rgba(112, 230, 255, 0.12) 72%,
      rgba(0, 255, 180, 0.42) 100%
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 54px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(32, 216, 135, 0.08);
  transform: translateX(var(--course-offset)) translateZ(0);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-card:nth-child(1) {
  --course-offset: 0px;
}

.course-card:nth-child(2) {
  --course-offset: -66px;
}

.course-card:nth-child(3) {
  --course-offset: -28px;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 255, 180, 0.08), rgba(0, 255, 180, 0.72) 18%, rgba(0, 255, 180, 0.24) 46%, transparent 78%) top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(0, 255, 180, 0.54), rgba(0, 255, 180, 0.12) 58%, transparent 100%) top left / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(0, 255, 180, 0.5), rgba(0, 255, 180, 0.12) 64%, transparent 100%) bottom right / 72% 1px no-repeat,
    linear-gradient(180deg, rgba(0, 255, 180, 0.08), rgba(0, 255, 180, 0.46) 76%, rgba(0, 255, 180, 0.18)) top right / 1px 100% no-repeat;
  opacity: 0.76;
}

.course-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  z-index: 1;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 4, 4, 0.28) 28%,
    rgba(0, 4, 4, 0.72) 68%,
    rgba(0, 4, 4, 1) 100%
  );
}

.course-card:hover {
  background:
    linear-gradient(rgba(1, 7, 6, 0.98), rgba(1, 7, 6, 0.98)) padding-box,
    linear-gradient(
      115deg,
      rgba(0, 255, 180, 0.3) 0%,
      rgba(0, 255, 180, 0.82) 18%,
      rgba(0, 255, 180, 0.38) 48%,
      rgba(112, 230, 255, 0.18) 72%,
      rgba(0, 255, 180, 0.62) 100%
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 58px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(32, 216, 135, 0.16);
  transform: translateX(var(--course-offset)) translateY(-1px);
}

.course-card-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 68%;
}

.course-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.82) contrast(1.04);
  transform: scale(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.course-card:hover .course-card-media img {
  filter: saturate(1) brightness(0.9) contrast(1.05);
  transform: scale(1.06);
}

.course-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 176px;
  flex-direction: column;
  justify-content: center;
  margin-left: 54%;
  padding: 20px 92px 20px 28px;
}

.course-card-body h3,
.course-card-body p {
  margin: 0;
  letter-spacing: 0;
}

.course-card-body h3 {
  color: #ffffff;
  font-size: clamp(1.75rem, 2.05vw, 2rem);
  font-weight: 780;
  line-height: 1.2;
}

.course-card-body p {
  max-width: 320px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  font-weight: 520;
  line-height: 1.8;
}

.course-play {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 255, 180, 0.55);
  border-radius: 50%;
  color: rgba(0, 255, 180, 0.95);
  background: rgba(0, 10, 8, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 0 18px rgba(32, 216, 135, 0.1);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.course-card:hover .course-play,
.course-play:hover {
  border-color: rgba(0, 255, 180, 0.88);
  color: #36ffc1;
  background: rgba(0, 255, 180, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 24px rgba(32, 216, 135, 0.24);
  transform: translateY(-1px);
}

.pricing-section {
  position: relative;
  overflow: hidden;
  color: var(--df-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 180, 0.16), transparent 26rem),
    radial-gradient(circle at 18% 64%, rgba(32, 216, 135, 0.08), transparent 30rem),
    radial-gradient(circle at 84% 54%, rgba(112, 230, 255, 0.06), transparent 28rem),
    linear-gradient(180deg, #010303 0%, #020706 48%, #010303 100%);
  isolation: isolate;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(91, 243, 174, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 243, 174, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.pricing-section::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 50%;
  width: min(36vw, 420px);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 180, 0.88), transparent);
  box-shadow: 0 0 28px rgba(0, 255, 180, 0.74);
  transform: translateX(-50%);
}

.pricing-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 92px clamp(16px, 3.2vw, 56px) 82px;
}

.pricing-heading {
  max-width: 920px;
  margin: 0 auto 46px;
  text-align: center;
}

.pricing-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 4.1vw, 4.1rem);
  font-weight: 920;
  line-height: 1.14;
  letter-spacing: 0;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.68);
}

.pricing-heading p {
  margin: 18px auto 0;
  color: rgba(242, 245, 243, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.34rem);
  font-weight: 520;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 2vw, 34px);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 626px;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(28px, 2.2vw, 36px);
  border: 1px solid rgba(0, 255, 180, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(2, 14, 12, 0.82), rgba(0, 7, 7, 0.9)),
    rgba(0, 10, 8, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 58px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(32, 216, 135, 0.08);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 255, 180, 0.2), rgba(0, 255, 180, 0.04) 26%, transparent 58%) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(0, 255, 180, 0.24), transparent 58%) left / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(0, 255, 180, 0.2), transparent 64%) bottom right / 76% 1px no-repeat;
  opacity: 0.74;
}

.price-card:hover {
  border-color: rgba(0, 255, 180, 0.72);
  background:
    linear-gradient(180deg, rgba(3, 19, 16, 0.88), rgba(0, 8, 8, 0.94)),
    rgba(0, 10, 8, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 26px 68px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(32, 216, 135, 0.16);
  transform: translateY(-2px);
}

.price-card-featured {
  border-color: rgba(0, 255, 200, 0.88);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 180, 0.22), transparent 19rem),
    linear-gradient(180deg, rgba(2, 31, 25, 0.88), rgba(0, 8, 8, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.44),
    0 0 38px rgba(0, 255, 180, 0.32);
}

.price-card-featured:hover {
  border-color: rgba(0, 255, 220, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 78px rgba(0, 0, 0, 0.44),
    0 0 54px rgba(0, 255, 180, 0.4);
}

.price-card-top {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  padding: 0 22px;
  border: 1px solid rgba(0, 255, 180, 0.58);
  border-radius: 12px;
  color: rgba(0, 255, 180, 0.96);
  background: rgba(0, 15, 12, 0.54);
  box-shadow: 0 0 18px rgba(32, 216, 135, 0.1);
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
}

.price-card h3 {
  margin: 28px 0 0;
  color: #ffffff;
  font-size: clamp(1.78rem, 2vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.56);
}

.price-value {
  min-height: 76px;
  margin-top: 22px;
  color: #18e2aa;
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-weight: 920;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(0, 255, 180, 0.32);
}

.price-value-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18e2aa;
  font-size: clamp(2rem, 2.4vw, 2.75rem);
}

.price-value-button {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.price-value-button:hover {
  color: #35ffc1;
  text-shadow: 0 0 30px rgba(0, 255, 180, 0.48);
  transform: translateY(-1px);
}

.price-features {
  display: flex;
  min-height: 232px;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.price-features li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.94rem, 1.02vw, 1.06rem);
  font-weight: 520;
  line-height: 1.45;
}

.price-features .price-description {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.price-features svg,
.pricing-assurance svg,
.support-close svg {
  width: 22px;
  height: 22px;
  color: rgba(0, 255, 180, 0.96);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.price-action {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 14px;
  margin-top: auto;
}

.price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(0, 255, 180, 0.72);
  border-radius: 8px;
  color: rgba(0, 255, 180, 0.96);
  background: rgba(0, 12, 10, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 rgba(32, 216, 135, 0);
  font-size: 1.05rem;
  font-weight: 840;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-button:hover {
  border-color: rgba(0, 255, 180, 0.94);
  color: #35ffc1;
  background: rgba(0, 255, 180, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 28px rgba(32, 216, 135, 0.2);
  transform: translateY(-1px);
}

.price-button-solid {
  border-color: transparent;
  color: #001512;
  background: linear-gradient(135deg, #16ddb2 0%, #10f3d4 100%);
  box-shadow: 0 14px 34px rgba(0, 255, 180, 0.26);
}

.price-button-solid:hover {
  color: #001512;
  background: linear-gradient(135deg, #2dffcb 0%, #22f4df 100%);
  box-shadow: 0 18px 42px rgba(0, 255, 180, 0.34);
}

.support-close {
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.pricing-assurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 78px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 600;
}

.pricing-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pricing-note {
  margin: 18px auto 0;
  color: rgba(242, 245, 243, 0.58);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.support-modal[hidden] {
  display: none;
}

.support-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.support-dialog {
  position: relative;
  width: min(100%, 320px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(12, 16, 16, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.support-dialog h2 {
  margin: 0 34px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.support-dialog img {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.support-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-close:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 42%),
    #020504;
  font-size: 0.82rem;
}

.footer-inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: 0 clamp(28px, 4vw, 76px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  min-height: 112px;
  padding: 28px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
  height: 32px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 780;
  line-height: 1;
}

.site-footer .footer-brand,
.site-footer .footer-brand:hover {
  color: #ffffff;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  color: #ffffff;
  line-height: 28px;
}

.site-footer a,
.site-footer button {
  color: inherit;
}

.site-footer a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(22px, 2.5vw, 42px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.footer-links a {
  line-height: 1.5;
}

.footer-links a[aria-disabled="true"] {
  cursor: default;
  opacity: 0.82;
}

.footer-links a[aria-disabled="true"]:hover {
  color: inherit;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.social-link,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.social-link img,
.social-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-link:hover,
.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 30px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 0 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 34px 0 28px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    justify-self: center;
  }

  .social-link,
  .social-button {
    width: 36px;
    height: 36px;
  }

  .social-link img,
  .social-button img {
    width: 20px;
    height: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 10px;
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 22px 0 28px;
  }
}

.team-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 140px clamp(20px, 6vw, 84px) 96px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.28) 54%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.76) 100%),
    url("../img/teambanner.webp") center / cover no-repeat;
}

.team-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(32, 216, 135, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.38));
}

.team-hero-inner {
  width: min(100%, 1180px);
  text-align: center;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.68);
}

.team-hero h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 920;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.team-hero h1 span,
.team-hero h1 strong {
  display: inline-block;
  font: inherit;
}

.team-hero h1 strong {
  color: #20d887;
  text-shadow: 0 0 30px rgba(32, 216, 135, 0.32), 0 18px 44px rgba(0, 0, 0, 0.68);
}

.team-hero-subtitle {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.32rem, 2.45vw, 2.5rem);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.team-hero-copy {
  max-width: 100%;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.35vw, 1.32rem);
  font-weight: 460;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.team-feature-cards {
  position: relative;
  padding: 0 clamp(16px, 2.8vw, 48px) 76px;
  overflow: hidden;
  background: #000;
}

.team-feature-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-top: 10px;
}

.team-feature-title {
  position: relative;
  grid-column: 1 / -1;
  width: max-content;
  margin: 0 auto 24px;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.52rem, 2vw, 2.18rem);
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.team-feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 32px;
  height: 2px;
  border-radius: 99px;
  transform: translateX(-50%);
  background: #18f4d1;
  box-shadow: 0 0 14px rgba(24, 244, 209, 0.64);
}

.team-feature-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 184px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(153, 233, 235, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 244, 209, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(9, 18, 21, 0.92), rgba(2, 9, 11, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 54px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.team-feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 244, 209, 0.54), transparent 90px) top left / 120px 1px no-repeat,
    linear-gradient(270deg, rgba(24, 244, 209, 0.46), transparent 90px) bottom right / 120px 1px no-repeat;
}

.team-feature-card svg {
  width: 54px;
  height: 54px;
  color: #15f0ca;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(21, 240, 202, 0.32));
}

.team-feature-card h2 {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.2vw, 1.34rem);
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: 0;
}

.team-feature-card p {
  margin: 10px 0 0;
  color: rgba(235, 250, 250, 0.62);
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  line-height: 1.6;
}

.team-pricing {
  padding: 72px clamp(16px, 3.5vw, 64px) 96px;
  background: #000;
}

.team-pricing-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(580px, 1.05fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.team-pricing-copy {
  min-width: 0;
}

.team-pricing-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(0.9rem, 1.1vw, 1.08rem);
  font-weight: 520;
  letter-spacing: 0.08em;
  line-height: 1;
}

.team-pricing-kicker span {
  color: #18d8bf;
}

.team-pricing-kicker i {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.team-pricing-copy h2 {
  position: relative;
  margin: 0;
  padding-bottom: 26px;
  color: #ffffff;
  font-size: clamp(2.65rem, 4.2vw, 4.65rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.62);
}

.team-pricing-copy h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #18f4d1, transparent);
  box-shadow: 0 0 16px rgba(24, 244, 209, 0.54);
}

.team-pricing-copy > p:last-child {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.98rem, 1.18vw, 1.16rem);
  line-height: 1.8;
}

.team-pricing-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-price-card {
  display: flex;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(113, 255, 236, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 244, 209, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(8, 24, 22, 0.92), rgba(1, 7, 7, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 62px rgba(0, 0, 0, 0.32);
}

.team-price-icon {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 50%;
  color: #a9fff0;
  background: radial-gradient(circle, rgba(169, 255, 240, 0.18), rgba(169, 255, 240, 0.02) 68%);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 15px rgba(24, 244, 209, 0.24));
}

.team-price-card h3 {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.38rem, 1.72vw, 1.82rem);
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.team-price-divider {
  width: 58px;
  height: 1px;
  margin: 24px 0 0;
  background: linear-gradient(90deg, rgba(113, 255, 236, 0.9), transparent);
  box-shadow: 0 0 14px rgba(113, 255, 236, 0.44);
}

.team-price-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  color: #6ee7d4;
  font-size: clamp(3rem, 4vw, 4.55rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(113, 255, 236, 0.25);
}

.team-price-value span {
  font-size: 0.52em;
}

.team-price-value small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.28em;
  font-weight: 520;
  white-space: nowrap;
}

.team-price-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.team-price-card li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.35;
}

.team-price-card li::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(113, 255, 236, 0.72);
  border-radius: 50%;
  color: #71ffec;
  background: rgba(113, 255, 236, 0.03);
  box-shadow: 0 0 12px rgba(113, 255, 236, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.team-price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  border: 1px solid rgba(113, 255, 236, 0.82);
  border-radius: 8px;
  color: #71ffec;
  background: rgba(0, 0, 0, 0.36);
  font: inherit;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-weight: 560;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.team-price-button:hover {
  border-color: #a9fff0;
  color: #a9fff0;
  background: rgba(113, 255, 236, 0.08);
  transform: translateY(-1px);
}

.team-price-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promotion-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 132px clamp(42px, 6vw, 110px) 104px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 6, 9, 0.94) 0%, rgba(0, 8, 12, 0.72) 34%, rgba(0, 8, 12, 0.22) 58%, rgba(0, 8, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.68) 100%),
    url("../img/promotion.webp") center / cover no-repeat;
}

.promotion-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 24%, rgba(24, 221, 255, 0.12), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 44%, rgba(0, 0, 0, 0.12));
}

.promotion-hero-content {
  position: relative;
  width: min(50vw, 760px);
  min-width: 620px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.76);
}

.promotion-hero h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.8rem, 3.9vw, 4.35rem);
  font-weight: 420;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.promotion-hero h1 span {
  color: #76efff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04em;
  font-weight: 520;
  text-shadow: 0 0 24px rgba(118, 239, 255, 0.32), 0 18px 48px rgba(0, 0, 0, 0.76);
}

.promotion-subtitle {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.32vw, 1.36rem);
  font-weight: 680;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.promotion-copy {
  width: min(100%, 690px);
  margin: 46px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.08vw, 1.12rem);
  font-weight: 420;
  line-height: 1.92;
  letter-spacing: 0.045em;
}

.promotion-contact {
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.08vw, 1.12rem);
  font-weight: 420;
  line-height: 1.8;
  letter-spacing: 0.045em;
}

.promotion-contact span {
  color: rgba(24, 223, 255, 0.92);
  font-weight: 520;
  letter-spacing: 0.045em;
  text-shadow: 0 0 14px rgba(24, 223, 255, 0.2), 0 18px 48px rgba(0, 0, 0, 0.76);
}

@media (max-width: 1080px) {
  .team-feature-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-pricing-shell {
    grid-template-columns: 1fr;
  }

  .team-pricing-panel {
    gap: 18px;
  }

  .promotion-hero {
    background-position: 58% center;
  }

  .promotion-hero-content {
    width: min(72vw, 680px);
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .team-hero {
    min-height: 100svh;
    padding: 122px 20px 78px;
    background-position: center;
  }

  .team-hero h1 {
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: clamp(3rem, 14vw, 5.1rem);
    line-height: 1.02;
    white-space: normal;
  }

  .team-hero-subtitle {
    margin-top: 22px;
    font-size: clamp(1.25rem, 5.7vw, 1.78rem);
    line-height: 1.42;
  }

  .team-hero-copy {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .team-feature-cards {
    padding: 0 16px 58px;
  }

  .team-feature-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
  }

  .team-feature-card {
    min-height: 160px;
    padding: 26px 18px 22px;
  }

  .team-pricing {
    padding: 58px 16px 72px;
  }

  .team-pricing-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .team-pricing-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .team-price-card {
    min-height: 500px;
    padding: 28px 22px;
  }

  .team-price-value {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .team-price-card li {
    font-size: 1rem;
  }

  .team-price-button {
    min-height: 62px;
  }

  .promotion-hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 112px 22px 64px;
    background-position: 62% center;
  }

  .promotion-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.9));
  }

  .promotion-hero-content {
    width: 100%;
  }

  .promotion-hero h1 {
    font-size: clamp(2.08rem, 8.4vw, 3.35rem);
    line-height: 1.15;
    white-space: normal;
  }

  .promotion-subtitle {
    margin-top: 18px;
    font-size: clamp(0.96rem, 4vw, 1.16rem);
    letter-spacing: 0.04em;
  }

  .promotion-copy {
    margin-top: 30px;
    font-size: 0.92rem;
    line-height: 1.78;
    letter-spacing: 0.03em;
  }

  .promotion-contact {
    margin-top: 28px;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .team-hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.6rem);
  }

  .promotion-hero {
    padding-right: 18px;
    padding-left: 18px;
    background-position: 66% center;
  }
}

/*
  Legacy fallback kept below this block in case older markup appears during review.
*/
.team-hero-legacy {
  min-height: 100vh;
  padding: 180px clamp(20px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(2, 8, 11, 0.88), rgba(2, 8, 11, 0.38)),
    url("https://oss.digitfold.com/img/2026/05/20260522201125819.jpg") center / cover;
}

@media (max-width: 1320px) {
  .course-learning-shell {
    grid-template-columns: minmax(420px, 0.72fr) minmax(620px, 1.28fr);
    gap: 38px;
  }

  .course-track {
    width: min(100%, 900px);
  }

  .pricing-grid {
    gap: 22px;
  }

  .price-card {
    padding: 28px 24px;
  }
}

@media (max-width: 1180px) {
  .course-learning-shell {
    grid-template-columns: minmax(280px, 0.74fr) minmax(560px, 1.26fr);
    gap: 34px;
    padding: 96px 32px 90px;
  }

  .course-track {
    width: min(100%, 790px);
    gap: 28px;
  }

  .course-card {
    width: min(100%, 790px);
    min-height: 168px;
  }

  .course-card:nth-child(1) {
    --course-offset: 0px;
  }

  .course-card:nth-child(2) {
    --course-offset: -48px;
  }

  .course-card:nth-child(3) {
    --course-offset: -22px;
  }

  .course-card-body {
    min-height: 168px;
    padding-right: 82px;
  }

  .install-panel {
    min-height: 300px;
  }

  .install-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .pricing-shell {
    padding-top: 82px;
  }

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

  .price-card {
    min-height: 596px;
  }
}

@media (max-width: 920px) {
  .course-learning-shell {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 78px 18px 82px;
  }

  .course-copy {
    max-width: 680px;
  }

  .course-copy p {
    max-width: 620px;
  }

  .course-button {
    margin-top: 36px;
  }

  .course-track {
    justify-self: stretch;
    width: 100%;
  }

  .course-card,
  .course-card:nth-child(1),
  .course-card:nth-child(2),
  .course-card:nth-child(3) {
    --course-offset: 0px;
    width: 100%;
    margin-left: 0;
  }

  .site-header {
    padding: 16px;
  }

  .nav-shell {
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-left {
    flex: 1;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
  }

  .nav-panel,
  .nav-actions {
    position: fixed;
    right: 16px;
    left: auto;
    display: none;
    width: min(320px, calc(100vw - 32px));
    height: auto;
    min-height: 0;
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
  }

  .nav-panel a,
  .nav-item,
  .nav-link {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .nav-panel {
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px 18px 6px 6px;
  }

  .nav-actions {
    top: 344px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px 16px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
  }

  .nav-actions > * {
    width: 100%;
    flex: 0 0 auto;
  }

  .nav-open .nav-panel,
  .nav-open .nav-actions {
    display: flex;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding-top: 138px;
    padding-bottom: 220px;
  }

  .feature-showcase {
    padding: 76px 16px 82px;
  }

  .feature-showcase h2 {
    margin-bottom: 36px;
    font-size: 2.8rem;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-visual {
    min-height: 260px;
  }

  .feature-use-cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .install-steps {
    padding: 64px 16px 72px;
  }

  .install-steps h2 {
    margin-bottom: 34px;
    font-size: 2.35rem;
  }

  .install-tabs {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
  }

  .install-tab {
    flex: 0 0 auto;
    min-width: 220px;
  }

  .install-stage {
    padding: 22px;
  }

  .install-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .install-copy,
  .install-preview {
    grid-column: auto;
  }

  .install-preview {
    width: 100%;
    aspect-ratio: 21 / 9;
  }

  .install-preview img {
    object-fit: contain;
  }

  .install-copy {
    padding: 0;
  }

  .install-description {
    max-width: 680px;
  }

  .works-showcase {
    padding: 72px 16px 76px;
  }

  .works-heading {
    margin-bottom: 30px;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 14px;
  }

  .work-card,
  .work-card-large {
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .work-card-large {
    grid-column: 1 / -1;
  }

  .pricing-shell {
    padding: 72px 18px 70px;
  }

  .pricing-heading {
    margin-bottom: 34px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .pricing-assurance {
    gap: 14px 22px;
  }

}

@media (max-width: 560px) {
  .course-learning-shell {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .course-kicker {
    margin-bottom: 22px;
  }

  .course-copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.35rem);
    line-height: 1.24;
  }

  .course-copy p {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .course-tags {
    gap: 10px;
    margin-top: 24px;
  }

  .course-tag {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .course-button {
    width: 100%;
    min-height: 54px;
    margin-top: 32px;
  }

  .course-track {
    gap: 18px;
  }

  .course-card {
    min-height: 0;
    border-radius: 16px;
  }

  .course-card::after {
    top: 128px;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 74px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 4, 4, 0.5) 46%,
      rgba(0, 4, 4, 1) 100%
    );
  }

  .course-card-media {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 190px;
  }

  .course-card-body {
    min-height: 152px;
    margin-left: 0;
    padding: 24px 78px 28px 22px;
  }

  .course-card-body h3 {
    font-size: 1.55rem;
  }

  .course-card-body p {
    max-width: none;
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .course-play {
    right: 22px;
    bottom: 24px;
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13.5vw, 4.1rem);
  }

  .hero-copy {
    line-height: 1.7;
  }

  .feature-showcase {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .feature-showcase h2 {
    font-size: 2.1rem;
    line-height: 1.28;
  }

  .feature-showcase h2 span {
    white-space: normal;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-card h3 {
    grid-template-columns: 28px auto 28px;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.12rem;
  }

  .feature-card h3::before,
  .feature-card h3::after {
    width: 28px;
  }

  .feature-visual {
    min-height: 220px;
  }

  .feature-card p {
    min-height: 0;
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .feature-use-cases {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .install-steps {
    padding-top: 52px;
    padding-bottom: 58px;
    overflow-x: hidden;
  }

  .install-steps h2 {
    font-size: 1.9rem;
    line-height: 1.22;
  }

  .install-tabs {
    border-radius: 16px 16px 0 0;
  }

  .install-tab {
    justify-content: flex-start;
    min-width: min(82vw, 300px);
    min-height: 52px;
    padding: 0 14px;
    font-size: 0.96rem;
  }

  .install-stage {
    padding: 16px;
    border-radius: 0 0 20px 20px;
  }

  .install-index {
    width: 46px;
    height: 46px;
    font-size: 1.04rem;
  }

  .install-title-row {
    gap: 12px;
  }

  .install-copy h3 {
    font-size: 1.72rem;
  }

  .install-subtitle {
    font-size: 1rem;
  }

  .install-description {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .install-actions {
    margin-top: 24px;
  }

  .install-button {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
  }

  .install-preview::after {
    inset: 14px;
  }

  .install-placeholder small {
    overflow-wrap: anywhere;
  }

  .works-showcase {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .works-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .works-heading p {
    font-size: 0.95rem;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-card-large {
    grid-column: auto;
  }

  .work-content {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 10px;
  }

  .work-play {
    width: 30px;
    height: 30px;
  }

  .work-content h3,
  .work-card-large .work-content h3 {
    font-size: 1rem;
  }

  .work-content p {
    font-size: 0.78rem;
  }

  .pricing-section::after {
    top: 40px;
    width: 60vw;
  }

  .pricing-shell {
    padding-top: 62px;
    padding-bottom: 58px;
  }

  .pricing-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.22;
  }

  .pricing-heading p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    min-height: 568px;
    padding: 24px 22px;
    border-radius: 14px;
  }

  .price-card-top {
    min-height: 210px;
  }

  .price-label {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .price-card h3 {
    margin-top: 24px;
    font-size: 1.86rem;
  }

  .price-value {
    min-height: 68px;
    margin-top: 18px;
    font-size: 3.5rem;
  }

  .price-value-text {
    font-size: 2.4rem;
  }

  .price-features {
    min-height: 220px;
    gap: 14px;
    padding-top: 24px;
  }

  .price-features li {
    font-size: 0.98rem;
  }

  .price-action {
    min-height: 90px;
  }

  .pricing-assurance {
    align-items: flex-start;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .support-dialog {
    padding: 32px 20px 22px;
    border-radius: 16px;
  }

  .support-dialog h2 {
    margin-bottom: 18px;
    font-size: 1.12rem;
  }

  .button {
    width: 100%;
  }

}
