:root {
  --bg-deep: #0d1a26;
  --bg-surface: #12263a;
  --bg-soft: #1f3a52;
  --accent: #f0b74a;
  --accent-2: #48c7b8;
  --text-main: #edf4fb;
  --text-soft: #bdd2e5;
  --line: rgba(237, 244, 251, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 18% 18%, rgba(72, 199, 184, 0.15), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(240, 183, 74, 0.2), transparent 28%),
    linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-surface) 55%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

.introSplash {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(72, 199, 184, 0.25), transparent 40%),
    linear-gradient(160deg, #08131f 0%, #12263a 55%, #1f3a52 100%);
  transition: opacity 320ms ease;
}

.introSplash img {
  width: min(260px, 62vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.introSplash p {
  margin: 0;
  font-family: "IBM Plex Serif", serif;
  font-size: clamp(1.2rem, 3.6vw, 2rem);
  color: #f0b74a;
  letter-spacing: 0.03em;
}

.introSplash--hide {
  opacity: 0;
  pointer-events: none;
}

body.is-loading .site-header,
body.is-loading main,
body.is-loading .site-footer,
body.is-loading .noise {
  opacity: 0;
  visibility: hidden;
}

body.is-loading {
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1120px, 92vw);
  margin: 1.2rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 26, 38, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}

main {
  width: min(1120px, 92vw);
  margin: 2.2rem auto 3rem;
  display: grid;
  gap: 1.4rem;
}

.hero,
.process,
.cta {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2 {
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 18ch;
}

.lead {
  color: var(--text-soft);
  max-width: 65ch;
  font-size: 1.04rem;
  margin: 1rem 0 1.4rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.mini-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.mini-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.45;
}

.process h2,
.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.process ol {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.55rem;
}

.promise {
  margin: 0;
  display: inline-block;
  font-weight: 700;
  color: #1c2010;
  background: linear-gradient(90deg, var(--accent) 0%, #ffe2a9 100%);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
}

.cta {
  display: grid;
  gap: 0.8rem;
}

.cta p {
  margin: 0;
  color: var(--text-soft);
}

.btn {
  display: inline-block;
  justify-self: start;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  color: #102235;
  background: linear-gradient(90deg, var(--accent-2) 0%, #8ce6dc 100%);
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 26, 38, 0.45);
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
  color: var(--text-soft);
}

.site-footer__name {
  font-family: "IBM Plex Serif", serif;
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.site-footer__company {
  margin-bottom: 0.35rem;
}

.site-footer__contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }
}
