:root {
  --navy: #06182e;
  --navy-2: #0b2442;
  --gold: #efbd42;
  --gold-dark: #b78318;
  --text: #0a1730;
  --muted: #747c88;
  --white: #ffffff;
  --red: #e11b2f;
  --blue: #1466c9;
  --green: #259043;
  --shadow: 0 18px 70px rgba(0,0,0,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #07182d 0%, #0b2442 22%, #f7f8fb 55%, #ffffff 100%);
  min-height: 100vh;
}
.page {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: var(--shadow);
}
.hero {
  position: relative;
  text-align: center;
  padding: 28px 20px 34px;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 15%, rgba(239,189,66,.35), transparent 25%),
    linear-gradient(180deg, #06182e 0%, #0b2442 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -36px;
  height: 72px;
  background: #fff;
  transform: rotate(-2deg);
}
.avatar {
  position: relative;
  z-index: 1;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
}
.kicker {
  position: relative;
  z-index: 1;
  margin: 18px 0 2px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 900;
}
h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(42px, 13vw, 68px);
  line-height: .98;
  color: var(--gold);
  letter-spacing: -1.5px;
  font-weight: 950;
}
.subhead {
  position: relative;
  z-index: 1;
  margin: 12px auto 0;
  max-width: 420px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}
.quick-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 0;
}
.quick-actions a {
  min-width: 118px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.content { padding: 12px 20px 38px; }
.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 18px auto 24px;
  width: 100%;
  min-height: 68px;
  background: var(--gold);
  color: #090909;
  text-decoration: none;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(183,131,24,.22);
}
.intro { text-align: center; margin: 4px 0 18px; }
.intro h2 { margin: 0 0 6px; color: var(--navy); font-size: 27px; }
.intro p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.35; }
.intent-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
}
.intent-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 17px 16px;
  border: 2px solid #e9edf2;
  border-left-width: 7px;
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(20,30,50,.07);
}
.intent-card .emoji {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5f6f8;
  font-size: 23px;
}
.intent-card strong {
  display: block;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: .3px;
}
.intent-card small {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.25;
  color: var(--muted);
}
.notice { border-left-color: var(--red); }
.auto { border-left-color: var(--blue); }
.review { border-left-color: var(--navy); }
.landlord, .umbrella { border-left-color: var(--gold-dark); }
.family { border-left-color: var(--green); }
.business { border-left-color: #6c48ff; }
.info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(20,30,50,.10);
  overflow: hidden;
  border: 1px solid #e9edf2;
}
.profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.profile-row img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.profile-row strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}
.profile-row small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid #e9edf2;
}
.info-row:last-child { border-bottom: 0; }
.icon {
  flex: 0 0 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f6f8;
  color: #7f8792;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.info-row small {
  display: block;
  color: #8a929d;
  font-size: 15px;
  margin-bottom: 2px;
}
.info-row strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
  word-break: break-word;
}
.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  color: var(--muted);
  margin-top: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-size: 12px;
}
.service-strip span {
  background: #f5f6f8;
  padding: 8px 10px;
  border-radius: 999px;
}
@media (min-width: 520px) {
  .intent-grid { grid-template-columns: 1fr 1fr; }
  .business { grid-column: 1 / -1; }
}
@media (max-width: 380px) {
  .content { padding-left: 14px; padding-right: 14px; }
  .primary-btn { font-size: 21px; }
  .intent-card strong { font-size: 19px; }
  .info-row strong { font-size: 17px; }
  .subhead { font-size: 20px; }
}
