/* Minimal reset / normalize */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

button, input, optgroup, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
  background: transparent;
  border: 0;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reduce motion for users that prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  /* Export a subset of tokens as CSS variables */
  --color-primary: #4f46e5;
  --color-secondary: #06b6d4;
  --color-success: #00AD7C;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-neutral-100: #0b0b0c;
  --color-neutral-200: #1a1a1c;
  --color-neutral-300: #2a2a2d;
  --color-neutral-400: #3b3b40;
  --color-neutral-500: #6b7280;
  --color-neutral-600: #9ca3af;
  --color-neutral-700: #d1d5db;
  --color-neutral-800: #e5e7eb;
  --color-neutral-900: #f3f4f6;
  --color-white: #ffffff;
  --color-black: #000000;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --gutter-x: 1.5rem;
  --gutter-y: 0;
}

html {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  color: #0b0b0c;
}

body {
  line-height: 1.5;
  background-color: #fff;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75rem;
  line-height: 1.35;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.5rem, 1.5rem + (2.25rem - 1.5rem) * (100vw - 768px) / (1200px - 768px), 2.25rem);
}

h2 {
  font-size: clamp(1.25rem, 1.25rem + (1.875rem - 1.25rem) * (100vw - 768px) / (1200px - 768px), 1.875rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #4f46e5;
  text-decoration: none;
}

small {
  font-size: 0.75rem;
}

strong {
  font-weight: 600;
}

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.lodd-container {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.g-0 {
  --gutter-x: 0;
  --gutter-y: 0;
}

.g-1 {
  --gutter-x: map-get(v.$spacing-scale, $i);
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.gx-1 {
  --gutter-x: map-get(v.$spacing-scale, $i);
}

.gy-1 {
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.g-2 {
  --gutter-x: map-get(v.$spacing-scale, $i);
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.gx-2 {
  --gutter-x: map-get(v.$spacing-scale, $i);
}

.gy-2 {
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.g-3 {
  --gutter-x: map-get(v.$spacing-scale, $i);
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.gx-3 {
  --gutter-x: map-get(v.$spacing-scale, $i);
}

.gy-3 {
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.g-4 {
  --gutter-x: map-get(v.$spacing-scale, $i);
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.gx-4 {
  --gutter-x: map-get(v.$spacing-scale, $i);
}

.gy-4 {
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.g-5 {
  --gutter-x: map-get(v.$spacing-scale, $i);
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.gx-5 {
  --gutter-x: map-get(v.$spacing-scale, $i);
}

.gy-5 {
  --gutter-y: map-get(v.$spacing-scale, $i);
}

.m-0 {
  margin: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mx-5 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.px-5 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.m-6 {
  margin: 2rem !important;
}

.mx-6 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.my-6 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mt-6 {
  margin-top: 2rem !important;
}

.mr-6 {
  margin-right: 2rem !important;
}

.mb-6 {
  margin-bottom: 2rem !important;
}

.ml-6 {
  margin-left: 2rem !important;
}

.p-6 {
  padding: 2rem !important;
}

.px-6 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.py-6 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pt-6 {
  padding-top: 2rem !important;
}

.pr-6 {
  padding-right: 2rem !important;
}

.pb-6 {
  padding-bottom: 2rem !important;
}

.pl-6 {
  padding-left: 2rem !important;
}

.m-7 {
  margin: 3rem !important;
}

.mx-7 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-7 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-7 {
  margin-top: 3rem !important;
}

.mr-7 {
  margin-right: 3rem !important;
}

.mb-7 {
  margin-bottom: 3rem !important;
}

.ml-7 {
  margin-left: 3rem !important;
}

.p-7 {
  padding: 3rem !important;
}

.px-7 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-7 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-7 {
  padding-top: 3rem !important;
}

.pr-7 {
  padding-right: 3rem !important;
}

.pb-7 {
  padding-bottom: 3rem !important;
}

.pl-7 {
  padding-left: 3rem !important;
}

.m-8 {
  margin: 4rem !important;
}

.mx-8 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mt-8 {
  margin-top: 4rem !important;
}

.mr-8 {
  margin-right: 4rem !important;
}

.mb-8 {
  margin-bottom: 4rem !important;
}

.ml-8 {
  margin-left: 4rem !important;
}

.p-8 {
  padding: 4rem !important;
}

.px-8 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pt-8 {
  padding-top: 4rem !important;
}

.pr-8 {
  padding-right: 4rem !important;
}

.pb-8 {
  padding-bottom: 4rem !important;
}

.pl-8 {
  padding-left: 4rem !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-xs {
  font-size: 0.75rem !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.125rem !important;
}

.fs-xl {
  font-size: 1.25rem !important;
}

.fs-2xl {
  font-size: 1.5rem !important;
}

.fs-3xl {
  font-size: 1.875rem !important;
}

.fs-4xl {
  font-size: 2.25rem !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #000; /* letterbox bars when aspect differs */
  /* Default aspect ratio (2048x1280 ~= 16:10). Override via inline style if needed. */
  --video-aspect: calc(2048 / 1280);
  /* Box dimensions for sizing math */
  --box-w: 100vw;
  --box-h: 100vh;
}

/* Fullscreen background media */
.bg-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-video__audio-toggle {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0.65);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  z-index: 99;
}

.bg-video__audio-toggle:hover,
.bg-video__audio-toggle:focus-visible {
  background-color: rgba(0, 0, 0, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.bg-video__audio-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}

/* Optional overlay helper if you want content layer guaranteed above */
.bg-overlay {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  color: var(--color-neutral-900);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 5, 0.05) 0%, rgba(6, 6, 8, 0.46) 65%, rgba(6, 6, 8, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

.hero__left {
  flex: 1 1 auto;
}

.hero__right {
  flex: 0 0 340px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  margin: 0;
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: "Readex Pro", sans-serif;
}

.hero__subtitle {
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
}

.hero__link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 163, 74, 0.5);
  padding-bottom: 0.2rem;
  transition: color 160ms ease, border-color 160ms ease;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: var(--color-white);
  border-color: var(--color-success);
}

.hero__title-highlight {
  color: var(--color-success);
}

.hero__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  font-family: "Readex Pro", sans-serif;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  align-self: flex-start;
  padding: 0.85rem 1.75rem;
  background-color: var(--color-success);
  color: var(--color-white);
  font-weight: 400;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.25;
  justify-content: space-between;
  font-family: "aktiv-grotesk", sans-serif;
  min-width: 320px;
  min-height: 80px;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.hero__button.gray__button {
  background-color: #43525A;
  box-shadow: 0 12px 24px rgba(67, 82, 90, 0.35);
}
.hero__button.back__button {
  min-width: 170px;
}

.hero__button:hover,
.hero__button:focus-visible {
  background-color: #04946B;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.4);
}

.hero__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.hero__button-icon {
  font-size: 1.25rem;
}

.main-container_bottom {
  padding: 50px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 290px;
  height: 290px;
  z-index: 2;
  max-width: 1920px;
  left: 0px;
  right: 0;
  margin: 0 auto;
}
.main-container_bottom .bottom_inside-page {
  height: 100%;
}

.inside-iframe__visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bottom_inside-page {
  position: relative;
}

.bottom_inside-page__panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.inside-head {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  padding: 50px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  left: 0px;
  right: 0;
}
.inside-head h6 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1b2838;
}

.bottom_inside-page__swatches {
  display: flex;
  gap: 10px;
}
.bottom_inside-page__swatches.large_swatch .bottom_inside-page__swatch {
  max-width: 200px;
  min-width: 200px;
}

.bottom_inside-page__swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1rem 1rem;
  border-radius: 5px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1f2937;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 120px;
  min-width: 120px;
  padding: 0;
  cursor: pointer;
}
.bottom_inside-page__swatch a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.bottom_inside-page__swatch span {
  font-size: 18px;
  font-weight: 400;
  color: #43525A;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.bottom_inside-page__swatch .img-swatch {
  border-radius: 5px;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}

.bottom_inside-page__swatch img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.bottom_inside-page__swatch--active .img-swatch,
.bottom_inside-page__swatch:hover .img-swatch {
  border: 2px solid #1b2838;
}
.bottom_inside-page__swatch--active span,
.bottom_inside-page__swatch:hover span {
  color: #1b2838;
}

.bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.z-2 {
  z-index: 2;
}

.frame-overlay {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.frame-overlay:before {
  content: "";
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(0deg, rgba(67, 82, 90, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.frame-overlay .iframe-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 62.5%;
  height: 0;
  overflow: hidden;
  margin-left: 13%;
  transform: scale(1.3);
  transform-origin: left 20%;
}
.frame-overlay .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.frame-overlay-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.frame-overlay-video:before {
  content: "";
  position: fixed;
  pointer-events: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(0deg, rgba(67, 82, 90, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.video-playing-wrap {
  position: absolute;
  top: 0;
  right: 50px;
  width: 1280px;
  min-height: 720px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  padding: 50px 0px 300px 0px;
  border-radius: 10px;
}

.video-playing-wrap__media {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: left top;
  border-radius: 10px;
}

.frame-overlay-video.image_block .image_block_wrap .image_block_media {
  overflow: hidden;
  border-radius: 10px;
}
.frame-overlay-video.image_block .image_block_wrap .image_block_media img {
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

@media screen and (min-width: 2040px) {
  body {
    overflow: hidden;
  }
  .frame-overlay .iframe-wrap {
    padding-bottom: 62.5%;
    height: 0;
    margin-left: 13%;
    transform: scale(1.4);
    transform-origin: left -10%;
  }
  .frame-overlay-video {
    max-width: 2048px;
  }
  .inside-head {
    max-width: 2048px;
  }
  .video-playing-wrap {
    padding: 50px 0px 350px 0px;
    width: 1530px;
  }
  .main-container_bottom {
    max-width: 2048px;
  }
}
.thank-you-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.thank-you__background {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.thank-you__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thank-you__content {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  z-index: 1;
}

.thank-you__message {
  text-align: center;
  color: #ffffff;
  max-width: 900px;
}

.thank-you__heading {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  font-family: "Readex Pro", sans-serif;
}

.thank-you__text {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 200;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-family: "Readex Pro", sans-serif;
}

.thank-you__actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.thank-you__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background-color: #06b6d4;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.35);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you__button:hover,
.thank-you__button:focus-visible {
  background-color: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(6, 182, 212, 0.4);
}

.thank-you__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.thank-you__button-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you__button:hover .thank-you__button-icon {
  transform: rotate(180deg);
}

/*# sourceMappingURL=main.css.map */
