@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-600-normal.woff2") format("woff2");
}

:root {
  --marine: #1b2d4f;
  --marine-deep: #111f39;
  --indigo: #4646aa;
  --indigo-dark: #38388a;
  --lavender: #c9c9f4;
  --mist: #f4f6f9;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 34px 80px rgba(8, 18, 36, 0.28);
  --radius: 24px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --max-width: 1180px;
}

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

html {
  min-width: 320px;
  background: var(--marine-deep);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--marine);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  background: var(--white);
  color: var(--marine);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #b7b7ff;
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 23%, rgba(70, 70, 170, 0.44), transparent 28rem),
    linear-gradient(145deg, var(--marine) 0%, var(--marine-deep) 100%);
}

.site-shell::before,
.site-shell::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.site-shell::before {
  top: 17%;
  right: -12rem;
  width: 34rem;
  height: 34rem;
}

.site-shell::after {
  right: 7rem;
  bottom: -21rem;
  width: 42rem;
  height: 42rem;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  border-bottom: 1px solid var(--line-light);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  display: flex;
  flex: 1;
}

.hero {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 76px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}

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

.status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 5px 13px 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9b9bf1;
  box-shadow: 0 0 0 5px rgba(155, 155, 241, 0.14);
  animation: status-pulse 2.4s ease-in-out infinite;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 27px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(52px, 7.2vw, 88px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em {
  color: var(--lavender);
  font-style: normal;
}

.lead {
  max-width: 680px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(20, 16, 96, 0.34);
}

.button-primary:hover {
  background: var(--indigo-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.09);
}

.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.contact-card::after {
  position: absolute;
  top: 92px;
  right: -54px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(70, 70, 170, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.card-topline {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid #e7e9ef;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-topline span:last-child {
  color: var(--indigo);
}

.card-symbol {
  display: grid;
  min-height: 154px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 2px;
  padding: 32px 25px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(70, 70, 170, 0.08) 0, rgba(70, 70, 170, 0.08) 1px, transparent 1px, transparent 30px);
}

.card-symbol span {
  display: flex;
  min-height: 82px;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 8px;
  border-radius: 13px 13px 0 0;
  background: var(--marine);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-symbol span:nth-child(2) {
  min-height: 111px;
  background: var(--indigo);
}

.card-symbol span:nth-child(3) {
  min-height: 96px;
  background: #2d4975;
}

.card-copy {
  position: relative;
  z-index: 1;
  padding: 30px 30px 34px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--indigo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-copy h2 {
  margin-bottom: 13px;
  color: var(--marine);
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.15;
}

.card-copy > p:not(.eyebrow) {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--indigo-dark);
}

.site-footer {
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 25px;
}

.footer-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes status-pulse {
  0%, 100% { transform: scale(0.86); opacity: 0.68; }
  50% { transform: scale(1); opacity: 1; }
}

@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    padding: 66px 0 74px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .contact-card {
    width: min(100%, 600px);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 82px;
  }

  .header-note {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span {
    max-width: 205px;
    font-size: 9px;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .status {
    margin-bottom: 22px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 23px;
    font-size: clamp(48px, 15vw, 67px);
  }

  .lead {
    margin-bottom: 29px;
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-grid {
    gap: 44px;
  }

  .card-topline {
    padding-inline: 20px;
  }

  .card-symbol {
    padding-inline: 20px;
  }

  .card-copy {
    padding: 27px 24px 30px;
  }

  .footer-inner {
    min-height: 108px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 15px 0;
  }

  .footer-inner nav {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
