﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;700&display=swap');

:root {
  --bg: #050a16;
  --bg-soft: #081129;
  --card: rgba(8, 19, 42, 0.72);
  --card-strong: rgba(6, 15, 34, 0.9);
  --line: rgba(115, 153, 228, 0.26);
  --text: #edf2ff;
  --muted: #a3b4d7;
  --accent: #2f64ff;
  --accent-soft: #5eb8ff;
  --ok: #53d6ff;
  --warn: #ff4d70;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%, rgba(42, 86, 255, 0.2), transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(45, 186, 255, 0.16), transparent 36%),
    linear-gradient(138deg, #030711 0%, #061029 45%, #071334 100%);
  min-height: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(167, 194, 255, 0.14) 0.5px, transparent 0.5px);
  background-size: 2px 2px;
  opacity: 0.18;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: -20vh -10vw;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, rgba(58, 102, 255, 0.22), transparent 30%),
    radial-gradient(circle at 80% 74%, rgba(55, 182, 255, 0.2), transparent 32%);
  filter: blur(36px);
  animation: mesh 16s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes mesh {
  from {
    transform: translate3d(-24px, -14px, 0) scale(1);
  }

  to {
    transform: translate3d(20px, 16px, 0) scale(1.05);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1400px, calc(100% - 80px));
  margin-inline: auto;
}

.glass {
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header-wrap {
  position: sticky;
  top: 10px;
  z-index: 50;
  padding-top: 16px;
}

.site-header {
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.brand-title {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
}

.nav-toggle {
  margin-left: auto;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(10, 24, 52, 0.75);
  color: #eaf1ff;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 10px;
  border-radius: 0;
  font-size: 13px;
  color: #d8e5ff;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #55b8ff, #2f64ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.cta-button {
  margin-left: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(124, 170, 255, 0.62);
  background: linear-gradient(110deg, rgba(47, 100, 255, 0.95), rgba(78, 199, 255, 0.9));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(44, 112, 255, 0.35);
}

.cta-button .arrow {
  font-size: 12px;
}

main {
  padding-bottom: 68px;
}

.page-head {
  margin-top: 34px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a6b7dd;
  font-size: 14px;
}

.back-link:hover {
  color: #d8e9ff;
}

.page-title {
  margin: 8px 0 16px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(32px, 6vw, 62px);
  line-height: 1.03;
}

.section {
  margin-top: 44px;
}

.section-title {
  margin: 0 0 16px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.14;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7db0ff;
}

.hero {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.home-hero {
  margin-top: 10px;
  border-radius: 0;
  width: 100%;
  min-height: calc(100vh - 110px);
  padding: clamp(26px, 4vw, 46px) 0;
  border-left: 0;
  border-right: 0;
}

.home-hero-inner {
  min-height: calc(100vh - 200px);
  display: grid;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(120, 162, 242, 0.2);
  right: -130px;
  top: -120px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(125, 207, 255, 0.26);
  right: 90px;
  top: 14px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: end;
}

.hero h1 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
}

.hero p {
  margin: 18px 0 0;
  color: #c3d2ef;
  line-height: 1.7;
  font-size: 16px;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(145, 176, 235, 0.36);
  background: rgba(10, 24, 56, 0.66);
  color: #d5e5ff;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  color: #fff;
  background: linear-gradient(110deg, #2f64ff, #53baff);
  border-color: rgba(116, 174, 255, 0.62);
}

.button.secondary {
  color: #dce8ff;
  background: rgba(10, 23, 52, 0.84);
  border-color: rgba(119, 151, 216, 0.36);
}

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

.button.primary:hover {
  box-shadow: 0 14px 30px rgba(52, 118, 255, 0.36);
}

.hero-photo-wrap {
  position: relative;
  justify-self: center;
  width: min(460px, 100%);
}

.hero-ring {
  position: absolute;
  inset: 6% 6% auto auto;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(139, 180, 255, 0.34);
  animation: spin 25s linear infinite;
}

.hero-photo {
  border-radius: 28px;
  border: 1px solid rgba(153, 184, 238, 0.36);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  width: 100%;
  max-height: 620px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(13, 28, 62, 0.76), rgba(7, 15, 34, 0.96));
  padding: 14px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-title {
  color: #a7b9df;
  font-size: 13px;
}

.stat-value {
  font-family: Unbounded, sans-serif;
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1;
}

.stat-sub {
  color: #8fa4d0;
  font-size: 11px;
}

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

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(148deg, rgba(10, 20, 44, 0.94), rgba(8, 16, 34, 0.85));
  padding: 18px;
  min-height: 212px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 106, 255, 0.24), transparent 62%);
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(132, 180, 255, 0.6);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
}

.project-name {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.16;
}

.project-url {
  display: inline-flex;
  margin-top: 4px;
  color: #9dc4ff;
  font-size: 13px;
}

.project-label {
  margin-top: 10px;
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  border: 1px solid rgba(173, 202, 255, 0.34);
  color: #d2e5ff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-staff {
  margin-top: 10px;
  color: #b7caed;
  font-size: 13px;
}

.project-desc {
  margin: 14px 0 0;
  color: #c3d4f3;
  line-height: 1.63;
  font-size: 14px;
}

.project-state {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-state.sold {
  background: rgba(255, 77, 112, 0.18);
  border: 1px solid rgba(255, 108, 136, 0.55);
  color: #ffc9d4;
}

.project-state.active {
  background: rgba(75, 214, 255, 0.18);
  border: 1px solid rgba(117, 212, 255, 0.55);
  color: #caf4ff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
}

.image-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--card-strong);
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.info-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(12, 26, 57, 0.92), rgba(6, 15, 33, 0.9));
  padding: 22px;
}

.info-card p {
  margin: 0;
  color: #c5d5f1;
  line-height: 1.72;
}

.info-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.info-list .item {
  border-radius: 12px;
  border: 1px solid rgba(129, 163, 227, 0.3);
  background: rgba(10, 22, 52, 0.75);
  padding: 12px;
  color: #ceddf8;
  line-height: 1.56;
  font-size: 14px;
}

.info-list .item strong {
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.block-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(10, 20, 43, 0.94), rgba(6, 14, 30, 0.96));
  padding: 20px;
}

.block-card h3 {
  margin: 0 0 12px;
  font-family: Unbounded, sans-serif;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.2;
}

.block-card p {
  margin: 0;
  color: #c1d3f3;
  line-height: 1.67;
}

.strip {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 18px;
  text-align: center;
  background: linear-gradient(95deg, rgba(33, 86, 255, 0.22), rgba(12, 32, 76, 0.78) 42%, rgba(75, 214, 255, 0.14));
}

.strip p {
  margin: 0;
  color: #dce9ff;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(130, 164, 228, 0.42);
  padding: 8px 12px;
  font-size: 13px;
  color: #d1e2ff;
  background: rgba(10, 22, 50, 0.7);
}

.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.price-amount {
  font-family: Unbounded, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #8ed7ff;
}

.accordion {
  display: grid;
  gap: 8px;
}

.accordion-item {
  border-radius: 12px;
  border: 1px solid rgba(128, 161, 222, 0.32);
  background: rgba(7, 17, 38, 0.86);
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: #e9f1ff;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.accordion-btn span:last-child {
  color: #94b4ec;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-content > div {
  overflow: hidden;
}

.accordion-content p {
  margin: 0;
  padding: 0 15px 15px;
  color: #bdd0f1;
  line-height: 1.64;
}

.accordion-item.open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-btn span:last-child {
  transform: rotate(45deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

.contact-list {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card-strong);
  padding: 20px;
}

.contact-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: #d7e5ff;
  line-height: 1.5;
}

.contact-list .icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(49, 101, 255, 0.24);
  border: 1px solid rgba(105, 156, 255, 0.56);
  color: #a8ccff;
  font-size: 12px;
}

.links-table {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(130, 164, 224, 0.32);
  overflow: hidden;
}

.links-table a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(10, 20, 46, 0.82);
  border-bottom: 1px solid rgba(130, 164, 224, 0.22);
  color: #d2e2ff;
}

.links-table a:last-child {
  border-bottom: 0;
}

.links-table a:hover {
  background: rgba(41, 90, 208, 0.24);
}

.press-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(8, 20, 47, 0.96), rgba(7, 16, 34, 0.92));
  padding: 22px;
  display: grid;
  gap: 16px;
}

.press-card h3 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
}

.press-card p {
  margin: 0;
  color: #c3d5f6;
  line-height: 1.7;
}

.press-footer {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(130, 164, 224, 0.25);
}

.press-footer a {
  color: #8dc5ff;
  font-weight: 700;
}

.contact-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.input,
textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(128, 162, 224, 0.32);
  background: rgba(9, 18, 40, 0.82);
  color: #e5efff;
  padding: 12px;
  font: inherit;
  outline: none;
}

.input:focus,
textarea:focus {
  border-color: rgba(84, 177, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(69, 140, 255, 0.22);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.kpi-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 20, 45, 0.85);
  padding: 14px;
}

.kpi-item .label {
  color: #a7b9de;
  font-size: 12px;
}

.kpi-item .value {
  margin-top: 8px;
  font-weight: 800;
  font-size: 16px;
  color: #ecf3ff;
}

.site-footer {
  margin-top: 56px;
  padding: 0;
}

.footer-shell {
  border-radius: 0;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-left: 0;
  border-right: 0;
}

.site-footer .container.footer-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav a {
  font-size: 13px;
  color: #bfd2f6;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  color: #94abd4;
  font-size: 12px;
}

@media (max-width: 1140px) {
  .stats-grid,
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap {
    max-width: 520px;
  }

  .two-col,
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(1400px, calc(100% - 26px));
  }

  .site-header-wrap {
    top: 8px;
    padding-top: 8px;
  }

  .site-header {
    border-radius: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
  }

  .brand {
    max-width: calc(100% - 48px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    width: 100%;
    order: 5;
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .cta-button {
    border-radius: 12px;
  }

  .cta-button {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .page-title {
    font-size: clamp(30px, 8vw, 46px);
  }

  .hero {
    margin-top: 16px;
  }

  .home-hero {
    min-height: auto;
    padding: 24px 0;
  }

  .home-hero-inner {
    min-height: auto;
  }

  .footer-shell {
    padding: 18px 14px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 52px);
  }
}

@media (max-width: 540px) {
  .stats-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .price-card {
    grid-template-columns: 1fr;
  }
}
