:root {
  --bg: #05060a;
  --bg-soft: #0e1017;
  --card: #11141f;
  --accent: #00b4d8;
  --accent-soft: rgba(0, 180, 216, 0.1);
  --text: #f5f5f5;
  --muted: #9aa0b5;
  --border: #222631;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --max-width: 1080px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #141821 0, #05060a 55%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

main {
  min-height: 100vh;
}

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.96),
    rgba(5, 6, 10, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.25rem;
}

/* NEW: logo uses image */

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;          /* change this to 48 / 56 etc. if you want it bigger */
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 180, 216, 0.55));
}

/* old logo-mark / logo-wave / logo-text not needed anymore
   (you can delete them entirely if you like) */

/*
.logo-mark { ... }
.logo-wave { ... }
.logo-text { ... }
*/

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #72efdd);
  border-radius: 999px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 180, 216, 0.55);
  background: radial-gradient(circle at top left, #00b4d8 0, #05060a 60%);
  color: #fdfdfd;
  font-size: 0.86rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.28);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* HERO – HOME */

.hero {
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #72efdd);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero h1 span {
  background: linear-gradient(120deg, #72efdd, var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.btn-primary,
.btn-ghost {
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition), border-color var(--transition),
    color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #72efdd);
  color: #05060a;
  box-shadow: 0 18px 40px rgba(0, 180, 216, 0.5);
}

.btn-ghost {
  background: rgba(8, 11, 24, 0.9);
  color: var(--muted);
  border-color: rgba(154, 160, 181, 0.35);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  font-size: 0.82rem;
  color: #e6ebff;
  margin-bottom: 0.1rem;
}

.hero-card {
  background: radial-gradient(circle at top, #161b29 0, #05060a 70%);
  border-radius: 28px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.hero-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(5, 6, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #c6d0ff;
  align-self: flex-start;
}

.hero-metric-main {
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  font-weight: 600;
}

/* PAGE HERO (inner pages) */

.page-hero {
  padding: 3.8rem 0 2.5rem;
}

.page-hero h1 {
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 32rem;
}

/* GENERIC SECTIONS */

section {
  padding: 3.7rem 0;
}

section.strip {
  background: var(--bg-soft);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.section-description {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 30rem;
}

/* GRIDS & CARDS */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(5, 6, 10, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.service-title {
  font-size: 1.05rem;
}

.service-body {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-list {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #cfd4ec;
  list-style: none;
}

.service-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.35rem;
}

/* TWO COLUMN */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.copy-block {
  font-size: 0.96rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* CREATOR STRIP */

.creator-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.creator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #d5f9ff;
}

.creator-pill {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 180, 216, 0.4);
}

/* CONTACT */

.contact-card {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.12),
    rgba(5, 6, 10, 0.95)
  );
  border-radius: 26px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0, 180, 216, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.contact-text {
  font-size: 0.95rem;
  color: #e3f7ff;
  max-width: 30rem;
}

.contact-meta {
  font-size: 0.88rem;
  color: #d0f3ff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.field-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  color: rgba(2, 9, 17, 0.9);
}

.field-value {
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  background: rgba(3, 10, 19, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #f3fcff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.82rem;
}

.field-value button {
  background: transparent;
  border: none;
  color: rgba(153, 210, 255, 0.9);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.field-value button:hover {
  background: rgba(9, 37, 59, 0.8);
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

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

  .hero-card {
    order: -1;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .two-col,
  .creator-strip,
  .contact-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero {
    padding-top: 3rem;
  }
}
