:root {
  --bg: #030712;
  --bg-soft: #09111f;
  --bg-card: rgba(10, 18, 34, 0.82);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #4ade80;
  --accent-strong: #34d399;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  width: 230px;
  max-width: 40vw;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  margin: 6px 0;
  background: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #04101d;
}

.button-secondary {
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.1);
  color: #b6ffd1;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-light {
  background: white;
  color: #04101d;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
}

.hero-media,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at center, rgba(16, 185, 129, 0.2) 0%, transparent 34%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 48px;
  padding: 140px 0 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: #86efac;
}

.eyebrow {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 22px;
}

.hero-copy h1,
.section-head h2,
.split-grid h2,
.project-panel h2,
.cta-card h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.hero-copy p,
.section-text,
.cta-card p,
.footer-brand p,
.footer-form-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 760px;
  margin: 24px 0 0;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: center;
}

.stat-card,
.info-card,
.service-card,
.step-card,
.project-card,
.feature-item,
.footer-form-card,
.project-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 104px 0;
}

.section-dark {
  background: linear-gradient(180deg, #09111f 0%, #07101c 100%);
}

.section-deeper {
  background: #030712;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.split-grid h2,
.section-head h2,
.project-panel h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-head {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-list,
.card-grid,
.steps-grid,
.project-cards {
  display: grid;
  gap: 20px;
}

.feature-item,
.info-card,
.service-card,
.step-card,
.project-card,
.project-panel,
.footer-form-card {
  padding: 28px;
  background: var(--bg-card);
}

.feature-item h3,
.info-card h3,
.service-card h3,
.step-card h3,
.project-card h3,
.footer-form-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.feature-item p,
.info-card p,
.service-card p,
.step-card p,
.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  color: #86efac;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.projects-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.project-panel {
  background:
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.12), transparent 48%),
    linear-gradient(145deg, rgba(7, 16, 28, 0.98), rgba(3, 7, 18, 0.92));
}

.project-types {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.project-types li {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}


.project-showcase {
  grid-template-columns: 1fr;
}

.project-feature {
  overflow: hidden;
  padding: 0;
  background: rgba(7, 16, 28, 0.94);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.22), rgba(3, 7, 18, 0));
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-feature:hover .project-media img,
.project-feature:focus-within .project-media img {
  transform: scale(1.03);
}

.project-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: rgba(3, 7, 18, 0.74);
  backdrop-filter: blur(12px);
  color: #b6ffd1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-body {
  padding: 26px 28px 28px;
}

.project-meta {
  color: #86efac;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.84rem;
}

.cta-section {
  padding-top: 0;
  background: linear-gradient(180deg, #030712 0%, #09111f 100%);
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(10, 18, 34, 0.95));
}

.site-footer {
  padding: 30px 0 64px;
  background: #030712;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 260px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.88);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c879a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.08);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #9fe0b7;
  font-size: 0.95rem;
}

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

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(6, 12, 24, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: block;
    justify-self: center;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .split-grid,
  .projects-layout,
  .footer-grid,
  .steps-grid,
  .three-cols {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 128px;
    align-items: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: end;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand-logo,
  .footer-logo {
    width: 190px;
    max-width: 52vw;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-grid {
    min-height: 88vh;
    gap: 28px;
    padding: 116px 0 52px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .feature-item,
  .info-card,
  .service-card,
  .step-card,
  .project-card,
  .project-panel,
  .footer-form-card,
  .stat-card,
  .cta-card {
    padding: 22px;
  }
}


.micro-footer {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 28px;
}

.micro-footer a {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(203, 213, 225, 0.72);
  transition: color 0.2s ease;
}

.micro-footer a:hover,
.micro-footer a:focus-visible {
  color: #ffffff;
}

.page-hero {
  padding: 140px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.1), transparent 36%),
    linear-gradient(180deg, #09111f 0%, #030712 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-text {
  max-width: 860px;
}

.financial-section {
  padding-top: 56px;
}

.financial-article {
  display: grid;
  gap: 18px;
}

.financial-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.financial-card h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.financial-card p,
.financial-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.financial-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.financial-inline-meta {
  display: grid;
  gap: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #b6ffd1;
  font-size: 0.94rem;
}

.financial-raw {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.98rem;
}

@media (max-width: 720px) {
  .micro-footer a {
    font-size: 0.62rem;
  }

  .page-hero {
    padding: 116px 0 28px;
  }

  .financial-card {
    padding: 22px;
  }
}
