/* ================ Reset & Globals ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geist", sans-serif;
  line-height: 1.4em;
  background: #303030;
  /* TODO: change to your preferred bg */
  color: #F2F1F6;
  /* TODO: change to your preferred text color */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Visually hide labels but keep them accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ================ Header ================ */
header {
  display: flex;
  padding: 0rem 2.5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-bottom: 1px solid rgba(242, 241, 246, 0.44);
}

.logosection {
  display: flex;
  height: 4.5rem;
  max-width: 1380px;
  align-items: center;
  align-self: stretch;
}

#logo {
  max-width: 183px;
  width: 100%;
  /* fill the container’s width */
  height: auto;
  /* preserve aspect ratio */
  fill: #F2F1F6 !important;
}

/* ================ Main Layout ================ */
main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  padding: 20px 20px 10px 20px;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
}

.inner-main {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  align-items: center;
  gap: 111px;
  height: 100%;
}

.col {
  flex: 1;
  min-width: 300px;
}

.col-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding:20px 0;
}

.col-img {
  max-height: 750px;
}

/* ================ Intro Section ================ */
.intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}

.intro h1 {
  color: #F2F1F6;
  font-family: Geist;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.03em;
}

.intro h2 {
  color: #F2F1F6;
  font-family: Geist;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 46.2px */
  letter-spacing: -0.03em;
}

.intro .introcontent {
  color: #F2F1F6;
  font-family: Geist;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0em;
  margin-bottom: 55px;
}

/* ================ Card & Form ================ */
.card {
  display: flex;
  min-width: 392px;
  width: 80%;
  height: 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

form {
  display: flex;
  justify-content: space-between;
  align-items: start;
  align-self: stretch;
  border-radius: 8px;
  background: #F2F1F6;
  height: 100%;
}

input[type="url"] {
  padding: 0 0 0 18px;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: unset;
  height: 100%;
  flex: 1 0 0;
}

button {
  display: flex;
  padding: 0px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  background: #8D867B;
  color: #F2F1F6;
  font-family: "Geist Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 60px;
  border: none;
}

button:hover {
  background: #0056b3;
}

.status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #white;
}

/* ================ Platforms & Hero Video ================ */
#platforms {
color: #F2F1F6;
font-family: Geist;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.42px;
gap: 15px;
display: flex;
}
#platforms{
  display: flex;
align-items: center;
gap: 10px;
}
#platforms #spotify{
  width: 83px;
height: 25px;
aspect-ratio: 83/25;
}
#platforms #apple{
width: 97px;
height: 16px;
aspect-ratio: 97/16;
}

#herovid {
  border-radius: 11px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
