:root {
  --brand-green: #03281f;
  --brand-green-deep: #011b15;
  --brand-green-soft: #0a3a2f;
  --brand-gold: #d3a659;
  --brand-gold-light: #efc578;
  --brand-cream: #f7f2e8;
  --brand-white: #fffdf8;
  --panel: rgba(3, 40, 31, 0.90);
  --line: rgba(211, 166, 89, 0.44);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--brand-green-deep);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--brand-cream);
  background: var(--brand-green-deep);
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(115deg, rgba(1, 27, 21, 0.94) 0%, rgba(3, 40, 31, 0.78) 48%, rgba(1, 27, 21, 0.66) 100%),
    url("images/tropical-canopy.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(239, 197, 120, 0.12), transparent 34%),
    linear-gradient(to bottom, rgba(1, 27, 21, 0.12), rgba(1, 27, 21, 0.64));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px) 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.landing-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo-wrap {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
  background: var(--brand-green);
  border-right: 1px solid var(--line);
}

.brand-logo {
  display: block;
  width: min(100%, 440px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.content {
  padding: clamp(34px, 5.4vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-gold-light);
  font-size: clamp(0.69rem, 1.1vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.6;
  text-transform: uppercase;
}

h1 {
  max-width: 670px;
  margin: 0;
  color: var(--brand-white);
  font-size: clamp(2.05rem, 4.4vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.gold-rule {
  width: 88px;
  height: 2px;
  margin: 28px 0;
  background: linear-gradient(90deg, var(--brand-gold-light), var(--brand-gold));
}

.intro {
  max-width: 680px;
  margin: 0;
  color: rgba(247, 242, 232, 0.92);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  font-weight: 400;
  line-height: 1.78;
}

.launch-note {
  margin: 18px 0 0;
  color: var(--brand-gold-light);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.6;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--brand-gold);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid var(--brand-white);
  outline-offset: 4px;
}

.button-primary {
  color: var(--brand-green-deep);
  background: var(--brand-gold);
}

.button-primary:hover {
  border-color: var(--brand-gold-light);
  background: var(--brand-gold-light);
}

.button-secondary {
  color: var(--brand-gold-light);
  background: transparent;
}

.button-secondary:hover {
  color: var(--brand-green-deep);
  background: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(247, 242, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-dot {
  color: var(--brand-gold);
}

@media (max-width: 850px) {
  .page-shell {
    justify-content: flex-start;
  }

  .landing-card {
    grid-template-columns: 1fr;
  }

  .logo-wrap {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .brand-logo {
    width: min(100%, 380px);
  }

  .content {
    text-align: center;
  }

  .gold-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 10px;
  }

  .landing-card {
    border-radius: 2px;
  }

  .logo-wrap {
    padding: 12px;
  }

  .content {
    padding: 30px 22px 34px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  footer {
    flex-wrap: wrap;
    padding: 0 12px;
    text-align: center;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
