:root {
  color-scheme: dark;
  --ink: #f3f0e7;
  --muted: rgba(243, 240, 231, 0.72);
  --soft: rgba(243, 240, 231, 0.52);
  --line: rgba(243, 240, 231, 0.18);
  --teal: #70d7d8;
  --amber: #d2a462;
  --black: #050606;
  --font-display: "Avenir Next", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-width: 1180px;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

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

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-width: 1180px;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.video-stack,
.stage-video,
.shade {
  position: absolute;
  inset: 0;
}

.video-stack {
  z-index: -3;
  background: var(--black);
}

.stage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  opacity: 1;
}

.shade {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.9) 0%, rgb(0 0 0 / 0.74) 30%, rgb(0 0 0 / 0.22) 64%, rgb(0 0 0 / 0.1) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0.5) 0%, rgb(0 0 0 / 0.02) 48%, rgb(0 0 0 / 0.46) 100%);
}

.hero {
  position: relative;
  z-index: 8;
  width: 500px;
  margin: clamp(58px, 9vh, 82px) 0 0 max(56px, calc((100vw - 1360px) / 2 + 24px));
}

.hero-lockup {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 20px;
}

.hero-mark {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgb(0 0 0 / 0.42)) drop-shadow(0 0 16px rgb(112 215 216 / 0.16));
}

h1 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: 0;
}

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

.lead {
  margin: 0;
  max-width: 500px;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 21px;
  font-weight: 640;
  line-height: 1.24;
}

.support {
  margin: 15px 0 0;
  max-width: 450px;
  color: rgba(243, 240, 231, 0.76);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.43;
}

.plan-copy {
  margin-top: 27px;
  max-width: 410px;
}

.plan-copy h2 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

.plan-copy p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.43;
}

.plan-copy ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.plan-copy li {
  position: relative;
  padding-left: 18px;
  color: rgba(243, 240, 231, 0.84);
  font-size: 14.5px;
  font-weight: 560;
}

.plan-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgb(112 215 216 / 0.72);
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  max-width: 410px;
}

.request-control {
  appearance: none;
  justify-self: start;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgb(243 240 231 / 0.16);
  border-radius: 999px;
  color: rgb(243 240 231 / 0.92);
  background: linear-gradient(180deg, rgb(243 240 231 / 0.09), rgb(112 215 216 / 0.055));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.09), 0 16px 42px rgb(0 0 0 / 0.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
}

.request-control:hover,
.request-control:focus-visible {
  border-color: rgb(112 215 216 / 0.5);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.11), 0 0 24px rgb(112 215 216 / 0.13);
}

.request-control:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.request-panel {
  max-width: 385px;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-left: 1px solid rgb(112 215 216 / 0.38);
  color: rgba(243, 240, 231, 0.76);
  background: linear-gradient(90deg, rgb(112 215 216 / 0.08), transparent);
}

.contact-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.contact-row span {
  color: rgba(243, 240, 231, 0.56);
  font-size: 12px;
  font-weight: 650;
}

.contact-row strong {
  overflow: hidden;
  color: rgba(243, 240, 231, 0.88);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-panel p {
  margin: 2px 0 0;
  max-width: 330px;
  color: rgba(243, 240, 231, 0.62);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.42;
}

.top-controls {
  position: absolute;
  z-index: 12;
  top: 30px;
  right: max(56px, calc((100vw - 1360px) / 2 + 24px));
  display: flex;
  gap: 12px;
  align-items: start;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 44px);
  padding: 3px;
  border: 1px solid rgb(243 240 231 / 0.11);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(12 14 14 / 0.48), rgb(3 4 4 / 0.36));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05), 0 22px 58px rgb(0 0 0 / 0.24);
  backdrop-filter: blur(18px);
}

.language-option {
  appearance: none;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: rgb(243 240 231 / 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  transition:
    opacity 240ms ease,
    color 240ms ease,
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.language-option.is-active {
  color: rgb(243 240 231 / 0.94);
  background: linear-gradient(180deg, rgb(243 240 231 / 0.12), rgb(112 215 216 / 0.08));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12), 0 0 18px rgb(112 215 216 / 0.12);
}

.language-option:hover,
.language-option:focus-visible {
  color: rgb(243 240 231 / 0.94);
}

.language-option:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.stage-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 478px;
  padding: 3px;
  border: 1px solid rgb(243 240 231 / 0.11);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(12 14 14 / 0.44), rgb(3 4 4 / 0.34));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05), 0 22px 58px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px);
}

.control-tab {
  appearance: none;
  position: relative;
  min-width: 0;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  opacity: 0.68;
  transition:
    opacity 240ms ease,
    color 240ms ease,
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.control-tab.is-active {
  background: linear-gradient(180deg, rgb(243 240 231 / 0.12), rgb(112 215 216 / 0.08));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12), 0 0 22px rgb(112 215 216 / 0.13);
  opacity: 1;
}

.control-tab.is-active::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(112 215 216 / 0.74), transparent);
  box-shadow: 0 0 12px rgb(112 215 216 / 0.46);
}

.control-label {
  overflow: hidden;
  color: rgb(243 240 231 / 0.84);
  font-size: 12.5px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.control-tab:hover,
.control-tab:focus-visible {
  border-color: rgb(243 240 231 / 0.32);
  opacity: 1;
}

.control-tab:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .stage-video {
    transition: none;
  }
}
