@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Bold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --surface: #363636;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.logo--header [data-logo-mount] {
  display: block;
  height: clamp(28px, 5vw, 40px);
  width: auto;
  aspect-ratio: 328 / 50;
  flex-shrink: 0;
}

.logo-svg-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-core,
.logo-brows-layer,
.logo-eyes-press-layer {
  position: absolute;
  inset: 0;
}

.logo-core svg,
.logo-brows-layer svg,
.logo-eyes-press-layer svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-core #Colored_Legs,
.logo-core #Legs {
  animation-play-state: paused !important;
}

.logo-brows-layer,
.logo-eyes-press-layer {
  pointer-events: none;
}

.logo-eyes,
.logo-eyes-press {
  transition: opacity 0.33s cubic-bezier(0.33, 1, 0.68, 1);
}

.logo-eyes-press-layer {
  opacity: 0;
}

.logo-eyes-press-layer #Brows {
  animation-play-state: paused !important;
}

.logo-brow {
  transition: transform 0.33s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.1s ease;
  transform-box: view-box;
}

.logo-link:hover .logo-brow,
.logo-link:focus-visible .logo-brow {
  transform: translateY(6%);
}

.logo-link:active .logo-eyes,
.logo-link:active .logo-brow {
  opacity: 0;
}

.logo-link:active .logo-eyes-press-layer {
  opacity: 1;
}

.logo-link:active .logo-eyes-press-layer #Brows {
  animation-play-state: running !important;
}

.logo--header.logo-link {
  flex-shrink: 0;
  align-self: center;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.btn-feedback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 10px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn-feedback:hover,
.btn-feedback:focus-visible {
  opacity: 0.85;
}

.app-cards {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.app-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-card__preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 2px solid var(--surface);
}

.app-card__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card__label {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.app-card__label span:first-child {
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  white-space: nowrap;
}

.app-card__rule {
  flex: 1;
  height: 1px;
  background: var(--surface);
  min-width: 0;
}

.feedback-page {
  max-width: 1000px;
  width: 100%;
}

.feedback-page h1 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.feedback-page .intro {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label,
.form-field legend {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input[type="email"]:focus,
.form-field textarea:focus {
  outline: 1px solid var(--text);
  outline-offset: 0;
}

.form-field textarea {
  min-height: 160px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  margin: 0;
  padding: 0;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
}

.radio-option input {
  accent-color: var(--text);
  width: 16px;
  height: 16px;
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-submit {
  padding: 12px 20px;
  background: #fff;
  color: #000;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn-submit:hover:not(:disabled),
.btn-submit:focus-visible:not(:disabled) {
  opacity: 0.85;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  font-size: 14px;
  line-height: 1.5;
}

.form-status--success {
  color: var(--text);
}

.form-status--error {
  color: #ff6b6b;
}

@media (max-width: 900px) {
  .page {
    padding: 64px 20px;
    gap: 48px;
  }

  .app-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .app-card {
    width: 100%;
  }

  .site-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 48px 16px;
    gap: 40px;
  }

  .btn-feedback {
    font-size: clamp(14px, 3.8vw, 20px);
    padding: 8px;
  }

  .app-card__label span:first-child {
    font-size: clamp(18px, 5vw, 24px);
  }
}
