:root {
  --blue: #2f62b8;
  --blue-deep: #133a78;
  --orange: #f47b20;
  --ink: #152238;
  --muted: #657187;
  --line: rgba(21, 34, 56, 0.11);
  --surface: rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 98, 184, 0.16), transparent 27rem),
    radial-gradient(circle at 86% 83%, rgba(244, 123, 32, 0.15), transparent 24rem),
    linear-gradient(135deg, #f4f7fb 0%, #ffffff 48%, #f7f8fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(19, 58, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 58, 120, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 28px;
}

.card {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(460px, 1.15fr);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(26, 48, 86, 0.14);
  backdrop-filter: blur(18px);
}

.brand-panel {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background:
    linear-gradient(155deg, rgba(5, 13, 27, 0.98), rgba(11, 27, 51, 0.96));
}

.brand-panel::before,
.brand-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.brand-panel::before {
  width: 230px;
  height: 230px;
  top: -90px;
  right: -70px;
  background: rgba(47, 98, 184, 0.2);
}

.brand-panel::after {
  width: 170px;
  height: 170px;
  bottom: -65px;
  left: -55px;
  background: rgba(244, 123, 32, 0.12);
}

.logo {
  position: relative;
  z-index: 1;
  width: min(300px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.content-panel {
  padding: 70px clamp(42px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

h1 {
  margin: 0;
  max-width: 680px;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--blue-deep);
}

.intro {
  margin: 26px 0 34px;
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.intro strong {
  color: var(--ink);
}

.cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 21px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff942f);
  box-shadow: 0 12px 26px rgba(244, 123, 32, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(244, 123, 32, 0.31);
}

.cta:focus-visible {
  outline: 3px solid rgba(47, 98, 184, 0.28);
  outline-offset: 4px;
}

.cta-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.manager {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.manager-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.manager-name {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  color: var(--blue-deep);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  color: #778297;
  font-size: 0.82rem;
  text-align: center;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

@media (max-width: 850px) {
  .page-shell {
    width: min(680px, calc(100% - 28px));
    justify-content: flex-start;
    padding-top: 20px;
  }

  .card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .brand-panel {
    min-height: auto;
    padding: 40px;
  }

  .logo {
    width: min(230px, 62vw);
    border-radius: 20px;
  }

  .content-panel {
    padding: 42px 30px 46px;
    text-align: center;
    align-items: center;
  }

  .intro {
    margin-top: 22px;
  }

  .manager {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 20px, 680px);
    padding-bottom: 18px;
  }

  .brand-panel {
    padding: 30px;
  }

  .content-panel {
    padding: 34px 22px 38px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }

  footer {
    flex-direction: column;
    gap: 6px;
  }

  .dot {
    display: none;
  }
}
