/*
Theme Name: OMD Summit
Theme URI: https://example.com/
Author: OMD
Description: Одностраничный лендинг OMD SUMMIT / Open Minds Day
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700;800&display=swap");

/* =Base
--------------------------------------------- */

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #000037;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.omd-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 32px 40px;
}

/* =Header
--------------------------------------------- */

.omd-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 32px;
}

.omd-logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.omd-logo-image {
  width: 240px;
}

.omd-logo-image img {
  width: 100%;
  height: auto;
  display: block;
}

.omd-logo-tagline {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.omd-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.omd-nav--left {
  justify-self: flex-start;
}

.omd-nav a {
  opacity: 0.85;
}

.omd-nav a:hover {
  opacity: 1;
}

.omd-cta-btn,
.omd-primary-btn {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.omd-btn {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.8);
}

.omd-btn__label {
  display: inline-flex;
  align-items: center;
  padding: 18px 24px;
  background: #ff0001;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 9;
}

.omd-btn__cap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 75px;
  background: #ffffff;
  color: #ff0037;
  font-size: 30px;
  border-radius: 0 999px 999px 0;
  margin-left: -25px;
  padding-right: 15px;
}

.omd-header-cta {
  display: flex;
  justify-content: flex-end;
}

.omd-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95);
}

/* =Hero Layout
--------------------------------------------- */

.omd-main-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 20px;
  padding: 14px;
  border-radius: 32px;
  background: #050e75;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.omd-main-left {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #000037;
  border: 1px solid #1820f8cc;
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 0 6.94px 0 #1820f819;
  box-shadow: 0 0 19.5px 0 #1820f826;
  box-shadow: 0 0 52.31px 0 #1820f834;
  box-shadow: 0 0 120px 0 #1820f84d;
}

.omd-main-left.has-result {
  background-color: #9A180D;
}

.omd-main-left.has-result.archetype-thinker {
  background-color: #080DA2;
  border: 4px solid #B7D2F2!important;
}

.omd-main-left.has-result.archetype-maker {
  background-color: #8F6700;
  border: 4px solid #F5D870!important;
}

.omd-main-left.has-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.omd-main-left.has-result > * {
  position: relative;
  z-index: 1;
}

.omd-top-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.omd-bottom-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
  width: 100%;
}

.omd-title {
  font-size: 90px;
  line-height: 0.9;
  font-weight: 900;
  font-family: "Roboto Condensed", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.omd-title--animated {
  opacity: 0;
  transform: translateY(-20px);
  animation: omd-title-in 0.7s ease-out 0.1s forwards;
}

.omd-chat-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.omd-chat-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #07194f 0%, #040724 100%);
  position: relative;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.9);
}

.omd-chat-card--primary {
  padding: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: omd-chat-in 0.6s ease-out 0.6s forwards;
}

.omd-chat-card--secondary {
  padding: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-end;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: omd-chat-in 0.6s ease-out 0.9s forwards;
}

.omd-chat-avatar-wrap {
  flex: 0 0 auto;
  width: 81px;
  height: 81px;
  border-radius: 50%;
  overflow: hidden;
}

.omd-chat-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.omd-chat-bubble {
  flex: 1 1 auto;
  background: linear-gradient(180deg, #070F68 0%, #171F79 100%);
    padding: 22px 20px 22px 20px;
    border-radius: 0px 32px 32px 32px;
}

.omd-chat-card:nth-child(2) {
  background: transparent;
}

.omd-chat-left {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: space-between;
}

.omd-chat-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ff4b5c 0, #ff0037 40%, #7b0020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  text-transform: lowercase;
}

.omd-chat-card:nth-child(2) .omd-chat-avatar {
  background: radial-gradient(circle at 30% 20%, #4b63ff 0, #0035ff 40%, #001577 100%);
}

.omd-chat-text-main {
  font-size: 20px;
  line-height: 1.5;
}

.omd-chat-text-main strong {
  font-weight: 700;
}

.omd-chat-meta {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.omd-chat-check {
  font-size: 12px;
  letter-spacing: -5px;
  color: #f2b60a;
}

/* =Form
--------------------------------------------- */

.omd-form {
  margin-top: 0;
  display: none;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.omd-form.is-visible {
  display: flex;
}

.omd-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.omd-form-label {
  font-size: 14px;
  font-weight: 600;
}

.omd-input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 100px;
  border: 1px solid #E5E7EB80;
  background: #F5F6F81A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.omd-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.omd-input:focus {
  outline: none;
  background: #4EFF4E33;
  border: 2px solid #4EFF4E;
  box-shadow: 0px 0px 40px 0px #4EFF4E66;
}

.omd-form-consent {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  opacity: 0.85;
}

.omd-checkbox {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  background: transparent;
  accent-color: #ff0001;
}

/* =Quiz step
--------------------------------------------- */

.omd-quiz {
  display: none;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.omd-quiz.is-visible {
  opacity: 1;
  visibility: visible;
}

.omd-quiz-question {
  font-size: 52px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.omd-quiz-cards {
  display: flex;
  gap: 40px;
}

.omd-quiz-card-label {
  display: block;
  cursor: pointer;
  position: relative;
}

.omd-quiz-card-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.omd-quiz-card {
  flex: 0 0 150px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  border: 1px solid #FFFFFF33;
  padding: 10px;
  overflow: visible;
  background: transparent;
  transition: all 0.3s ease;
}

.omd-quiz-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.omd-quiz-card-radio:checked + .omd-quiz-card {
  border: 1px solid #FF000166;
  background-color: #FF00013D;
}

.omd-quiz-card-indicator {
  position: relative;
  margin: 15px auto 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #FFFFFF33;
  display: block;
}

.omd-quiz-card-radio:checked + .omd-quiz-card .omd-quiz-card-indicator {
  border-color: #ff0001;
  background: transparent;
}

.omd-quiz-card-radio:checked + .omd-quiz-card .omd-quiz-card-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0001;
}

.omd-quiz-card--red {
  background: transparent;
}

.omd-quiz-card--yellow {
  background: transparent;
}

.omd-quiz-card--blue {
  background: transparent;
}

/* =Quiz Step 2 - Options
--------------------------------------------- */

.omd-quiz-step2-top {
  width: 100%;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.omd-quiz-step2-top[style*="display: block"] {
  opacity: 1;
  visibility: visible;
}

.omd-quiz-step2-bottom {
  width: 100%;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.omd-quiz-step2-bottom[style*="display: block"] {
  opacity: 1;
  visibility: visible;
}

.omd-quiz-step2 .omd-quiz-progress {
  margin-top: auto;
  margin-bottom: 0;
}

.omd-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.omd-quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 14, 117, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.omd-quiz-option:hover {
  background: rgba(5, 14, 117, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.omd-quiz-option-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.omd-quiz-option-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
  flex-shrink: 0;
  position: relative;
}

.omd-quiz-option-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}

.omd-quiz-option-radio:checked ~ .omd-quiz-option-text {
  color: #ffffff;
}

.omd-quiz-option-radio:checked ~ .omd-quiz-option-indicator {
  border-color: #ff0001;
}

.omd-quiz-option-radio:checked ~ .omd-quiz-option-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0001;
}

.omd-quiz-option:has(.omd-quiz-option-radio:checked) {
  background: rgba(255, 0, 1, 0.2);
  border-color: rgba(255, 0, 1, 0.4);
}

.omd-quiz-progress {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.omd-quiz-progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.9;
}

.omd-quiz-progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #32051f;
  overflow: hidden;
}

.omd-quiz-progress-fill {
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff0001 0%, #ff8a00 100%);
}

@keyframes omd-title-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes omd-chat-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.omd-main-pattern {
  display: none;
}

.omd-pattern-item {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08) 0, #050923 65%);
  opacity: 0.7;
}

.omd-main-right {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.omd-hero-frame {
  width: 100%;
  max-width: 500px;
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  border: 2px solid #FF0001;
  background: #000037;
  box-shadow: 0px 0px 6.94px 0px #FF000119;
  box-shadow: 0px 0px 19.5px 0px #08060626;
  box-shadow: 0px 0px 52.31px 0px #FF000134;
  box-shadow: 0px 0px 120px 0px #FF00014D;
}

.omd-hero-inner {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
  box-shadow: 0px 0px 6.94px 0px #FF000119;
  box-shadow: 0px 0px 19.5px 0px #08060626;
  box-shadow: 0px 0px 52.31px 0px #FF000134;
  box-shadow: 0px 0px 120px 0px #FF00014D;
}

.omd-hero-video {
  opacity: 1;
  transition: opacity 0.3s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 0.56 / 1;
  /* Дополнительные правила для iOS */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Принудительное отображение первого кадра */
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.omd-hero-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.omd-hero-video-poster.hidden {
  opacity: 0;
  visibility: hidden;
}

.omd-primary-btn {
  margin-top: 0;
  align-self: flex-start;
  box-shadow: none;
}

.omd-primary-btn .omd-btn__label {
  padding: 18px 24px;
  font-size: 18px;
  letter-spacing: -1px;
}

.omd-primary-btn:hover {
  transform: translateY(-1px);
}

/* =Quiz Result
--------------------------------------------- */

.omd-main-card.archetype-dreamer {
  background: #B61D07;
  box-shadow: 0 26px 70px rgba(183, 29, 7, 0.85);
}

.omd-quiz-result {
  display: none;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.omd-quiz-result.is-visible {
  opacity: 1;
}

.omd-quiz-result-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.omd-main-card>.archetype-dreamer{
  border: 4px solid #F77729;
}

.omd-quiz-result-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.omd-quiz-result-content > * {
  position: relative;
  z-index: 1;
}

.omd-main-right .omd-hero-frame.archetype-dreamer{
border: 8px solid #F77729;
}

.omd-quiz-result-title {
  font-size: 50px;
  text-align: center;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin: 0;

}
.archetype-dreamer .omd-quiz-result-title{
  color: #FFBC7B;
}

.omd-quiz-result-archetype {
  display: flex;
  width: 100%;
  padding: 24px 40px;
  border-radius: 16px;
  background: transparent;
  border: 2px solid #FFBC7B;
  color: #FFBC7B;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  align-self: flex-start;
  justify-content: center;
}

.omd-quiz-result-text {
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  color: #FFBC7B;
  margin: 0;
}

.omd-quiz-result-actions {
  display: none;
  flex-direction: row;
  gap: 16px;
  margin-top: 0;
}

.omd-quiz-result-btn {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.omd-quiz-result-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
}

.omd-quiz-result-btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  background: #ff0001;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 9;
  width: 100%;
}

.omd-quiz-result-btn-cap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100px;
  background: #ffffff;
  color: #ff0037;
  border-radius: 0 999px 999px 0;
  margin-left: -25px;
  padding-right: 15px;
}

.omd-quiz-result-btn-icon {
  width: 22px;
  height: 20px;
  display: block;
  color: #FF0001;
}

.archetype-dreamer .omd-quiz-result-btn-icon {
  color: #FF0001;
}

.archetype-thinker .omd-quiz-result-btn-icon {
  color: #1820F8;
}

.archetype-maker .omd-quiz-result-btn-icon {
  color: #FFB700;
}

/* Share Modal
--------------------------------------------- */

.omd-share-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.omd-share-modal.is-open {
  display: flex;
}

.omd-share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.omd-share-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  padding: 32px 28px;
  border-radius: 24px;
  background: #050e75;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.omd-share-modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.omd-share-modal-text {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.omd-share-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
}

.omd-share-link {
  flex: 1 1 auto;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
}

.omd-share-link--fb {
  background: #1877f2;
}

.omd-share-link--x {
  background: #000000;
}

.omd-share-link--ig {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 40%, #d6249f 70%, #285aeb 100%);
}

.omd-share-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.omd-hero-frame.has-result {
  border-color: #F77729;
  background: #B61D07;
  box-shadow: 0px 0px 6.94px 0px #F7772919;
  box-shadow: 0px 0px 19.5px 0px #F7772926;
  box-shadow: 0px 0px 52.31px 0px #F7772934;
  box-shadow: 0px 0px 120px 0px #F777294D;
}

.omd-hero-inner.has-result {
  background: #B61D07;
  box-shadow: 0px 0px 6.94px 0px #F7772919;
  box-shadow: 0px 0px 19.5px 0px #F7772926;
  box-shadow: 0px 0px 52.31px 0px #F7772934;
  box-shadow: 0px 0px 120px 0px #F777294D;
}

/* =Thinker (Blue) Result Styles
--------------------------------------------- */

.omd-main-card.archetype-thinker {
  background: #1820F8;
  box-shadow: 0 26px 70px rgba(24, 32, 248, 0.85);
}

.omd-main-right .omd-hero-frame.archetype-thinker {
  border: 8px solid #B7D2F2;
}

.omd-hero-frame.has-result.archetype-thinker {
  border-color: #B7D2F2;
  background: #1820F8;
  box-shadow: 0px 0px 6.94px 0px #B7D2F219;
  box-shadow: 0px 0px 19.5px 0px #B7D2F226;
  box-shadow: 0px 0px 52.31px 0px #B7D2F234;
  box-shadow: 0px 0px 120px 0px #B7D2F24D;
}

.omd-hero-inner.has-result.archetype-thinker {
  background: #1820F8;
  box-shadow: 0px 0px 6.94px 0px #B7D2F219;
  box-shadow: 0px 0px 19.5px 0px #B7D2F226;
  box-shadow: 0px 0px 52.31px 0px #B7D2F234;
  box-shadow: 0px 0px 120px 0px #B7D2F24D;
}

.archetype-thinker .omd-quiz-result-title {
  color: #B7D2F2;
}

.archetype-thinker .omd-quiz-result-archetype {
  border-color: #B7D2F2;
  color: #B7D2F2;
}

.archetype-thinker .omd-quiz-result-text {
  color: #B7D2F2;
}

.archetype-thinker .omd-quiz-result-btn-label {
  background: #1820F8;
}

/* =Maker (Yellow/Gold) Result Styles
--------------------------------------------- */

.omd-main-card.archetype-maker {
  background: #FFB700;
  box-shadow: 0 26px 70px rgba(255, 183, 0, 0.85);
}

.omd-main-right .omd-hero-frame.archetype-maker {
  border: 8px solid #FFB700;
}

.omd-hero-frame.has-result.archetype-maker {
  border-color: #F5D870;
  background: #FFB700;
  box-shadow: 0px 0px 6.94px 0px #FFB70019;
  box-shadow: 0px 0px 19.5px 0px #FFB70026;
  box-shadow: 0px 0px 52.31px 0px #FFB70034;
  box-shadow: 0px 0px 120px 0px #FFB7004D;
}

.omd-hero-inner.has-result.archetype-maker {
  background: #FFB700;
  box-shadow: 0px 0px 6.94px 0px #FFB70019;
  box-shadow: 0px 0px 19.5px 0px #FFB70026;
  box-shadow: 0px 0px 52.31px 0px #FFB70034;
  box-shadow: 0px 0px 120px 0px #FFB7004D;
}

.archetype-maker .omd-quiz-result-title {
  color: #ffffff;
}

.archetype-maker .omd-quiz-result-archetype {
  border-color: #ffffff;
  color: #ffffff;
}

.archetype-maker .omd-quiz-result-text {
  color: #ffffff;
}

.archetype-maker .omd-quiz-result-btn-label {
  background: #FFB700;
}

.archetype-maker .omd-quiz-result-archetype-label {
  border-color: #FFB700;
}

.omd-quiz-result-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}

.omd-quiz-result-archetype-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #F77729;
  border-radius: 8px;
  padding: 8px 16px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  align-self: center;
  margin-top: 16px;
}

.archetype-dreamer .omd-quiz-result-archetype-label {
  border-color: #F77729;
}

.archetype-thinker .omd-quiz-result-archetype-label {
  border-color: #B7D2F2;
}

.archetype-maker .omd-quiz-result-archetype-label {
  border-color: #F77729;
}

.omd-quiz-result-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 24px;
}

/* =About Section
--------------------------------------------- */

.omd-about-section {
  position: relative;
  margin-top: 100px;
}

.omd-about-bg {
  width: 100%;
  height: 500px;
  border-radius: 244px;
  overflow: hidden;
}

.omd-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.omd-about-content {
  position: relative;
  z-index: 2;
  background: #00058D80;
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 64px 48px;
  max-width: 700px;
  width: 100%;
  margin: -90px auto 0;
  text-align: center;
  box-shadow: 0px 0px 120px 0px #1820F84D
}

.omd-about-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

.omd-about-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

.omd-about-text p {
  margin: 0 0 20px 0;
}

.omd-about-text p:last-child {
  margin-bottom: 0;
}

.omd-about-text strong {
  font-weight: 700;
  color: #ffffff;
}

/* =Schedule Section
--------------------------------------------- */

.omd-schedule-section {
  margin-top: 100px;
  padding: 0;
}

.omd-schedule-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 48px 0;
}

.omd-schedule-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.omd-schedule-column {
  border-radius: 24px;
  padding: 32px;
}

.omd-schedule-column--agenda {
  background: #FF000133;
  border: 2px solid #FF000166;
}

.omd-schedule-column--video {
  background: #1820F833;
  border: 2px solid #1820F880;
}

.omd-schedule-column--video2 {
  background: #FFB7004D;
  border: 2px solid #FFB70080
}

.omd-schedule-column-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.omd-schedule-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.omd-schedule-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.omd-schedule-time {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.omd-schedule-column--agenda .omd-schedule-time {
  background: #B61D07;
}

.omd-schedule-column--video .omd-schedule-time {
  background: #1820F8;
}

.omd-schedule-column--video2 .omd-schedule-time {
  background: #FFB700;
  color: #000000;
}

.omd-schedule-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

/* =Speakers Section
--------------------------------------------- */

.omd-speakers-section {
  margin-top: 100px;
  margin-bottom: 80px;
  padding: 0;
}

.omd-speakers-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 48px 0;
}

.omd-speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.omd-speaker-card {
  border-radius: 32px;
  padding: 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.omd-speaker-card--red {
  background: #B61D07;
  position: relative;
}

.omd-speaker-card--red::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/img/red_bag.png');
  background-repeat: repeat;
  background-size: auto;
  z-index: 0;
  pointer-events: none;
}

.omd-speaker-card--blue {
  background: #1820F8;
  position: relative;
}

.omd-speaker-card--blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/img/blue_bag.png');
  background-repeat: repeat;
  background-size: auto;
  z-index: 0;
  pointer-events: none;
}

.omd-speaker-inner {
  border-radius: 24px;
  padding: 12px 12px 24px 12px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.omd-speaker-card--red .omd-speaker-inner{
  background: #9A180D;
}

.omd-speaker-card--blue .omd-speaker-inner{
  background: #050973;
}

.omd-speaker-image-wrapper {
  position: relative;
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.omd-speaker-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.omd-speaker-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.omd-speaker-card--red .omd-speaker-label {
  background: #FF0001;
  backdrop-filter: none;
}

.omd-speaker-card--blue .omd-speaker-label {
  background: #1820F8;
  backdrop-filter: none;
}

.omd-speaker-name {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.omd-speaker-role {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

/* =Footer
--------------------------------------------- */

.omd-footer-wrap {
  margin-top: 32px;
}

.omd-footer {
  border-radius: 32px;
  padding: 32px;
  background: #050B4E;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.omd-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.omd-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.omd-footer-logo-img {
  width: 123px;
  height: auto;
  display: block;
}

.omd-footer-logo-main {
  font-size: 28px;
  font-weight: 800;
  color: #ff0037;
}

.omd-footer-logo-sub {
  font-size: 13px;
  opacity: 0.9;
}

.omd-footer-nav {
  display: flex;
  gap: 48px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.omd-footer-social {
  display: flex;
  gap: 12px;
}

.omd-footer-social a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.omd-footer-social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.omd-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.7;
}

/* =Responsive
--------------------------------------------- */

@media (max-width: 1024px) {
  .omd-main-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .omd-main-right {
    order: -1;
  }

  .omd-chat-card:nth-child(2) {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .omd-container {
    padding: 16px 16px 32px;
  }

  /* Header: стекаем элементы и уменьшаем логотип */
  .omd-header {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 20;
    background: #000037;
  }

  .omd-logo-image {
    width: 180px;
  }

  .omd-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .omd-title {
    font-size: 42px;
  }

  /* Основная карточка и левый блок — меньше отступы на мобильных */
  .omd-main-card {
    padding: 10px;
    gap: 0;
  }

  .omd-main-left {
    padding: 24px 16px;
  }

  .omd-main-pattern {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Блоки ниже hero: переводим в один столбец */
  .omd-schedule-columns {
    grid-template-columns: 1fr;
  }

  .omd-speakers-grid {
    grid-template-columns: 1fr;
  }

  .omd-footer {
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .omd-footer-top {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .omd-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {

  .omd-quiz-result-image img{
    width: auto;
  }

  .omd-logo-image {
    width: 150px;
  }

  .omd-nav {
    font-size: 11px;
    gap: 10px;
  }

  .omd-header-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .omd-header-cta .omd-btn {
    max-width: 100%;
  }

  .omd-title {
    font-size: 18px;
    letter-spacing: 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .omd-chat-bubble{
    padding: 15px 15px 15px 15px;
  }

  .omd-chat-card--secondary{
    gap: 10px;
  }

  .omd-chat-avatar-wrap{
    width: 40px;
    height: 40px;
  }

  .omd-chat-text-main{
    font-size: 12px;
    line-height: 1.3;
  }

  .omd-chat-stack{
    margin-bottom: 20px;
  }

  .omd-primary-btn .omd-btn__label{
    padding: 15px 20px;
    font-size: 12px;
    letter-spacing: 0px;
  }

  .omd-main-left {
    padding: 20px 12px;
  }

  .omd-about-title{
    font-size: 32px;
  }

  .omd-about-bg{
    border-radius: 100px;
  }

  .omd-about-content{
    padding: 30px 20px;
  }

  .omd-about-text{
    font-size: 14px;
    line-height: 1.4;
  }

  .omd-schedule-title{
    font-size: 32px;
  }

  .omd-schedule-column-title{
    font-size: 20px;
  }

  .omd-schedule-time{
    font-size: 12px;
    padding: 6px 8px;
  }

  .omd-schedule-desc{
    font-size: 14px;
    line-height: 1.3;
  }

  .omd-speakers-title{
    font-size: 32px;
  }

  .omd-speaker-card{
    border-radius: 18px;
    padding: 30px;
  }

  .omd-speaker-name{
    font-size: 22px;
  }

  .omd-speaker-role{
    font-size: 14px;
  }

  .omd-speaker-label{
    font-size: 10px;
    padding: 6px 10px;
  }

  .omd-footer-nav{
    font-size: 12px;
  }

  .omd-footer-social a{
    width: 48px;
    height: 48px;
  }

  .omd-footer-social-icon{
    width: 18px;
    height: 18px;
  }

  .omd-footer-logo-img{
    width: 100px;
  }

  .omd-form-label{
    font-size: 12px;
  }

  .omd-input{
    padding: 10px 15px;
    font-size: 12px;
  }

  .omd-quiz{
    gap: 10px;
  }

  .omd-quiz-cards{
    gap: 10px;
  }

  .omd-quiz-card{
    padding: 5px;
  }

  .omd-quiz-card-img{
    border-radius: 5px;
  }

  .omd-quiz-card-indicator{
    margin: 10px auto 5px;
  }

  .omd-quiz-question{
    font-size: 18px;
    text-align: center;
  }

  .omd-quiz-option-text{
    font-size: 14px;
    line-height: 1.2;
  }

  .omd-quiz-result-title{
    font-size: 32px;
  }

  .omd-quiz-result-archetype{
    font-size: 26px;
    padding: 10px 20px;
  }

  .omd-quiz-result-text{
    font-size: 16px;
  }

  .omd-quiz-result-actions{
    flex-direction: column;
    margin-top: 20px;
  }

  .omd-quiz-result-btn-label{
    font-size: 12px;
    line-height: 1;
    padding: 15px 15px;
  }

  /* Fullscreen hero layout on small mobile */
  .omd-main-card {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .omd-main-left,
  .omd-main-right {
    flex: 0 0 50vh;
    height: 50vh;
  }

  .omd-main-right {
    justify-content: center;
    align-items: center;
  }

  .omd-hero-frame {
    width: auto;
    height: 100%;
    max-height: 50vh;
    min-height: 0;
    margin: 0 auto;
  }

  .omd-hero-inner {
    width: auto;
    height: 100%;
    min-height: 0;
  }

  .omd-hero-video {
    width: auto;
    height: 100%;
  }

  .omd-chat-card--primary{
    gap: 5px;
  }
}
