:root {
  --brand-red: #db120f;
  --holding-panel: #fffdf7;
}

.holding-page {
  min-width: 320px;
  min-height: 100%;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

.holding-shell {
  width: min(980px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(18px, 3vw, 30px);
  background: var(--ivory);
}

.holding-brand {
  display: grid;
  align-content: center;
  gap: clamp(24px, 4vh, 40px);
  width: min(680px, 100%);
  margin: 0 auto;
  padding: max(22px, env(safe-area-inset-top)) 0 max(22px, env(safe-area-inset-bottom));
}

.holding-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.holding-mark {
  display: block;
  width: clamp(126px, 15vw, 196px);
  height: auto;
  border-radius: 26%;
  box-shadow: 0 20px 50px rgba(0, 63, 44, 0.16);
}

.holding-wordmark {
  margin-top: clamp(14px, 2vh, 22px);
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 780;
  line-height: 0.94;
}

.holding-golf-trip {
  display: block;
  color: var(--green-deep);
  font-size: clamp(2.15rem, 4.6vw, 4.75rem);
  letter-spacing: 0.25em;
  padding-left: 0.25em;
  white-space: nowrap;
}

.holding-captain {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-top: clamp(10px, 1.4vh, 18px);
  color: var(--brand-red);
  font-size: clamp(1.85rem, 4vw, 4.08rem);
  letter-spacing: 0.22em;
  padding-left: 0.22em;
  white-space: nowrap;
}

.holding-captain i {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-deep);
  opacity: 0.75;
}

.holding-tagline {
  margin: clamp(18px, 2.5vh, 28px) 0 0;
  color: var(--green-deep);
  font-size: clamp(0.67rem, 1.15vw, 0.96rem);
  font-weight: 650;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  white-space: nowrap;
}

.holding-status {
  justify-self: center;
  width: min(100%, 560px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(0, 90, 60, 0.1);
  border-radius: 34px;
  background: var(--holding-panel);
  box-shadow: 0 24px 70px rgba(0, 63, 44, 0.09);
  text-align: center;
}

.holding-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(219, 18, 15, 0.09);
  color: var(--brand-red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.holding-status h1 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.holding-status > p:not(.holding-kicker) {
  max-width: 440px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.store-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 27px;
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--green-deep);
  color: var(--ivory);
  font-size: 0.86rem;
  font-weight: 760;
}

.holding-course {
  justify-self: center;
  width: min(100%, 680px);
  overflow: hidden;
  border: 1px solid rgba(0, 90, 60, 0.1);
  border-radius: 28px;
  background: var(--holding-panel);
  box-shadow: 0 20px 55px rgba(0, 63, 44, 0.08);
}

.holding-footer-panel {
  padding: 22px clamp(18px, 2.2vw, 30px) 20px;
  background: var(--holding-panel);
  text-align: center;
}

.holding-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.holding-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 90, 60, 0.15);
  border-radius: 15px;
  background: var(--ivory);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 720;
  text-align: center;
  text-decoration: none;
}

.holding-links a:hover,
.holding-links a:focus-visible {
  border-color: var(--green);
  background: var(--green-soft);
  text-decoration: none;
}

.holding-copyright {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

@media (max-width: 960px) {
  .holding-shell { padding: 18px; }

  .holding-brand {
    gap: 28px;
    width: min(100%, 600px);
    padding: max(24px, env(safe-area-inset-top)) 0 10px;
  }

  .holding-mark {
    width: clamp(116px, 30vw, 170px);
  }

  .holding-golf-trip {
    font-size: clamp(2.05rem, 10.7vw, 3.35rem);
    letter-spacing: 0.2em;
    padding-left: 0.2em;
  }

  .holding-captain {
    font-size: clamp(1.75rem, 9.1vw, 2.9rem);
    letter-spacing: 0.17em;
    padding-left: 0.17em;
  }

  .holding-tagline {
    font-size: clamp(0.58rem, 2.55vw, 0.78rem);
    letter-spacing: 0.17em;
  }

  .holding-status {
    justify-self: stretch;
    max-width: none;
    padding: 26px 22px;
    border-radius: 28px;
  }

  .holding-status h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.6rem);
  }

}

@media (max-width: 390px) {
  .holding-shell {
    padding: 12px;
  }

  .holding-brand {
    width: min(100% - 10px, 520px);
  }

  .holding-status {
    padding: 23px 18px;
  }

  .store-line {
    width: 100%;
    font-size: 0.79rem;
  }

  .holding-course { border-radius: 24px; }

  .holding-footer-panel {
    padding-inline: 14px;
  }

  .holding-links {
    grid-template-columns: 1fr 1fr;
  }

  .holding-links a {
    min-height: 44px;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .holding-lockup,
  .holding-status {
    animation: holding-rise 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }

  .holding-status {
    animation-delay: 0.12s;
  }

}

@keyframes holding-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}


.beta-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 270px);
  min-height: 52px;
  margin: 26px auto 0;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--brand-red);
  box-shadow: 0 12px 28px rgba(219, 18, 15, 0.2);
  color: white;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.beta-cta:hover,
.beta-cta:focus-visible {
  background: #bd0e0c;
  text-decoration: none;
  transform: translateY(-1px);
}

.beta-panel {
  justify-self: center;
  width: min(100%, 820px);
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(0, 90, 60, 0.1);
  border-radius: 34px;
  background: var(--holding-panel);
  box-shadow: 0 24px 70px rgba(0, 63, 44, 0.09);
}

.beta-intro h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.beta-intro > p:not(.holding-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.beta-benefits {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.beta-benefits li {
  padding-left: 17px;
  border-left: 3px solid var(--brand-red);
}

.beta-benefits strong,
.beta-benefits span {
  display: block;
}

.beta-benefits strong {
  color: var(--green-deep);
  font-size: 0.94rem;
}

.beta-benefits span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.beta-form {
  align-self: start;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(0, 90, 60, 0.1);
  border-radius: 24px;
  background: var(--ivory);
}

.field-group + .field-group {
  margin-top: 17px;
}

.field-group label {
  display: block;
  margin: 0 0 7px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 760;
}

.field-group input,
.field-group select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(0, 63, 44, 0.22);
  border-radius: 13px;
  background: var(--holding-panel);
  color: var(--ink);
  font: inherit;
}

.field-group input:focus,
.field-group select:focus,
.consent-field input:focus-visible {
  outline: 3px solid rgba(219, 18, 15, 0.2);
  outline-offset: 2px;
  border-color: var(--brand-red);
}

.trap-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-field input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--brand-red);
}

.beta-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 52px;
  margin: 22px auto 0;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-red);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.beta-submit:hover,
.beta-submit:focus-visible {
  background: #bd0e0c;
}

.beta-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note,
.form-status {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
  text-align: center;
}

.form-note a {
  color: var(--green-deep);
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status {
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.form-status.is-success {
  background: var(--green-soft);
  color: var(--green-deep);
}

.form-status.is-error {
  background: rgba(219, 18, 15, 0.08);
  color: #9b0c0a;
}

@media (max-width: 760px) {
  .beta-panel {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .beta-panel {
    animation: holding-rise 0.85s 0.2s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }
}
