* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: #0f172a;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 32px;
  width: 100vw;
  height: 100vh;
  padding: 80px;
  margin: 0;
  border: 8px solid #e2e8f0;
  border-radius: 16px;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #e2e8f0;
  padding: 64px 0;
}

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

h1 {
  font-family: "Crimson Pro", serif;
  color: #e2e8f0;
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.subtitle {
  margin: 0;
  color: #cbd5e1;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  max-width: 500px;
}

.accent {
  /* color: #fe5f55; */
  color: #e910a1;
}

details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  cursor: pointer;
}

.description {
  margin: 0;
  padding-left: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 800px;
}

.aside {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.video-container {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #020617;
  height: 100%;
}

.video {
  max-width: 100%;
  object-fit: contain;
}

.panel {
  padding: 64px;
  display: grid;
  grid-template-rows: 100px 1fr 100px;
  width: 100%;
  height: 100%;
  gap: 32px;
  justify-content: center;
  border-radius: 16px;
  background-color: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}

.panel-title {
  font-family: "Crimson Pro", serif;
  color: #e2e8f0;
  text-align: center;
  font-size: 28px;
  line-height: 32px;
  margin: 0;
}

.panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0 16px;
  color: #cbd5e1;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.panel-content p {
  margin: 0;
}

.company {
  font-family: "Crimson Pro", serif;
  font-weight: bolder;
  font-size: 24px;
  color: #e910a1;
}

.form {
  align-self: flex-end;
  display: flex;
  gap: 16px;
}

.email-input {
  flex-grow: 1;
  height: 48px;
  padding: 12px 24px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 16px;
  background-color: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.15);
  color: #e2e8f0;
}

.email-input::placeholder {
  color: #94a3b8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: #f1f5f9;
  background-color: #e910a1;
  cursor: pointer;
}
