:root {
  --ink: #252525;
  --paper: #f4f1ec;
  --orange: #f45118;
  --orange-dark: #d83b08;
  --white: #fff;
  --muted: #bdb8b2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 84% 22%, rgba(244, 81, 24, .18), transparent 28rem),
    linear-gradient(145deg, #1d1d1d, #2d2b2a);
}

a {
  color: inherit;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 6vw;
  overflow: hidden;
}

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

.launch-header {
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  display: block;
  width: min(350px, 58vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #918d88;
}

.language-switch button {
  padding: 7px 5px;
  border: 0;
  color: #b9b5b0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--orange);
}

.launch-main {
  display: grid;
  align-content: center;
  flex: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 86px) 0;
}

.launch-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  background: rgba(15, 15, 15, .42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

.launch-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(38px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.launch-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid rgba(244, 81, 24, .45);
  border-radius: 999px;
  color: #ffd6c7;
  background: rgba(244, 81, 24, .1);
  font-size: 14px;
  font-weight: 700;
}

.launch-date::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
  content: "";
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(46px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.055em;
}

.intro {
  max-width: 760px;
  margin: 30px 0 0;
  color: #d5d1cd;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.contact-note {
  max-width: 650px;
  margin: 28px 0 0;
  color: #aaa6a2;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.launch-visual {
  position: relative;
  min-height: 420px;
}

.launch-visual::before,
.launch-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.launch-visual::before {
  inset: 9% -20% auto auto;
  width: min(39vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 81, 24, .4);
  box-shadow:
    0 0 0 42px rgba(244, 81, 24, .055),
    0 0 0 84px rgba(244, 81, 24, .03);
}

.launch-visual::after {
  right: 12%;
  bottom: 8%;
  width: 210px;
  height: 210px;
  background: var(--orange);
  filter: blur(100px);
  opacity: .24;
}

.date-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(300px, 68%);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  background: rgba(34, 34, 34, .72);
  box-shadow: inset 0 0 70px rgba(244, 81, 24, .1);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
}

.date-mark small {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.date-mark strong {
  margin-top: 6px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -.06em;
}

.date-mark strong[data-i18n="season"] {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.04em;
}

.date-mark span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: .24em;
}

.line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 81, 24, .7), transparent);
  transform-origin: center;
}

.line-one {
  top: 28%;
  right: -8%;
  width: 95%;
  transform: rotate(-25deg);
}

.line-two {
  right: 2%;
  bottom: 24%;
  width: 82%;
  transform: rotate(34deg);
}

.business-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 26px 30px;
}

.business-fields img {
  display: block;
  width: min(850px, 100%);
  height: auto;
}

.launch-footer {
  min-height: 92px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #96918c;
  font-size: 14px;
}

.launch-footer nav {
  display: flex;
  gap: 24px;
}

.launch-footer a {
  color: #c8c4bf;
  text-decoration: none;
}

.launch-footer a:hover {
  color: var(--orange);
}

@media (max-width: 920px) {
  .launch-card {
    grid-template-columns: 1fr;
  }

  .launch-visual {
    min-height: 330px;
    order: -1;
  }

  .launch-copy {
    padding-top: 15px;
  }

  .launch-visual::before {
    right: 50%;
    width: 390px;
    transform: translateX(50%);
  }

  .date-mark {
    width: 240px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 0 20px;
  }

  .launch-header {
    min-height: 86px;
  }

  .brand {
    width: min(260px, 68vw);
  }

  .launch-main {
    padding: 28px 0;
  }

  .launch-card {
    border-radius: 22px;
  }

  .launch-visual {
    min-height: 270px;
  }

  .date-mark {
    width: 190px;
  }

  .launch-copy {
    padding: 20px 25px 38px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .business-fields {
    min-height: 100px;
    padding: 25px 0;
  }

  .launch-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
