
@font-face {
  font-family: 'Pobeda';
  src: url('fonts/pobeda-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pobeda';
  src: url('fonts/pobeda-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #000000;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --border: rgba(255, 255, 255, 0.15);
  --border-hover: rgba(255, 255, 255, 0.25);
  --radius: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 80px -20px rgba(245, 158, 11, 0.15);
  --section-padding-y: 1.75rem;
  --section-padding-x: clamp(1rem, 4vw, 2rem);
  --top-gap: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
  body a, body button, body [role="button"], body .btn, body .nav__icon, body .faq__question, body .contact-link {
    cursor: none;
  }
}

.custom-cursor {
  display: none;
  position: fixed;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b 50%, #d97706);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 12px 2px rgba(245, 158, 11, 0.5);
  animation: cursor-pulse 1.5s ease-in-out infinite;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, box-shadow 0.2s ease;
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.custom-cursor.is-hover {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0 18px 4px rgba(245, 158, 11, 0.6);
  animation: cursor-pulse-hover 0.6s ease-in-out infinite;
}

@keyframes cursor-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

@keyframes cursor-pulse-hover {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-image, none) center / cover no-repeat;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(245, 158, 11, 0.25) 0%,
    rgba(249, 115, 22, 0.12) 35%,
    rgba(245, 158, 11, 0.04) 60%,
    transparent 100%
  );
  animation: bg-gradient-pulse 5s ease-in-out infinite;
}

@keyframes bg-gradient-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

::selection {
  background: rgba(245, 158, 11, 0.3);
}


.header {
  position: relative;
  width: 100%;
  z-index: 100;
  padding: var(--top-gap) clamp(1.5rem, 4vw, 2rem) 0;
  background: transparent;
  pointer-events: none;
  isolation: isolate;
}

.header__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem clamp(1.5rem, 4vw, 3rem);
}

main {
  padding-top: 0;
}


.logo {
  font-family: 'Pobeda', sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav__icon:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}


.nav__dropdown-wrap {
  position: relative;
}

.nav__icon--trigger {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 280px;
  border-radius: var(--radius-md);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.5);
  z-index: 200;
  overflow: hidden;
}

.nav__dropdown-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__dropdown-tab {
  flex: 1;
  padding: 1rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.nav__dropdown-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav__dropdown-tab--active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__dropdown-panel {
  padding: 1.25rem 1.25rem 1.5rem;
}

.nav__dropdown-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav__dropdown-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.nav__dropdown-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: var(--radius);
  outline: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 0 0 2px transparent;
}

.nav__dropdown-input::placeholder {
  color: var(--text-dim);
}

.nav__dropdown-input:focus {
  box-shadow: 0 0 0 2px var(--accent);
}

.nav__dropdown-submit {
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.nav__dropdown-submit:hover {
  background: var(--accent-hover);
}

.nav__dropdown-username {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  word-break: break-word;
}
.nav__dropdown-user-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav__dropdown-user-btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav__dropdown-user-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}
.nav__dropdown-user-btn--admin {
  background: #e89a04;
  border-color: #e8ba04;
  color: #fff;
}
.nav__dropdown-user-btn--admin:hover {
  background: #c55204;
  border-color: #c55204;
  color: #fff;
}
.nav__dropdown-user-btn--logout {
  color: var(--text-muted);
}
.nav__dropdown-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.nav__dropdown-cancel {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.nav__dropdown-cancel:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav__dropdown-wrap.is-open .nav__dropdown {
  display: block;
}

.nav__dropdown[hidden] {
  display: none !important;
}


.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 2rem auto;
  margin-top: 0rem !important;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
}


.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e4e4e7;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s;
}

.hero__badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}


.hero__title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #71717a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__title .line {
  display: block;
}

.hero__title--regular {
  font-family: 'Pobeda', sans-serif;
  font-weight: 400;
}

.hero__title--bold {
  font-family: 'Pobeda', sans-serif;
  font-weight: 700;
}

.hero__subtitle {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: #a1a1aa;
  letter-spacing: 0.025em;
  line-height: 1.625;
}

.hero__subtitle-accent {
  display: block;
  margin-top: 0.25em;
  color: #fff;
  font-weight: 500;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn--primary {
  position: relative;
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  color: #000;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: btn-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.btn--primary:hover::before {
  animation: none;
  opacity: 0.5;
}

.btn--secondary {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}


.hero__notes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  align-items: flex-start;
}

.hero__note {
  font-size: 0.875rem;
  color: #71717a;
}

.hero__note-sub {
  font-size: 0.75rem;
  color: #52525b;
  font-style: italic;
}


.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.hero__media-img {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero__media-img::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(245, 158, 11, 0.35) 0%,
    rgba(245, 158, 11, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero__media-img img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  animation: bottle-float 4s ease-in-out infinite;
}

@keyframes bottle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}


.contacts {
  padding: var(--section-padding-y) var(--section-padding-x) var(--section-padding-y);
  max-width: 1440px;
  margin: 0 auto;
}

.contacts__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.contact-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.contact-link__icon svg {
  width: 100%;
  height: 100%;
}

.contact-link__icon-img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-link__label {
  white-space: nowrap;
}

.contact-link--text {
  cursor: pointer;
  border: none;
  font: inherit;
}


.contact-text-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: contact-text-fade 0.2s ease;
}

@keyframes contact-text-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-text-modal {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: contact-text-scale 0.25s ease;
}

@keyframes contact-text-scale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.contact-text-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.contact-text-modal__title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text);
}

.contact-text-modal__close {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.contact-text-modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.contact-text-modal__body {
  padding: 1.25rem;
}

.contact-text-modal__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  user-select: text;
}

.contact-text-modal__actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.contact-text-modal__actions .btn {
  flex: 1;
}

.contact-text-modal__copy {
  min-width: 0;
}


.products {
  padding: var(--section-padding-y) var(--section-padding-x) var(--section-padding-y);
}

.products__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.products__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.5;
}


.products__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 600px) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (min-width: 900px) {
  .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products__item {
  min-width: 0;
}


.product {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.product:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
}

.product__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  cursor: default;
}

.product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 140px;
  padding: 0.5rem 0;
}

@media (max-width: 599px) {
  .product__media {
    min-height: 220px;
  }
}

.product__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(160px, 28vw, 220px);
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

@media (max-width: 599px) {
  .product__img {
    max-height: 280px;
  }
}

.product:hover .product__img {
  transform: scale(1.03);
}

.product__body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  padding-top: 0.75rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.product__meta {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
}

.product__desc {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.1rem;
}


.jobs {
  padding: var(--section-padding-y) var(--section-padding-x) 5rem;
}

.jobs__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jobs__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.5rem);
}

.jobs__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jobs__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.5;
}

.jobs__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .jobs__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.jobs__item {
  min-width: 0;
}

.job {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.job:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.25);
}

.job__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.job__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.job__body {
  min-width: 0;
  flex: 1;
}

.job__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.job__desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.4;
}


.faq {
  padding: var(--section-padding-y) var(--section-padding-x) 5rem;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.5rem);
}

.faq__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.5;
}

.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  min-width: 0;
}

.faq__details {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq__details:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq__details[open] {
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.2);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker,
.faq__question::marker {
  display: none;
}

.faq__question::after {
  content: '';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.faq__details[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__question:hover {
  color: var(--accent);
}

.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__details[open] .faq__content {
  grid-template-rows: 1fr;
}

.faq__content-inner {
  overflow: hidden;
}

.faq__content-inner p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  padding-top: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}


.footer {
  max-width: 1200px;
  margin: 0.25rem auto 0;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 1024px) {
  .footer {
    margin-left: clamp(1rem, 4vw, 2rem);
    margin-right: clamp(1rem, 4vw, 2rem);
  }
}

.footer__inner {
  text-align: center;
}

.footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}


.section {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.55;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}


.block-section {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.block-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.block-section--velocity {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.block-section__inner--grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.block-section--velocity .velocity-content {
  order: 1;
  text-align: center;
}

.block-section--velocity .velocity-card-wrap {
  order: 2;
}

.velocity-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0e0e10;
  padding: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.velocity-stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.velocity-stat-item {
  position: relative;
}

.velocity-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.75rem;
}

.velocity-label {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.velocity-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.velocity-value--accent {
  color: var(--accent);
}

.velocity-bar {
  height: 1.5rem;
  background: #18181b;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.velocity-bar--lg {
  height: 2.5rem;
  position: relative;
}

.velocity-bar__fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #d97706, #f97316, #f59e0b);
  border-radius: 9999px;
  position: relative;
}

.velocity-bar__fill--accent {
  width: 100%;
}

.velocity-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.velocity-mini-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.4;
  transition: border-color 0.2s;
}

.velocity-mini-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.block-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.block-section__text {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.block-section--velocity .velocity-content .block-section__text {
  margin-left: auto;
  margin-right: auto;
}

.block-section--velocity .velocity-content .btn {
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .block-section__inner--grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .block-section--velocity .velocity-content {
    order: 2;
    text-align: left;
  }
  .block-section--velocity .velocity-content .block-section__text {
    margin-left: 0;
    margin-right: 0;
  }
  .block-section--velocity .velocity-card-wrap {
    order: 1;
  }
}

.block-section__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1aa;
  margin-bottom: 1rem;
}

.block-section__text--lead {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.block-section--pricing {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.block-section--pricing .block-section__inner {
  text-align: center;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.pricing-price__currency {
  font-size: 1rem;
  font-weight: 500;
  color: #a1a1aa;
  margin-left: 0.25rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #a1a1aa;
}

.pricing-features li + li { margin-top: 0.25rem; }

.block-section__note {
  font-size: 0.875rem;
  color: #71717a;
  font-style: italic;
  margin-bottom: 2rem;
}

.pricing-includes {
  text-align: left;
  max-width: 28rem;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.pricing-includes__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-includes__list {
  list-style: none;
  font-size: 0.9375rem;
  color: #a1a1aa;
  line-height: 1.6;
}

.pricing-includes__list li + li { margin-top: 0.35rem; }

.pricing-meta {
  list-style: none;
  font-size: 0.875rem;
  color: #71717a;
}

.pricing-meta li + li { margin-top: 0.25rem; }

@media (min-width: 640px) {
  .block-section__inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .block-section__inner { padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 1024px) {
  .block-section__inner { padding-left: 5rem; padding-right: 5rem; }
  .block-section--pricing {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}


@media (min-width: 640px) {
  .hero { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .hero { padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 640px) {
  .hero__title { font-size: 4.5rem; }
  .hero__subtitle { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .hero {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .hero__title { font-size: 6rem; }

  .hero__content {
    align-items: flex-start;
    text-align: left;
  }

  .hero__notes {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem) 3rem;
    margin-left: clamp(1rem, 4vw, 2rem);
    margin-right: clamp(1rem, 4vw, 2rem);
  }

  .hero__content {
    max-width: none;
    order: 1;
  }

  .hero__notes {
    align-items: center;
  }

  .hero__media {
    order: -1;
    justify-self: center;
    justify-content: center;
  }

  .hero__media-img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .header {
    padding: var(--top-gap) 1rem 0;
  }
  .header__inner {
    padding: 0.75rem 1.25rem;
  }

  .hero {
    min-height: auto;
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem) 2rem;
    margin-left: clamp(1rem, 4vw, 2rem);
    margin-right: clamp(1rem, 4vw, 2rem);
    gap: 1.5rem;
  }

  .hero__media-img {
    max-width: 58%;
  }

  .hero__title--regular {
    font-size: 50px;
  }

  .hero__title--bold {
    font-size: 93px;
    line-height: 79px;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .section {
    padding: 4rem 1.25rem;
  }
}
