:root {
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-ui: "Plus Jakarta Sans", system-ui, sans-serif;
  --page-bg: #eef7fb;
  --text: #17142c;
  --muted: #48546f;
  --heading: #130d34;
  --accent: #0c95d3;
  --accent-bright: #0097d7;
  --accent-soft: #57bcbb;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --border: rgba(19, 13, 52, 0.12);
  --shadow: 0 24px 60px rgba(19, 13, 52, 0.12);
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(87, 188, 187, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)) 0 0 / 100% 340px no-repeat,
    var(--page-bg);
  color: var(--text);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 13, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 13, 52, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  padding: clamp(22px, 4vw, 56px);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: clamp(24px, 4vw, 56px);
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: stretch;
}

.content {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 34px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 13vw, 178px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(12, 149, 211, 0.16));
}

.status-pill,
.card-number,
.panel-label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-pill {
  flex: 0 0 auto;
  padding: 0.68rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--heading);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(3.35rem, 8vw, 6.7rem);
  font-weight: 800;
  line-height: 0.9;
}

.lead-intro {
  max-width: 720px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  font-weight: 600;
  line-height: 1.55;
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.button-link-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(12, 149, 211, 0.22);
}

.button-link-primary:hover {
  background: var(--heading);
  border-color: var(--heading);
}

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

.lead-section {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: 0 18px 44px rgba(19, 13, 52, 0.07);
}

.card-number {
  display: inline-flex;
  margin: 0 0 22px;
  color: var(--accent);
}

.lead-section h2 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 800;
  line-height: 1.15;
}

.lead-section p,
.story-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.story-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(12, 149, 211, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 149, 211, 0.1), rgba(87, 188, 187, 0.1)),
    var(--surface-soft);
}

.story-panel p + p {
  margin-top: 0.9rem;
}

.panel-label {
  margin: 0 0 0.75rem;
  color: var(--accent);
}

.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(12, 149, 211, 0.45);
  border-radius: 999px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--accent);
}

.visual {
  position: sticky;
  top: clamp(22px, 4vw, 56px);
  min-height: calc(100vh - clamp(44px, 8vw, 112px));
  align-self: start;
  overflow: hidden;
  border-radius: 8px;
  background: var(--heading);
  box-shadow: var(--shadow);
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 13, 52, 0) 42%, rgba(19, 13, 52, 0.76) 100%),
    linear-gradient(90deg, rgba(19, 13, 52, 0.42), rgba(19, 13, 52, 0) 48%);
}

.visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: min(260px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(16px);
}

.visual-card span {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.visual-card p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .visual {
    position: relative;
    top: auto;
    min-height: 520px;
    order: -1;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 18px;
  }

  .site-header,
  .contact-bar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .visual {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 12px;
  }

  .content {
    gap: 20px;
  }

  .status-pill {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.2rem);
  }

  .lead-intro {
    font-size: 1rem;
  }

  .button-link {
    width: 100%;
  }

  .lead-section,
  .story-panel {
    padding: 18px;
  }

  .visual {
    min-height: 360px;
  }

  .visual-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}
