:root {
  --ink: #0b2038;
  --blue: #6f98b3;
  --muted: #526577;
  --cream: #fbf8f0;
  --sky: #c7ddea;
  --leaf: #596c49;
  --gold: #d9a23a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #eef7fb;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

.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;
}

.landing {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--cream);
}

.intro-panel {
  position: relative;
  min-height: 100vh;
  padding: clamp(42px, 6.25vw, 96px) clamp(48px, 9.25vw, 142px);
  display: grid;
  align-content: start;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 38%),
    #fbf8f0;
  overflow: hidden;
}

.intro-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 52%, rgba(243, 236, 224, .52), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(238, 230, 216, .34), transparent 28%);
}

.intro-content {
  position: relative;
  z-index: 1;
  width: min(100%, 670px);
}

.side-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 28px;
  z-index: 1;
}

.side-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(111, 152, 179, .42);
}

.brand {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 700;
  letter-spacing: -.03em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 520px);
  margin: clamp(44px, 5vw, 68px) 0 20px;
}

.countdown-item {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  border: 1px solid rgba(11, 32, 56, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 34px rgba(21, 36, 50, .05);
}

.countdown-value {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
}

.countdown-label {
  color: #667686;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
}

h1 {
  max-width: 710px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.25vw, 101px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}

h1 em {
  display: inline;
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

.lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #4f6070;
  font-size: clamp(18px, 1.32vw, 21px);
  line-height: 1.68;
}

.notify-form {
  display: flex;
  gap: 12px;
  width: min(100%, 506px);
  margin-top: 45px;
}

.notify-form input {
  min-width: 0;
  flex: 1;
  height: 68px;
  border: 1px solid rgba(11, 32, 56, .14);
  border-radius: 15px;
  padding: 0 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 18px 38px rgba(21, 36, 50, .04);
  font-size: 18px;
  outline: none;
}

.notify-form input::placeholder {
  color: #6f7d88;
}

.notify-form input:focus {
  border-color: rgba(111, 152, 179, .78);
  box-shadow: 0 0 0 4px rgba(111, 152, 179, .17);
}

.notify-form button {
  width: 160px;
  height: 68px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #102944, #07172b);
  box-shadow: 0 18px 30px rgba(11, 32, 56, .16);
  cursor: pointer;
  font-size: 17px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.notify-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(11, 32, 56, .2);
}

.side-label {
  position: absolute;
  top: 50%;
  right: 6px;
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.form-status {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #37586f;
}

.form-status.is-error {
  color: #9e4f45;
}

.copyright {
  position: absolute;
  z-index: 1;
  left: clamp(48px, 9.25vw, 142px);
  bottom: 28px;
  margin: 0;
  color: #667686;
  font-size: 14px;
}

.product-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #c7ddea;
}

.product-art {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1060px) {
  .landing {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .product-panel {
    min-height: auto;
  }

  .intro-panel {
    padding: 42px 28px 64px 66px;
  }

  .countdown {
    margin-top: 32px;
  }

  .copyright {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 72px;
  }

  .product-panel {
    min-height: 720px;
  }

  .product-art {
    height: 720px;
  }
}

@media (max-width: 640px) {
  .intro-panel {
    padding: 32px 22px 48px 46px;
  }

  .side-rail {
    left: 17px;
    width: 20px;
  }

  .side-label {
    right: 4px;
    font-size: 10px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .lede {
    font-size: 17px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form input,
  .notify-form button {
    width: 100%;
  }

  .product-panel {
    min-height: 600px;
  }

  .product-art {
    height: 600px;
  }
}
