
:root {
  --bg: #061214;
  --surface: #102528;
  --text: #f2f5f6;
  --muted: #b8c3c6;
  --accent: #90b1b8;
  --accent2: #caa48f;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 700px at 15% 0%, rgba(144,177,184,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(202,164,143,.14), transparent 60%),
              var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(6,18,20,.55);
  border-bottom: 1px solid rgba(144,177,184,.18);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 34px;
  height: 34px;
}
.brand__name {
  font-weight: 650;
  letter-spacing: .2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(242,245,246,.86);
}
.nav a { font-weight: 520; }
.nav__cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(144,177,184,.14);
  border: 1px solid rgba(144,177,184,.24);
}

.hero {
  position: relative;
  padding: 70px 0 38px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,18,20,.35), rgba(6,18,20,.85)),
    url("assets/bg-cover.png") center/cover no-repeat;
  filter: saturate(1.1);
  opacity: .9;
}
.hero__inner { position: relative; }
.hero__card {
  max-width: 780px;
  border-radius: var(--radius);
  background: rgba(16,37,40,.62);
  border: 1px solid rgba(144,177,184,.22);
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(6,18,20,.55);
  border: 1px solid rgba(144,177,184,.25);
  margin-bottom: 10px;
}
.hero__logo { width: 34px; height: 34px; }

h1 {
  margin: 6px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.lead {
  margin: 0 0 18px;
  color: rgba(242,245,246,.86);
  font-size: 1.08rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
}
.stat {
  padding: 14px;
  border-radius: 14px;
  background: rgba(6,18,20,.55);
  border: 1px solid rgba(144,177,184,.18);
}
.stat__kicker {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(184,195,198,.9);
}
.stat__value { font-weight: 650; margin-top: 4px; }
.stat__note { color: rgba(184,195,198,.9); font-size: .95rem; margin-top: 4px; }

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(144,177,184,.22);
  font-weight: 650;
}
.btn--primary {
  background: rgba(144,177,184,.18);
}
.btn--ghost {
  background: rgba(6,18,20,.35);
}

.section {
  padding: 54px 0;
}
.section--alt {
  background: rgba(16,37,40,.36);
  border-top: 1px solid rgba(144,177,184,.16);
  border-bottom: 1px solid rgba(144,177,184,.16);
}
h2 {
  font-size: clamp(22px, 2.3vw, 30px);
  margin: 0 0 10px;
}
h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.card {
  background: rgba(6,18,20,.45);
  border: 1px solid rgba(144,177,184,.18);
  border-radius: var(--radius);
  padding: 18px;
}
.card--image {
  padding: 0;
  overflow: hidden;
}
.card--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
}
.bullets li {
  margin: 8px 0;
  color: rgba(242,245,246,.88);
}

.muted { color: rgba(184,195,198,.92); }
.fineprint { color: rgba(184,195,198,.78); font-size: .9rem; margin-top: 14px; }

.contact {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  align-items: center;
}
.contact__email a {
  font-weight: 750;
  font-size: 1.15rem;
  text-decoration: underline;
  text-decoration-color: rgba(144,177,184,.35);
}
.contact__badge {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 26px;
  background: radial-gradient(120px 120px at 30% 20%, rgba(144,177,184,.20), transparent 60%),
              rgba(16,37,40,.4);
  border: 1px solid rgba(144,177,184,.20);
}
.contact__badge img {
  width: 84px;
  height: 84px;
  opacity: .95;
}

.footer {
  padding: 22px 0 40px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(184,195,198,.9);
  border-top: 1px solid rgba(144,177,184,.14);
  padding-top: 18px;
}

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact__badge { width: 100%; height: 140px; }
  .nav { display: none; }
}

/* Minimal landing overrides for this simplified page */
.minimal-header {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 40;
}
.minimal-header .brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
}
.minimal-header .brand { cursor: default; }

.minimal-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* place content toward the top */
  position: relative;
  /* use existing cover image with a subtle gradient overlay */
  background: linear-gradient(180deg, rgba(6,18,20,.2), rgba(6,18,20,.6)), url("assets/bg-cover.png") center/cover no-repeat fixed;
}
.hero-inner { width: 100%; display: flex; align-items: flex-start; }
.hero-content { max-width: 720px; margin-left: 8vw; color: var(--text); margin-top: 32vh; }

.site-title {
  margin: 0 0 12px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -1px;
}

.tagline-contact-row { display: flex; align-items: flex-start; gap: 60px; margin-top: 6vh; width: 70vw; }
.tagline { margin: 0; margin-left: 30%; color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.6; max-width: 360px; }
.btn-contact { padding: 12px 18px; border-radius: 999px; background: rgba(144,177,184,.18); border: 1px solid rgba(144,177,184,.24); color: var(--text); font-weight:700; white-space: nowrap; }

@media (max-width: 700px) {
  .hero-content { margin-left: 6vw; max-width: 90%; }
  .tagline-contact-row { width: 100%; }
  .brand__logo { width: 44px; height: 44px; }
  .site-title { font-size: 34px; }
}

/* mobile override: adjust sections for smaller screens */
@media (max-width: 520px) {
  .tagline-contact-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .tagline { margin-left: 0; }
}

/* bottom-right text version of the logo */
/* bottom-right text logo removed */

