
:root {
  color-scheme: light;
  --date-paper: #fff9ef;
  --date-ink: #111111;
  --date-red: #ad1824;
}
* { box-sizing: border-box; }
body.date-landing {
  margin: 0;
  background: var(--date-paper);
  color: var(--date-ink);
  font-family: "Times New Roman", Times, serif;
  -webkit-font-smoothing: antialiased;
}
.landing-shell {
  width: min(100%, 430px);
  margin-inline: auto;
}
.landing-hero {
  min-height: 100svh;
  padding: max(24px, env(safe-area-inset-top)) 22px calc(92px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}
#date-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(46px, 15.2vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
}
#date-title span { display: block; }
#date-title strong { font-weight: 600; }
.landing-subtitle {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(23px, 7.35vw, 29px);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 25px 0 0 7px;
}
.landing-scene {
  flex: 1;
  display: grid;
  align-items: center;
  margin: 17px -15px 0;
  min-height: 236px;
}
.landing-scene img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
}
.landing-objections {
  padding: 12px 28px calc(120px + env(safe-area-inset-bottom));
}
.landing-objections h2 {
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.landing-objections ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
.landing-objections li + li { margin-top: 22px; }
.landing-footer {
  position: fixed;
  z-index: 2;
  inset: auto 0 0;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 12px 8px max(8px, env(safe-area-inset-bottom));
  background: var(--date-paper);
}
.start-date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 9px;
  background: var(--date-red);
  color: #ffffff;
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  line-height: 1.15;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.start-date:hover { background: #94131e; }
.start-date:active { background: #7f111a; }
.start-date:focus-visible { outline: 3px solid var(--date-ink); outline-offset: 3px; }
@media (max-height: 740px) {
  .landing-hero { padding-top: max(18px, env(safe-area-inset-top)); padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  #date-title { font-size: clamp(44px, 14.7vw, 54px); }
  .landing-subtitle { font-size: clamp(22px, 7.1vw, 26px); margin-top: 21px; }
  .landing-scene { margin-top: 20px; min-height: 196px; }
  .landing-scene img { max-height: 275px; }
  .start-date { min-height: 60px; font-size: 29px; }
}
@media (max-width: 350px) {
  .landing-hero { padding-inline: 18px; }
  .landing-subtitle { margin-left: 5px; }
}
