:root {
  --ink: #15130f;
  --muted: #665f50;
  --gold: #d8ae3e;
  --gold-bright: #f4d47b;
  --gold-dark: #8b6820;
  --paper: #fbfaf6;
  --line: rgba(21, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: white;
  background: linear-gradient(180deg, rgba(15, 13, 9, 0.78), rgba(15, 13, 9, 0));
}

.brand,
.header-actions,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 212, 123, 0.7);
  border-radius: 50%;
  color: var(--gold-bright);
}

nav a,
.ghost-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.gold-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.gold-button {
  color: #17130b;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-bright));
  box-shadow: 0 14px 36px rgba(216, 174, 62, 0.28);
}

.light-button {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.large {
  min-height: 50px;
  padding: 0 24px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/login-care-hero.png");
  background-size: cover;
  background-position: center 34%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 13, 9, 0.88) 0%, rgba(15, 13, 9, 0.64) 42%, rgba(15, 13, 9, 0.24) 100%),
    linear-gradient(180deg, rgba(15, 13, 9, 0.25) 0%, rgba(15, 13, 9, 0.12) 66%, var(--paper) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 84px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.55rem;
}

.lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.62;
}

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

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: -38px auto 0;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(216, 174, 62, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(34, 27, 10, 0.12);
  backdrop-filter: blur(18px);
}

.proof-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.proof-strip span,
.feature-grid p,
.security-band p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.section,
.split-section,
.security-band {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0 64px;
}

.section-heading {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.feature-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-grid h3 {
  margin-bottom: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segment-list span {
  border: 1px solid rgba(216, 174, 62, 0.42);
  border-radius: 999px;
  background: rgba(244, 212, 123, 0.13);
  padding: 12px 16px;
  font-weight: 700;
}

.security-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 70px;
  margin-bottom: 70px;
  border-radius: 22px;
  background: #17130b;
  padding: clamp(28px, 5vw, 54px);
  color: white;
}

.contact-section {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 82px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  border: 1px solid rgba(216, 174, 62, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(244, 212, 123, 0.16), rgba(255, 255, 255, 0.92)),
    white;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 28px 80px rgba(34, 27, 10, 0.1);
}

.contact-section p {
  color: var(--muted);
  line-height: 1.62;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
}

.lead-form label,
.lead-form span {
  display: block;
}

.lead-form span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus {
  border-color: rgba(216, 174, 62, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 174, 62, 0.14);
}

.lead-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.security-band div {
  max-width: 760px;
}

.security-band p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  padding-top: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .proof-strip,
  .feature-grid,
  .split-section,
  .contact-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .feature-grid article {
    min-height: auto;
  }

  .security-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .ghost-link {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-media {
    background-position: 58% center;
  }
}
