:root {
  --navy: #14275f;
  --navy-dark: #071534;
  --blue: #168cc3;
  --cyan: #16c6d7;
  --purple: #6b4bb7;
  --red: #b3162d;
  --text: #24304a;
  --muted: #66728a;
  --line: #e6edf5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--navy-dark);
}

.maintenance-page {
  position: relative;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(24px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.maintenance-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: url("assets/background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.maintenance-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 24, 0.90) 0%,
      rgba(4, 14, 38, 0.82) 33%,
      rgba(3, 18, 46, 0.46) 68%,
      rgba(2, 8, 24, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 8, 24, 0.34) 0%,
      rgba(2, 8, 24, 0.56) 100%
    );
}
.maintenance-card {
  width: min(100%, 610px);
  background: rgba(255, 255, 255, 0.97);
  padding: clamp(28px, 4.2vw, 56px);
  border-left: 6px solid var(--cyan);
  box-shadow: 0 32px 90px rgba(2, 11, 34, 0.36);
}

.brand-logo {
  display: block;
  width: min(190px, 52vw);
  height: auto;
  margin-bottom: clamp(28px, 4vw, 32px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

h1 {
  margin: 0;
  /* max-width: 10ch; */
  font-size: clamp(2.1rem, 4.2vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  color: var(--navy);
}

.intro {
  max-width: 520px;
  margin: 1em 0;
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.68;
  color: var(--text);
  text-align:justify;
}

.divider {
  width: 72px;
  height: 3px;
  margin: 1em 0;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.secondary-text {
  margin: 0;
  max-width: 500px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  text-align:justify;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 2px solid transparent;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  border-radius:25px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 55%, var(--purple));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(20, 39, 95, 0.22);
  border-color: var(--line);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(20, 39, 95, 0.30);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: #c9d6e6;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.contact-line {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-line a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 1199px) {
	.maintenance-card{margin:auto;}
}
@media (max-width: 760px) {
  .maintenance-page {
    /* align-items: flex-end; */
    padding: 20px;
  }

  .maintenance-page::before {
    background-position: 63% center;
    transform: scale(1.01);
  }

  .maintenance-page::after {
    background:
      linear-gradient(180deg, rgba(7, 21, 52, 0.42) 0%, rgba(7, 21, 52, 0.82) 58%, rgba(7, 21, 52, 0.95) 100%);
  }

  .maintenance-card {
    padding: 30px 24px;
    border-left-width: 4px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 14vw, 3.9rem);
  }

  .actions,
  .button {
    width: 100%;
  }
}

@media(max-width:575px) and (max-height:750px){
	h1{font-size:42px;}
	.intro, .secondary-text{line-height:1.28;}
}


@media (min-width: 1400px) {
  .maintenance-card {
    margin-left: 4vw;
  }
}
