:root {
  --background: #020711;
  --panel: rgba(113, 214, 255, 0.055);
  --panel-hover: rgba(113, 214, 255, 0.10);
  --border: rgba(145, 225, 255, 0.20);
  --text: #f4fbff;
  --muted: rgba(215, 241, 255, 0.70);
  --accent: #68d8ff;
  --accent-light: #b7efff;
  --glow: rgba(66, 198, 255, 0.30);
  --shadow:
  0 28px 80px rgba(0, 0, 0, 0.55),
  0 0 50px rgba(54, 191, 255, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 122, 0, 0.13),
      transparent 31%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(255, 122, 0, 0.08),
      transparent 32%
    ),
    var(--background);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: flex;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  align-items: center;
  justify-content: center;
  border: none; 
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.home-link:hover {
  color: #ffffff;
  border-color: rgba(210, 225, 238, 0.55);
  background: rgba(190, 220, 240, 0.07);
  box-shadow: 0 0 18px rgba(100, 190, 255, 0.12);
  transform: translateY(-1px);
}

.hero-heading {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: transparent;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #bdbdbd 62%,
      #777777 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 780px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(390px, 1.18fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.video-column {
  position: sticky;
  top: 26px;
}

.video-shell {
  position: relative;
  width: min(100%, 385px);
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.025)
);
  box-shadow:
  var(--shadow),
    0 0 60px rgba(255, 122, 0, 0.09);
}

.video-shell::before {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
  pointer-events: none;
}

video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;

  border-radius: 40px;
  background: #000000;
  object-fit: cover;
}

.video-note {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
  text-align: center;
}

.faq-column {
  padding-top: 4px;
}

.faq-heading {
  margin: 0 0 9px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
}

.faq-intro {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(220, 230, 240, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
  border-color: rgba(180, 210, 235, 0.45);
  background: rgba(180, 210, 235, 0.08);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.015em;
}

 .faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(210, 220, 230, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.05),
    0 0 12px rgba(150, 200, 255, 0.08);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: #dfe7ee;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p,
.faq-answer ul,
.faq-answer li {
  color: var(--muted);
  line-height: 1.72;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
}

.faq-answer ul {
  margin: 0;
  padding: 2px 40px 20px 42px;
}

.faq-answer li {
  margin: 0 0 7px;
  padding-left: 3px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--muted);
}

.cta {
  margin-top: 50px;
  padding: 32px;
  border: 1px solid rgba(190, 210, 230, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(
      135deg,
      rgba(80, 180, 255, 0.10),
      rgba(255, 255, 255, 0.03)
    );

  box-shadow:
    0 0 30px rgba(80, 180, 255, 0.08);

  text-align: center;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  letter-spacing: -0.035em;
}

.cta p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.65;
}

.cta-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid rgba(210, 220, 230, 0.35);
  border-radius: 999px;
  color: #10151c;
  background: linear-gradient(
    135deg,
    rgba(230, 235, 240, 0.95),
    rgba(170, 180, 190, 0.95)
);
  font-weight: 850;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(120, 180, 255, 0.18);
}
footer {
  padding-top: 34px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  text-align: center;
}
  
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

 .brand-mark img {
  display: block;
  width: 63px;
  height: 63px;
  object-fit: contain;  
}

@media (max-width: 850px) {
.page {
  width: min(100% - 24px, 680px);
  padding-top: 18px;
}

.topbar {
  margin-bottom: 34px;
}

.content-grid {
  grid-template-columns: 1fr;
}

.video-column {
  position: static;
}

.video-shell {
  width: min(100%, 390px);
}

video {
  max-height: none;
}

.faq-column {
  padding-top: 10px;
}
}

@media (max-width: 520px) {
.brand {
  font-size: 0.95rem;
}

.home-link {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.hero-heading {
  margin-bottom: 34px;
}

.faq-question {
  min-height: 66px;
  padding: 16px;
}

.faq-answer p {
  padding: 0 16px 19px;
}

.cta {
  padding: 26px 18px;
}
}

@media (prefers-reduced-motion: reduce) {
html {
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  transition: none !important;
}
}

   
