:root {
  --navy: #001c4c;
  --navy-deep: #001438;
  --blue: #0b63f6;
  --blue-bright: #2682ff;
  --accent: #ffc400;
  --accent-deep: #c88c00;
  --ice: #eef6ff;
  --line: #d9e8fb;
  --muted: #5d6d86;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(520px, 1.08fr);
  overflow: hidden;
  isolation: isolate;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4.4vw, 72px) clamp(28px, 6vw, 96px) 30px;
}

.brand img {
  display: block;
  width: clamp(184px, 13vw, 236px);
  height: auto;
  image-rendering: auto;
}

.copy {
  width: min(100%, 610px);
  margin: auto 0;
  padding: 56px 0 62px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.25vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 750;
}

h1 strong {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--navy);
  font-weight: inherit;
}

h1 strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0.01em;
  bottom: 0.02em;
  left: 0;
  height: 0.13em;
  border-radius: 99px;
  background: var(--accent);
  transform: rotate(-0.6deg);
}

.intro {
  max-width: 580px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(0, 36, 92, 0.06);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 0, 0.8);
  box-shadow: 0 16px 34px rgba(0, 65, 154, 0.12);
}

.contact-card:focus-visible {
  outline: 3px solid rgba(11, 99, 246, 0.28);
  outline-offset: 3px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(145deg, #0b2f64, var(--navy-deep));
  box-shadow: 0 8px 18px rgba(0, 28, 76, 0.2);
  font-size: 1.05rem;
  font-weight: 900;
}

.mail-icon {
  font-family: Arial, sans-serif;
}

.contact-card small,
.contact-card strong {
  display: block;
  white-space: nowrap;
}

.contact-card small {
  margin-bottom: 4px;
  color: #7a899e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow: hidden;
  color: var(--navy);
  font-size: clamp(0.86rem, 1vw, 1rem);
  text-overflow: ellipsis;
}

.arrow {
  color: var(--accent-deep);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.contact-card:hover .arrow {
  transform: translateX(3px);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #78879c;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

footer > span:first-child {
  color: var(--navy);
  font-weight: 800;
}

.divider {
  width: 1px;
  height: 12px;
  background: #cbd9ea;
}

.visual {
  position: relative;
  min-width: 0;
  padding: clamp(14px, 1.8vw, 28px);
}

.visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - clamp(28px, 3.6vw, 56px));
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 46px);
  background: #ddecff;
  box-shadow: 0 28px 80px rgba(0, 39, 101, 0.2);
}

.construction-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 28, 76, 0.18));
}

.status-badge {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 15px;
  color: var(--white);
  background: rgba(0, 28, 76, 0.86);
  box-shadow: 0 12px 30px rgba(0, 20, 56, 0.2);
  backdrop-filter: blur(14px);
}

.status-badge small,
.status-badge strong {
  display: block;
}

.status-badge small {
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.status-badge strong {
  font-size: 0.92rem;
}

.pulse {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 196, 0, 0.16);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 208, 50, 0.65);
  border-radius: inherit;
  animation: pulse 2.2s ease-out infinite;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  width: 330px;
  height: 330px;
  left: -180px;
  top: 30%;
  background: rgba(70, 158, 255, 0.08);
}

.ambient-two {
  width: 220px;
  height: 220px;
  left: 36%;
  bottom: -150px;
  background: rgba(11, 99, 246, 0.08);
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .site-shell {
    grid-template-columns: minmax(380px, 0.9fr) minmax(470px, 1.1fr);
  }

  .content {
    padding-left: 46px;
    padding-right: 46px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .site-shell {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    overflow: visible;
  }

  .content {
    min-height: auto;
    padding: 28px 24px 32px;
  }

  .brand img {
    width: 190px;
  }

  .copy {
    padding: 58px 0 40px;
  }

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

  .intro {
    margin-top: 22px;
  }

  .contact-list {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    margin-top: 8px;
  }

  .visual {
    order: -1;
    height: min(54svh, 560px);
    padding: 12px 12px 0;
  }

  .visual-frame {
    min-height: 0;
    border-radius: 24px;
  }

  .construction-image {
    object-position: center 43%;
  }
}

@media (max-width: 620px) {
  .visual {
    height: 43svh;
    min-height: 340px;
  }

  .content {
    padding: 24px 20px 28px;
  }

  .copy {
    padding-top: 46px;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 14px;
  }

  .status-badge {
    right: 18px;
    bottom: 18px;
    padding: 11px 14px;
  }

  footer {
    gap: 8px;
    line-height: 1.6;
  }
}

@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;
  }
}
