:root {
  --bg-dark: #111111;
  --page-bg: #f4f4f2;
  --text: #111111;
  --muted: #7e7e7e;
  --line: rgba(0, 0, 0, 0.12);
  --input-border: rgba(0, 0, 0, 0.75);
  --font-brand: "Nudica Mono", "Courier New", monospace;
  --font-body: "Helvetica Neue Medium", Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: "Nudica Mono";
  src: url("nudicamono-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue Medium";
  src: url("HelveticaNeueMedium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
}

.page {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #f6f6f4, #efefed);
  padding: 40px 40px 24px;
  overflow: hidden;
  transition: filter 0.3s ease;
}

.page.modal-active {
  filter: blur(9px);
}

.top-square {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 13px;
  height: 13px;
  background: #000;
}

.brand-fixed {
  display: none;
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 10001;
  font-size: 18px;
  font-family: var(--font-brand);
  letter-spacing: 3px;
  color: #7f7f7f;
  text-transform: uppercase;
  pointer-events: none;
}

.hero {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.title {
  font-family: var(--font-brand);
  font-size: clamp(54px, 4.5vw, 88px);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
  width: max-content;
  max-width: 100%;
  margin-bottom: clamp(58px, 8vh, 120px);
  letter-spacing: 0;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line-top {
  display: flex;
  gap: 1ch;
}

.content-area {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: visible;
  display: flex;
  align-items: center;
}

.video-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  overflow: hidden;
  border-radius: 0;
  background: #f6f6f4;
  box-shadow: none;
  z-index: 1;
}

.video-layer video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #f6f6f4 0%,
    #f6f6f4 35%,
    rgba(246, 246, 244, 0.85) 55%,
    rgba(246, 246, 244, 0.4) 75%,
    transparent 100%
  );
}
.copy {
  position: relative;
  z-index: 2;
  padding: 8px 0;
  max-width: min(54vw, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.copy h2 {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 40px);
  text-transform: uppercase;
  background: none;
  white-space: nowrap;
  line-height: 1;
}

.copy p {
  margin-top: 10px;
  font-size: clamp(20px, 2.4vw, 46px);
  line-height: 1.08;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.footer {
  margin-top: auto;
  padding-top: 52px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.footer .info:nth-child(2) {
  text-align: right;
  justify-self: end;
}

.cta-btn {
  font-family: var(--font-body);
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  min-height: 54px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.info {
  font-size: 16px;
  line-height: 1.45;
  color: #2f2f2f;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer .info:last-child {
  text-align: right;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 24px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.08);
}

.modal.open {
  display: block;
}

.modal-card {
  position: relative;
  width: min(780px, calc(100vw - 48px));
  margin: 24px auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 32px 34px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 2px;
  color: #8d8d8d;
  text-transform: uppercase;
}

.modal-brand {
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 4px;
  color: #9b9b9b;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-right: 120px;
}

.modal-card h3 {
  font-family: var(--font-body);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: #8e8e8e;
  margin-bottom: 42px;
}

.customer-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-bottom: 24px;
}

.field-label,
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  color: #9a9a9a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.type-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #444;
  cursor: pointer;
}

.type-option input {
  width: 16px;
  height: 16px;
  accent-color: #000;
}

.form-grid.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 16px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  color: #444;
  padding: 18px 22px;
  outline: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder,
.field select {
  color: #8e8e8e;
}

.field select {
  cursor: pointer;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.actions {
  margin-top: 6px;
}

.btn-primary {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: #000;
  color: #fff;
  min-height: 72px;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
}

.required-note {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: #9a9a9a;
}

.hidden {
  display: none !important;
}

@media (min-width: 1400px) {
  .copy {
    width: min(54vw, 820px);
    max-width: none;
  }
}

@media (min-width: 1200px) and (max-height: 760px) {
  .page {
    padding: 24px 24px 18px;
  }

  .hero {
    height: calc(100vh - 42px);
  }

  .title {
    font-size: clamp(44px, 4.0vw, 72px);
    margin-bottom: 28px;
  }

  .copy {
    width: min(46vw, 710px);
    max-width: none;
    padding: 0;
  }

  .copy h2 {
    font-size: clamp(20px, 2.4vw, 38px);
  }

  .copy p {
    margin-top: 8px;
    font-size: clamp(22px, 2.3vw, 36px);
    line-height: 1.04;
  }

  .footer {
    padding-top: 24px;
    grid-template-columns: 240px 1fr 1fr;
    gap: 24px;
  }

  .cta-btn {
    min-height: 48px;
    padding: 12px 22px;
    font-size: 15px;
  }

  .info {
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 900px) {
  .page {
    padding: 32px 24px 24px;
  }

  .brand-fixed {
    left: 24px;
    top: 24px;
    font-size: 14px;
    letter-spacing: 3px;
  }

  .hero {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}

  .content-area {
    margin-top: 80px;
    min-height: 240px;
    width: 100%;
  }

  .copy h2 {
    white-space: normal;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-btn {
    width: 100%;
  }

  .modal-card {
    width: 100%;
    margin: 12px auto;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .form-grid.two-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modal-close {
    position: static;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
  }

  .modal-brand {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 22px 18px 18px;
  }

  .title {
    font-size: 44px;
    width: 100%;
  }

  .content-area {
    margin-top: 50px;
    min-height: 200px;
  }

  .copy p {
    font-size: 34px;
  }

  .modal {
    padding: 12px;
  }

  .modal-card h3 {
    font-size: 32px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 16px 18px;
    border-radius: 14px;
  }

  .btn-primary {
    min-height: 62px;
    font-size: 16px;
    letter-spacing: 3px;
  }
}

.language-switcher {
  position: absolute;
  top: 24px;
  right: 54px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 2px;
  color: #8d8d8d;
  text-transform: uppercase;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: #8d8d8d;
  padding: 0;
}

.lang-btn.active {
  color: #000;
}
/* Production adjustments: stable layout scale, cleaner video background and API form feedback */
html,
body {
  min-height: 100vh;
  min-height: 100svh;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(22px, 3.6vmin, 40px) clamp(18px, 3.8vmin, 40px) clamp(18px, 2.5vmin, 24px);
  border-radius: 0;
}

.hero {
  min-height: calc(100vh - clamp(44px, 7.2vmin, 64px));
  min-height: calc(100svh - clamp(44px, 7.2vmin, 64px));
}

.title {
  position: relative;
  z-index: 3;
  font-size: clamp(54px, 4.5vw, 88px);
  line-height: 0.9;
  margin-bottom: clamp(32px, 6.2vmin, 120px);
}

.title-line-top {
  display: flex;
  gap: 1ch;
}

.content-area {
  align-items: flex-end;
}

.video-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  opacity: 1;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.video-layer video,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(246, 246, 244, 0.96) 0%,
    rgba(246, 246, 244, 0.92) 36%,
    rgba(246, 246, 244, 0.45) 56%,
    rgba(246, 246, 244, 0.06) 82%,
    transparent 100%
  );
}

.copy,
.title,
.footer {
  position: relative;
  z-index: 3;
}

.copy {
  width: min(54vw, 820px);
  max-width: none;
  height: auto;
  padding-bottom: clamp(20px, 4vmin, 56px);
}

.copy h2 {
  font-size: clamp(22px, 2.5vw, 40px);
  line-height: 1.02;
  white-space: nowrap;
}

.copy p {
  margin-top: clamp(8px, 1.1vmin, 12px);
  font-size: clamp(20px, 2.4vw, 46px);
  line-height: 1.08;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.footer {
  grid-template-columns: minmax(220px, 300px) 1fr 1fr;
  gap: clamp(20px, 2.8vmin, 38px);
  padding-top: clamp(26px, 4.8vmin, 52px);
}

.cta-btn {
  min-height: clamp(48px, 5.6vmin, 54px);
  padding: 0 clamp(20px, 2.4vmin, 28px);
  font-size: clamp(14px, 1.4vmin, 16px);
}

.info {
  font-size: clamp(14px, 1.45vmin, 16px);
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1px;
}

.form-status.success {
  color: #1f7a3f;
}

.form-status.error {
  color: #b42318;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none !important;
}



@media (min-width: 901px) {
  .modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal {
    overflow: hidden;
  }

  .modal-card {
    max-height: calc(100vh - 48px);
    max-height: calc(100svh - 48px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-card form {
    overflow-y: auto;
    padding-right: 8px;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .hero {
    min-height: calc(100vh - 48px);
    min-height: calc(100svh - 48px);
  }

  .top-square {
    top: 16px;
    right: 16px;
    width: 11px;
    height: 11px;
  }

  .language-switcher {
    top: 12px;
    right: 36px;
    font-size: 13px;
  }

  .title {
    width: min(100%, 520px);
    font-size: clamp(48px, 7vw, 62px);
    margin-bottom: clamp(24px, 4.8vmin, 52px);
  }

  .title-line,
  .title-line-top {
    white-space: nowrap;
  }

  .content-area {
    min-height: min(34vh, 320px);
    align-items: flex-end;
    margin-top: 0;
  }

  .copy {
    width: min(100%, 620px);
    max-width: min(100%, 620px);
    padding-bottom: 0;
  }

  .copy h2 {
    font-size: clamp(20px, 3.5vmin, 32px);
    white-space: normal;
  }

  .copy p {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.12;
  }

  .video-layer::after {
    background: linear-gradient(
      to bottom,
      rgba(246, 246, 244, 0.9) 0%,
      rgba(246, 246, 244, 0.8) 30%,
      rgba(246, 246, 244, 0.56) 62%,
      rgba(246, 246, 244, 0.82) 100%
    );
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: clamp(44px, 8vmin, 72px);
  }

  .footer .info,
  .footer .info:nth-child(2),
  .footer .info:last-child {
    text-align: left;
    justify-self: start;
    margin: 0;
  }

  .cta-btn {
    width: 100%;
  }

  .modal {
    padding: 10px;
    overflow-y: auto;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    max-height: calc(100svh - 20px);
    margin: 0;
    padding: 22px 18px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-card form {
    overflow-y: auto;
    padding-right: 4px;
  }

  .modal-close {
    position: static;
    margin-left: auto;
    margin-bottom: 18px;
  }

  .modal-brand {
    padding-right: 0;
  }

  .modal-card h3 {
    font-size: clamp(32px, 5.8vmin, 42px);
  }

  .modal-subtitle {
    margin-bottom: 28px;
  }

  .form-grid.two-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 15px 16px;
  }

  .btn-primary {
    min-height: 62px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .title {
    width: min(100%, 410px);
    font-size: clamp(40px, 11.8vmin, 58px);
  }

  .title-line-top {
    gap: 0.42em;
  }

  .content-area {
    min-height: min(28vh, 240px);
  }

  .copy h2 {
    font-size: clamp(17px, 4.2vmin, 24px);
  }

  .copy {
    width: min(100%, 82vw);
    max-width: 82vw;
  }

  .copy p {
    font-size: clamp(24px, 6vw, 34px);
  }
}

@media (max-width: 390px) {
  .title {
    font-size: clamp(34px, 11vmin, 42px);
  }

  .copy p {
    font-size: clamp(21px, 5.8vw, 28px);
  }
}

@media (max-width: 480px) {
  .title {
    width: min(100%, 360px) !important;
    font-size: clamp(34px, 12.4vw, 48px) !important;
  }

  .copy {
    width: min(100%, 88vw) !important;
    max-width: 88vw !important;
  }

  .copy p {
    font-size: 18px !important;
  }
}

@media (min-width: 1200px) and (max-height: 760px) {
  .page {
    padding: 24px 24px 18px;
  }

  .hero {
    min-height: calc(100vh - 42px);
    min-height: calc(100svh - 42px);
  }

  .title {
    font-size: clamp(44px, 4.0vw, 72px);
    margin-bottom: 28px;
  }

  .copy {
    width: min(46vw, 710px);
    max-width: none;
    padding: 0;
  }

  .copy h2 {
    font-size: clamp(20px, 2.4vw, 38px);
  }

  .copy p {
    margin-top: 8px;
    font-size: clamp(22px, 2.3vw, 36px);
    line-height: 1.04;
  }

  .footer {
    padding-top: 24px;
    grid-template-columns: 240px 1fr 1fr;
    gap: 24px;
  }

  .cta-btn {
    min-height: 48px;
    padding: 12px 22px;
    font-size: 15px;
  }

  .info {
    font-size: 14px;
    line-height: 1.35;
  }
}
