:root {
  color-scheme: light;
  --ink: #1e2529;
  --muted: #61707a;
  --line: rgba(30, 37, 41, 0.12);
  --paper: #fbfaf7;
  --mist: #edf5f8;
  --aqua: #0a8fc5;
  --aqua-dark: #076b91;
  --gold: #d99410;
  --charcoal: #30363a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 44, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(10, 143, 197, 0.14), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, var(--paper) 48%, var(--mist) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  min-height: auto;
  overflow: hidden;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
}

.hero__content {
  max-width: 680px;
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.subtitle {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
}

.qualification {
  margin: 18px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.contact-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 22px;
  border: 1px solid rgba(7, 107, 145, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 107, 145, 0.1);
  color: var(--aqua-dark);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(217, 148, 16, 0.6);
  box-shadow: 0 14px 36px rgba(217, 148, 16, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.hero__visual {
  position: relative;
  min-height: clamp(340px, 58vw, 650px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 11% 5% 8% 5%;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 248, 0.58)),
    radial-gradient(circle at 60% 25%, rgba(217, 148, 16, 0.2), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: auto;
  clip-path: inset(0 0 13% 0);
  filter: drop-shadow(0 24px 28px rgba(35, 44, 48, 0.16));
}

.status-band {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.status-band > div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.status-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.status-band .status-label {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insights {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.insight-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 44px rgba(35, 44, 48, 0.07);
}

.insight h3 {
  margin: 0;
  color: var(--aqua-dark);
  font-size: 1.08rem;
  line-height: 1.35;
}

.insight p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #252b2f;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer > div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer a {
  color: #9ddaf0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    gap: 10px;
  }

  .hero__content {
    max-width: none;
    padding-bottom: 0;
  }

  .hero__visual {
    order: -1;
    min-height: 230px;
  }

  .hero__visual::before {
    inset: 6% 17% 0;
  }

  .hero__visual img {
    width: min(56vw, 270px);
  }

  .intro {
    margin-top: 22px;
  }

  .status-band > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight {
    min-height: auto;
  }

  .site-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero,
  .status-band > div,
  .insights,
  .site-footer > div {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .button {
    width: 100%;
    justify-content: center;
    padding: 0 14px;
    font-size: 0.9rem;
  }
}
