:root {
  color-scheme: dark;
  font-family: var(--font-ui);
  font-synthesis: none;
  --font-ui: "CS Halton", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "CS Halton", "Avenir Next", "Segoe UI", sans-serif;
  --canvas: #0a0a0a;
  --panel: #f0f0f0;
  --panel-soft: #dcdcdc;
  --ink: #f7f7f7;
  --ink-dark: #111111;
  --muted: #a6a6a6;
  --muted-dark: #606060;
  --line: #353535;
  --line-light: #d1d1d1;
  --accent: #b8f3ff;
  --accent-dark: #8fdee9;
  --danger: #ff8075;
  --success: #b8f3ff;
  --radius-xl: 70px;
  --radius-lg: 30px;
  --radius-md: 15px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

::selection {
  color: var(--ink-dark);
  background: var(--accent);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--canvas);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--canvas);
  border-radius: 999px;
  background: #4b4b4b;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-frame {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  animation: page-in 360ms var(--ease) both;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
}

.site-header {
  min-height: 86px;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.spark-mark {
  display: block;
  width: 24px;
  height: 24px;
  background: var(--ink);
  clip-path: polygon(50% 0, 59% 39%, 100% 50%, 59% 61%, 50% 100%, 41% 61%, 0 50%, 41% 39%);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.4vw, 52px);
  margin: 0 auto;
}

.primary-nav a {
  position: relative;
  color: #b0b0b0;
  font-size: 15px;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-control select {
  min-height: 38px;
  padding: 0 25px 0 10px;
  color: #9c9c9c;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  appearance: none;
}

.language-control::after {
  position: absolute;
  right: 10px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #a0a0a0;
  border-bottom: 1px solid #a0a0a0;
  content: "";
  pointer-events: none;
  transform: rotate(45deg) translateY(-2px);
}

.language-control select:hover,
.language-control select:focus {
  color: var(--ink);
  border-color: var(--accent);
}

.language-control option {
  color: var(--ink-dark);
  background: var(--panel);
}

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

.round-button,
.avatar-button,
.contact-button,
.visual-arrow,
.feature-arrow {
  display: grid;
  place-items: center;
  padding: 0;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.round-button,
.avatar-button {
  width: 52px;
  height: 52px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.round-button:hover,
.avatar-button:hover {
  color: var(--ink-dark);
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-1px);
}

.avatar-button {
  font-size: 16px;
  font-weight: 800;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  white-space: nowrap;
}

.contact-button:hover {
  color: var(--ink-dark);
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5.6vw, 82px);
  padding: 71px 0 39px;
}

.hero-copy {
  min-width: 0;
  padding: 16px 0 11px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  display: grid;
  max-width: 8ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.65rem, 6.2vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.hero-accent {
  color: var(--ink);
}

.hero-intro {
  max-width: 38ch;
  margin-top: 31px;
  margin-left: auto;
  color: #b3b3b3;
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}

.login-form {
  display: grid;
  max-width: 520px;
  gap: 13px;
  margin-top: 29px;
  margin-left: auto;
}

.form-field {
  display: grid;
  gap: 7px;
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-label-row label {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-label-row span {
  color: #737373;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #858585;
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  min-height: 50px;
  padding: 0 47px 0 46px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: 0;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.input-wrap input::placeholder {
  color: #777;
}

.input-wrap input:hover {
  border-color: #6e6e6e;
}

.input-wrap input:focus {
  border-color: var(--accent);
  background: rgba(184, 243, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(184, 243, 255, 0.1);
}

.input-wrap:has(input[aria-invalid="true"]) input {
  border-color: var(--danger);
}

.password-toggle {
  position: absolute;
  right: 7px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #858585;
  border: 0;
  border-radius: 9px;
  background: transparent;
  transition: color 180ms ease, background 180ms ease;
}

.password-toggle:hover {
  color: var(--ink);
  background: #222;
}

.field-error {
  min-height: 14px;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.35;
}

.field-error[hidden] {
  display: block;
  visibility: hidden;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 1px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #898989;
  font-size: 11px;
  cursor: pointer;
}

.checkbox-label input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent);
}

.text-button {
  padding: 3px 0;
  color: var(--accent);
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.text-button:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 3px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 25px;
  color: var(--ink-dark);
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.primary-button:hover:not(:disabled) {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: 0 10px 20px rgba(184, 243, 255, 0.12);
  transform: translateY(-1px);
}

.primary-button:active:not(:disabled),
.visual-arrow:active,
.round-button:active,
.avatar-button:active {
  transform: translateY(1px);
}

.primary-button:disabled {
  color: #222;
  border-color: #70929a;
  background: #70929a;
  box-shadow: none;
}

.primary-button.is-success {
  color: var(--ink-dark);
  border-color: var(--accent);
  background: var(--accent);
}

.button-icon {
  width: 17px;
  height: 17px;
}

.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: 10px;
  white-space: nowrap;
}

.demo-note .icon {
  width: 14px;
  height: 14px;
}

.auth-feedback {
  min-height: 16px;
  color: #888;
  font-size: 11px;
  line-height: 1.4;
}

.auth-feedback.is-success {
  color: var(--success);
}

.auth-feedback.is-info {
  color: var(--accent);
}

@media (min-width: 861px) {
  .login-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 12px;
  }

  .form-options,
  .form-submit-row,
  .auth-feedback {
    grid-column: 1 / -1;
  }
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  min-height: 545px;
  overflow: visible;
  isolation: isolate;
}

.visual-surface-shape {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 0 #f0f0f0);
}

.visual-surface-shape path {
  fill: var(--panel);
  stroke: var(--panel);
  stroke-width: 0.25;
  vector-effect: non-scaling-stroke;
}

.visual-frame::before {
  position: absolute;
  z-index: 1;
  top: -128px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  content: "";
}

.visual-frame::after {
  position: absolute;
  z-index: 1;
  bottom: -180px;
  left: -80px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  content: "";
}

.visual-topline {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 31px;
  left: 31px;
  display: flex;
  justify-content: space-between;
  color: #5d5d5d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.visual-topline span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-dark);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.visual-topline .live-dot {
  background: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(184, 243, 255, 0.32);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 50%;
}

.visual-orbit--large {
  top: 75px;
  left: 16%;
  width: 410px;
  height: 410px;
}

.visual-orbit--small {
  top: 144px;
  left: 28%;
  width: 250px;
  height: 250px;
  border-color: rgba(17, 17, 17, 0.15);
}

.visual-person {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 14px 22px rgba(17, 17, 17, 0.12);
}

.visual-person--main {
  top: 142px;
  left: 29%;
  width: 235px;
  height: 235px;
  color: var(--ink);
  background: var(--canvas);
  font-size: 68px;
}

.visual-person--one {
  top: 104px;
  right: 15%;
  width: 78px;
  height: 78px;
  color: var(--ink-dark);
  background: #bcbcbc;
}

.visual-person--two {
  right: 8%;
  bottom: 190px;
  width: 66px;
  height: 66px;
  color: var(--ink-dark);
  background: var(--accent);
}

.call-summary,
.audio-summary {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border: 1px solid #303030;
  background: rgba(10, 10, 10, 0.93);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.15);
}

.call-summary {
  top: 68px;
  left: 30px;
  padding: 10px 13px 10px 10px;
  border-radius: 16px;
}

.audio-summary {
  right: 28px;
  bottom: 44px;
  padding: 10px 12px 10px 10px;
  border-radius: 16px;
}

.call-summary-icon,
.audio-summary-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink-dark);
  border-radius: 10px;
  background: var(--accent);
}

.audio-summary-icon {
  color: var(--ink-dark);
  background: var(--panel);
}

.call-summary > span:nth-child(2),
.audio-summary > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.call-summary strong,
.audio-summary strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.call-summary small,
.audio-summary small {
  color: #9b9b9b;
  font-size: 10px;
}

.call-summary-status,
.audio-summary-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 7px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.audio-summary-toggle {
  color: var(--accent);
}

.call-summary-status .live-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 243, 255, 0.15);
}

.waveform {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 132px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 58px;
}

.waveform span {
  display: block;
  width: 5px;
  height: var(--height);
  min-height: 10px;
  border-radius: 999px;
  background: #222;
  opacity: 0.78;
}

.participant-count {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 53px;
  display: grid;
  justify-items: end;
  color: #666;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.participant-count strong {
  margin: 2px 0 3px;
  color: #111;
  font-size: 38px;
  letter-spacing: -0.08em;
}

.visual-arrow {
  position: absolute;
  z-index: 8;
  top: -1px;
  right: -24px;
  width: 100px;
  height: 100px;
  color: var(--ink-dark);
  border-radius: 50%;
  border: 4px solid var(--canvas);
  background: var(--accent);
}

.visual-arrow:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.visual-thumb-rail {
  position: absolute;
  z-index: 9;
  bottom: 17px;
  left: -3px;
  display: grid;
  gap: 10px;
  transform: translateX(-50%);
}

.visual-thumb {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  padding: 0;
  color: var(--ink-dark);
  border: 7px solid var(--canvas);
  border-radius: 50%;
  background: var(--panel);
  font-size: 15px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.visual-thumb:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateX(2px);
}

.visual-thumb .icon {
  width: 23px;
  height: 23px;
}

.visual-thumb--two {
  background: #cfcfcf;
}

.visual-thumb--three {
  background: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(92px, 1fr));
  gap: 28px;
  padding: 0 0 42px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 150px;
  padding: 8px;
  color: var(--ink-dark);
  border: 1px solid #3b3b3b;
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:first-child {
  grid-row: 1 / span 2;
  min-height: 220px;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 0;
}

.feature-card:nth-child(2) .feature-visual,
.feature-card:nth-child(3) .feature-visual {
  min-height: 90px;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(3) .feature-icon {
  width: 43px;
  height: 43px;
}

.feature-card:nth-child(2) .feature-icon .icon,
.feature-card:nth-child(3) .feature-icon .icon {
  width: 21px;
  height: 21px;
}

.feature-card:nth-child(2) .feature-copy strong,
.feature-card:nth-child(3) .feature-copy strong {
  font-size: 13px;
}

.feature-card:nth-child(2) .feature-copy span,
.feature-card:nth-child(3) .feature-copy span {
  font-size: 11px;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 23px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.feature-visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 132px;
  place-items: center;
  border-radius: 20px;
}

.feature-visual--cream {
  background: #d8d8d8;
}

.feature-visual--green {
  background: #cfeff4;
}

.feature-visual--blue {
  background: #bfeaf2;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink-dark);
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.feature-icon .icon {
  width: 26px;
  height: 26px;
}

.feature-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  color: var(--ink-dark);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.feature-copy {
  display: grid;
  gap: 7px;
  padding: 8px 12px 8px 0;
}

.feature-copy strong {
  color: var(--ink-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.feature-copy span {
  color: #5d5d5d;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  min-height: 62px;
  gap: 10px;
  padding: 13px 0;
  color: #777;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-line {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #777;
}

.footer-spacer {
  flex: 1;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
}

.footer-status .live-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 243, 255, 0.12);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-frame {
    width: min(100% - 40px, 1000px);
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 34px;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(3.35rem, 6.35vw, 5.5rem);
  }

  .visual-frame {
    min-height: 500px;
  }

  .visual-person--main {
    left: 24%;
  }

  .feature-grid {
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .site-frame {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    gap: 15px;
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(3.85rem, 11vw, 6rem);
  }

  .hero-intro,
  .login-form {
    max-width: 560px;
  }

  .hero-intro {
    margin-left: 0;
    text-align: left;
  }

  .login-form {
    margin-left: 0;
  }

  .visual-frame {
    min-height: 510px;
  }

  .visual-thumb-rail {
    left: 20px;
    transform: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .feature-card,
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    grid-template-columns: 150px minmax(0, 1fr);
    grid-row: auto;
    min-height: 126px;
  }

  .feature-card:first-child {
    min-height: 150px;
  }
}

@media (max-width: 600px) {
  .site-frame {
    width: calc(100% - 20px);
  }

  .site-header {
    min-height: 72px;
  }

  .wordmark {
    font-size: 22px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .primary-nav {
    display: none;
  }

  .round-button,
  .avatar-button {
    width: 43px;
    height: 43px;
  }

  .contact-button {
    display: none;
  }

  .hero-section {
    gap: 30px;
    padding: 35px 0 28px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.4rem);
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 14px;
  }

  .login-form {
    margin-top: 23px;
  }

  .form-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .primary-button {
    width: 100%;
  }

  .visual-frame {
    min-height: 430px;
    border-radius: 52px 52px 52px 25px;
  }

  .visual-topline {
    top: 22px;
    right: 20px;
    left: 20px;
    font-size: 9px;
  }

  .visual-arrow {
    width: 70px;
    height: 70px;
  }

  .call-summary {
    top: 66px;
    left: 19px;
    max-width: calc(100% - 90px);
  }

  .visual-orbit--large {
    top: 90px;
    left: 7%;
    width: 300px;
    height: 300px;
  }

  .visual-orbit--small {
    top: 125px;
    left: 19%;
    width: 210px;
    height: 210px;
  }

  .visual-person--main {
    top: 127px;
    left: 20%;
    width: 180px;
    height: 180px;
    font-size: 54px;
  }

  .visual-person--one {
    top: 105px;
    right: 8%;
    width: 58px;
    height: 58px;
    font-size: 17px;
  }

  .visual-person--two {
    right: 5%;
    bottom: 148px;
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .waveform {
    right: 19px;
    bottom: 105px;
    left: 19px;
    gap: 5px;
  }

  .audio-summary {
    right: 19px;
    bottom: 22px;
    left: 19px;
  }

  .participant-count {
    right: 22px;
    bottom: 123px;
  }

  .participant-count strong {
    font-size: 30px;
  }

  .feature-grid {
    padding-bottom: 28px;
  }

  .feature-card,
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 126px;
  }

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

  .feature-icon {
    width: 49px;
    height: 49px;
  }

  .feature-copy strong {
    font-size: 14px;
  }

  .feature-copy span {
    font-size: 11px;
  }

  .site-footer {
    flex-wrap: wrap;
    gap: 7px;
    padding: 14px 0;
    line-height: 1.4;
  }

  .footer-line {
    display: none;
  }

  .footer-spacer {
    display: none;
  }

  .footer-status {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Release center --------------------------------------------------------- */

.primary-nav a.is-active {
  color: var(--ink);
}

.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.eyebrow,
.release-kicker,
.release-meta-label {
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow .live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 243, 255, 0.12);
}

.release-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  min-height: 635px;
  padding: 74px 0 58px;
}

.release-copy {
  padding: 15px 0;
}

.release-copy h1 {
  max-width: 10ch;
  margin-top: 28px;
  font-size: clamp(3.4rem, 5.7vw, 5.8rem);
}

.release-copy h1 em {
  color: var(--accent);
  font-style: normal;
}

.release-copy .hero-intro {
  max-width: 39ch;
  margin: 31px 0 0;
  text-align: left;
}

.release-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  max-width: 520px;
  margin-top: 41px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.release-hero-meta span {
  display: grid;
  gap: 7px;
}

.release-hero-meta small {
  color: #686868;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.release-hero-meta strong {
  color: #c8c8c8;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.release-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 88px 88px 88px 32px;
  background: var(--panel);
  box-shadow: 0 23px 60px rgba(0, 0, 0, 0.2);
}

.release-visual-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.36;
  background-image: linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, 0.07) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(130deg, transparent 7%, #000 33%, #000 73%, transparent 100%);
}

.release-visual::before {
  position: absolute;
  z-index: 2;
  top: -145px;
  right: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  content: "";
}

.release-visual::after {
  position: absolute;
  z-index: 2;
  bottom: -190px;
  left: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 50%;
  content: "";
}

.release-orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
}

.release-orbit--one {
  top: 85px;
  left: 15%;
  width: 370px;
  height: 370px;
}

.release-orbit--two {
  top: 155px;
  left: 27%;
  width: 230px;
  height: 230px;
  border-color: rgba(17, 17, 17, 0.12);
}

.release-visual-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border: 1px solid #313131;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.94);
  box-shadow: 0 14px 25px rgba(17, 17, 17, 0.14);
}

.release-visual-card--top {
  top: 40px;
  left: 30px;
  padding: 10px 14px 10px 10px;
}

.release-visual-card--bottom {
  right: 31px;
  bottom: 36px;
  padding: 10px 12px 10px 10px;
}

.release-visual-card > span:last-child {
  display: grid;
  gap: 3px;
}

.release-visual-card strong {
  font-size: 12px;
  font-weight: 800;
}

.release-visual-card small {
  color: #929292;
  font-size: 10px;
}

.release-card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink-dark);
  border-radius: 10px;
  background: var(--accent);
}

.release-visual-version {
  position: absolute;
  z-index: 5;
  top: 220px;
  left: 29%;
  display: grid;
  color: var(--ink-dark);
  transform: rotate(-7deg);
}

.release-visual-version small {
  color: #767676;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.release-visual-version strong {
  margin: 4px 0 1px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.release-visual-version span {
  justify-self: end;
  color: #686868;
  font-size: 10px;
}

.release-visual-notch {
  position: absolute;
  z-index: 8;
  top: 78px;
  right: -2px;
  width: 85px;
  height: 105px;
  border-radius: 54px 0 0 54px;
  background: var(--canvas);
}

.release-visual-notch::after {
  position: absolute;
  top: -72px;
  right: 0;
  width: 82px;
  height: 82px;
  border: 4px solid var(--canvas);
  border-radius: 50%;
  background: var(--accent);
  content: "↗";
  color: var(--ink-dark);
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
}

.release-console,
.release-list-section,
.release-process {
  padding: 54px 0 58px;
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 27px;
}

.section-heading-row--tight {
  align-items: center;
  margin-bottom: 22px;
}

.section-heading-row h2,
.release-process h2 {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.channel-tabs {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.channel-tab {
  min-height: 39px;
  padding: 0 15px;
  color: #8d8d8d;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.channel-tab:hover,
.channel-tab.is-active {
  color: var(--ink-dark);
  border-color: var(--accent);
  background: var(--accent);
}

.release-console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 18px;
}

.gate-panel,
.release-status-panel,
.release-card,
.release-empty {
  border: 1px solid var(--line);
}

.gate-panel {
  min-height: 260px;
  padding: clamp(25px, 4vw, 43px);
  border-radius: 32px;
  background: #111;
}

.gate-panel h3 {
  max-width: 11ch;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.gate-panel p {
  max-width: 53ch;
  margin-top: 18px;
  color: #9c9c9c;
  font-size: 13px;
  line-height: 1.55;
}

.key-form {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.key-form > label {
  color: #d9d9d9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.key-input-row {
  display: flex;
  gap: 8px;
  max-width: 600px;
}

.key-input-row input {
  width: 100%;
  min-height: 53px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #3b3b3b;
  border-radius: var(--radius-md);
  outline: 0;
  background: #0a0a0a;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.key-input-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 243, 255, 0.1);
}

.key-form > small {
  color: #6f6f6f;
  font-size: 10px;
  line-height: 1.4;
}

.release-feedback {
  min-height: 16px;
  margin: 10px 0 0;
  color: #858585;
  font-size: 11px;
  line-height: 1.45;
}

.release-feedback.is-info {
  color: var(--accent);
}

.release-feedback.is-success {
  color: var(--success);
}

.release-feedback.is-error {
  color: var(--danger);
}

.release-status-panel {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border-radius: 32px 32px 32px 10px;
  background: var(--panel);
  color: var(--ink-dark);
}

.release-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.release-status-badge,
.release-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--ink-dark);
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-status-badge.is-canary,
.release-chip.is-canary {
  background: #d5d5d5;
}

.release-status-badge.is-locked {
  color: #d7d7d7;
  border-color: #555;
  background: #222;
}

.release-status-version {
  display: block;
  margin-top: 42px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.release-status-channel {
  margin-top: 8px;
  color: #676767;
  font-size: 11px;
}

.release-facts {
  display: grid;
  gap: 9px;
  margin: 24px 0 22px;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.release-facts div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.release-facts dt,
.release-facts dd {
  margin: 0;
  font-size: 10px;
}

.release-facts dt {
  color: #777;
  text-transform: uppercase;
}

.release-facts dd {
  color: #222;
  font-weight: 800;
  text-align: right;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  width: max-content;
  padding: 0 16px;
  color: var(--ink-dark);
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.secondary-button:hover:not(:disabled) {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
  color: var(--ink);
  transform: translateY(-1px);
}

.release-status-panel .secondary-button {
  justify-self: start;
}

.secondary-button:disabled,
.primary-button.is-loading {
  cursor: wait;
  opacity: 0.65;
}

.release-list {
  min-height: 190px;
}

.release-card,
.release-empty {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 32px 32px 32px 11px;
  background: #111;
}

.release-empty {
  min-height: 210px;
}

.release-empty h3 {
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.release-empty p {
  max-width: 50ch;
  margin: 17px 0 21px;
  color: #a0a0a0;
  font-size: 13px;
  line-height: 1.55;
}

.release-card-topline,
.release-card-heading,
.release-process > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.release-date {
  color: #6e6e6e;
  font-size: 10px;
}

.release-card-heading {
  align-items: end;
  margin-top: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #2d2d2d;
}

.release-card-heading h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.release-card-heading h3 span {
  color: var(--accent);
}

.release-card-heading p {
  margin-top: 9px;
  color: #777;
  font-size: 11px;
}

.release-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.8fr);
  gap: 35px;
  padding-top: 23px;
}

.release-notes {
  display: grid;
  gap: 11px;
  margin: 13px 0 0;
  padding: 0;
  color: #b4b4b4;
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.release-notes li {
  position: relative;
  padding-left: 18px;
}

.release-notes li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.release-downloads {
  display: grid;
  align-content: start;
  gap: 11px;
}

.release-download-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--ink-dark);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  background: var(--accent);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.release-download-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.release-download-button.is-disabled {
  color: #969696;
  border-color: #3b3b3b;
  background: #202020;
  cursor: not-allowed;
}

.release-file-state {
  color: #686868;
  font-size: 9px;
  text-transform: uppercase;
}

.release-downloads small {
  color: #666;
  font-size: 10px;
  line-height: 1.4;
}

.section-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 10px;
  text-transform: uppercase;
}

.section-note .icon {
  color: var(--accent);
}

.release-process {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
  gap: 45px;
  padding-bottom: 70px;
}

.release-process::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.98) 5%, rgba(10, 10, 10, 0.76) 54%, rgba(10, 10, 10, 0.94)), url("assets/website/havex-ambient-signal.png") center / cover no-repeat;
  content: "";
  opacity: 0.82;
}

.release-process > div:first-child {
  align-items: end;
  justify-content: flex-start;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 17px 0 0;
  border-top: 1px solid #393939;
}

.process-list li > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.process-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.process-list p {
  color: #858585;
  font-size: 11px;
  line-height: 1.5;
}

.footer-status {
  color: var(--accent);
  text-decoration: none;
}

.footer-legal-links {
  display: inline-flex;
  gap: 12px;
  margin-left: 12px;
}

.footer-legal-links a {
  color: #7c7c7c;
  font-size: 10px;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .release-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 31px;
  }

  .release-visual {
    min-height: 500px;
  }

  .release-console-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  }

  .release-process {
    gap: 25px;
  }
}

@media (max-width: 760px) {
  .release-hero,
  .release-console-grid,
  .release-process {
    grid-template-columns: 1fr;
  }

  .release-hero {
    min-height: 0;
    padding-top: 53px;
  }

  .release-copy h1 {
    max-width: none;
    font-size: clamp(3.25rem, 13vw, 5.6rem);
  }

  .release-visual {
    min-height: 480px;
  }

  .release-process {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .release-hero-meta,
  .process-list,
  .release-card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .release-card-topline,
  .release-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .channel-tabs {
    width: 100%;
  }

  .channel-tab {
    width: 50%;
    padding: 0 7px;
  }

  .key-input-row {
    align-items: stretch;
    flex-direction: column;
  }

  .key-input-row .primary-button {
    width: 100%;
  }

  .release-visual {
    min-height: 410px;
    border-radius: 58px 58px 58px 24px;
  }

  .release-orbit--one {
    top: 95px;
    left: 9%;
    width: 300px;
    height: 300px;
  }

  .release-orbit--two {
    top: 150px;
    left: 21%;
    width: 205px;
    height: 205px;
  }

  .release-visual-version {
    top: 188px;
    left: 22%;
  }

  .release-visual-version strong {
    font-size: 3.7rem;
  }

  .release-visual-card--bottom {
    right: 18px;
    bottom: 24px;
  }

  .release-visual-notch {
    top: 70px;
    width: 63px;
    height: 82px;
  }

  .release-visual-notch::after {
    top: -54px;
    width: 63px;
    height: 63px;
    font-size: 21px;
  }

  .footer-legal-links {
    width: 100%;
    margin-left: 0;
  }
}
