:root {
  --color-bg-deep: #0a2e5d;
  --color-bg-mid: #1f5ca8;
  --color-bg-light: #2a6ec2;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f9ff;
  --color-text: #10223a;
  --color-text-soft: #5b6e86;
  --color-accent: #d4af37;
  --color-accent-deep: #b8901d;
  --color-border: #cddcf0;
  --shadow-main: 0 18px 45px rgba(10, 46, 93, 0.2);
  --radius-xl: 24px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--color-text);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", Georgia, serif;
  margin: 0;
}

p {
  margin: 0;
}

.eyebrow {
  letter-spacing: 0.1em;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--color-bg-mid);
  text-transform: uppercase;
}

.muted {
  color: var(--color-text-soft);
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(125deg, var(--color-bg-deep), var(--color-bg-mid));
  box-shadow: 0 10px 24px rgba(10, 46, 93, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(125deg, #082649, var(--color-bg-deep));
}

.btn-secondary {
  color: #1d3550;
  background: linear-gradient(140deg, #f0d987, var(--color-accent));
}

.btn-secondary:hover {
  background: linear-gradient(140deg, #e5cb72, var(--color-accent-deep));
}

.text-link {
  color: var(--color-bg-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.form-message {
  min-height: 1.2rem;
  margin-top: 0.6rem;
  font-size: 0.93rem;
  color: var(--color-text-soft);
}

.form-message.error {
  color: #b42318;
}

.form-message.success {
  color: #157347;
}

.landing-body {
  position: relative;
  background: radial-gradient(circle at 10% 18%, rgba(212, 175, 55, 0.24), transparent 36%),
    radial-gradient(circle at 85% 70%, rgba(31, 92, 168, 0.25), transparent 40%),
    linear-gradient(160deg, #ffffff 0%, #f6faff 45%, #ecf4ff 100%);
  overflow: hidden;
}

.ambient-bg {
  position: absolute;
  inset: -10% auto auto -10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.38), rgba(212, 175, 55, 0));
  filter: blur(12px);
  animation: floatPulse 6s ease-in-out infinite;
}

.landing-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.brand-card {
  width: min(860px, 100%);
  background: linear-gradient(160deg, #ffffff, #f4f8ff);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-main);
  border: 1px solid rgba(31, 92, 168, 0.15);
  padding: clamp(1.5rem, 3vw, 3rem);
  display: grid;
  gap: 1rem;
}

.brand-card h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

.brand-card p {
  font-size: 1.04rem;
  color: var(--color-text-soft);
  max-width: 68ch;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.feature-list {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.6rem;
}

.feature-list li {
  background: var(--color-surface-soft);
  padding: 0.8rem;
  border: 1px solid rgba(10, 46, 93, 0.15);
  border-radius: 10px;
  font-weight: 600;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 760px) {
  .brand-card {
    padding: 1.3rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}
