:root {
  --bg: #ffffff;
  --blue-700: #1d4ed8;
  --navy: #15235e;
  --text-900: #171717;
  --tagline: #667085;
  --radius-3xl: 20px;
  --radius-2xl: 16px;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text-900);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Layout ---------- */
.page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.pane {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
}

.pane--content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Decorative pattern */
.pattern {
  position: absolute;
  top: 25px;
  left: -284px;
  width: 768px;
  height: 768px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  text-decoration: none;
}

.logo__img {
  display: block;
  height: 64px;
  width: auto;
}

/* ---------- Heading + text ---------- */
.heading-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: var(--blue-700);
}

.text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 20px;
  line-height: 30px;
  color: var(--text-900);
  text-align: justify;
  text-justify: inter-word;
}

.text-group p {
  margin: 0;
}

/* ---------- Image ---------- */
.pane--image {
  display: flex;
  padding: 24px 24px 24px 0;
}

.image {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  /* Fallback while the exported photo is not yet in place */
  background: linear-gradient(160deg, #c9d3e6 0%, #8ea3c8 45%, #5b6f95 100%);
}

.image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .page {
    flex-direction: column;
    min-height: 100dvh;
  }

  .pane {
    flex: 0 0 auto;
  }

  .pane--content {
    padding: 32px 0 0;
    justify-content: flex-start;
  }

  .content {
    max-width: none;
    padding: 0 16px;
    gap: 32px;
  }

  .pattern {
    top: -292px;
    left: -344px;
  }

  .logo__img {
    height: 52px;
  }

  .heading-group {
    gap: 16px;
  }

  .heading {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.3px;
  }

  .text-group {
    gap: 6px;
    font-size: 16px;
    line-height: 24px;
  }

  .pane--image {
    padding: 24px 16px 32px;
  }

  .image {
    height: 360px;
    border-radius: var(--radius-2xl);
  }
}
