:root {
  --bg: #eef3f4;
  --bg-alt: #f8fbfc;
  --bg-dark: #071116;
  --bg-deep: #102430;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(8, 18, 26, 0.9);
  --surface-dark: rgba(13, 29, 39, 0.9);
  --ink: #081822;
  --ink-soft: #53636d;
  --ink-inverse: #f5fbfd;
  --line: rgba(8, 24, 34, 0.11);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #29b3bb;
  --primary-deep: #0f6974;
  --secondary: #8cc844;
  --accent: #ff9d21;
  --accent-soft: #ffca57;
  --glow-cyan: 0 0 72px rgba(41, 179, 187, 0.16);
  --glow-orange: 0 0 90px rgba(255, 159, 28, 0.18);
  --shadow-lg: 0 30px 72px rgba(7, 18, 24, 0.16);
  --shadow-md: 0 16px 34px rgba(7, 18, 24, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --site-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(41, 179, 187, 0.18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 157, 33, 0.14), transparent 20%),
    linear-gradient(180deg, #081218 0%, #0d1d26 20%, #eef3f4 20.1%, #eef3f4 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 72%);
  opacity: 0.2;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -120px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 18px;
}

.site-shell {
  position: relative;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(28px);
  opacity: 0.56;
}

.site-shell::before {
  width: 320px;
  height: 320px;
  left: -100px;
  top: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 179, 187, 0.24), transparent 68%);
  animation: drift 14s ease-in-out infinite alternate;
}

.site-shell::after {
  width: 360px;
  height: 360px;
  right: -140px;
  top: 84px;
  border-radius: 38% 62% 54% 46% / 46% 44% 56% 54%;
  background: radial-gradient(circle, rgba(255, 157, 33, 0.2), transparent 66%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--site-max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background:
    radial-gradient(circle at top left, rgba(41, 179, 187, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.9));
}

.section-dark {
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at 15% 20%, rgba(140, 200, 68, 0.16), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(255, 157, 33, 0.12), transparent 24%),
    linear-gradient(180deg, #08131a 0%, #102734 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.kicker,
.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.kicker,
.eyebrow {
  color: var(--primary-deep);
}

.kicker::before,
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-dark .kicker,
.section-dark .eyebrow {
  color: #bff1f4;
}

.title,
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.title {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.lead,
.section-heading p,
.hero-copy p,
.page-hero p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-dark .lead,
.section-dark p {
  color: rgba(245, 251, 253, 0.76);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(6, 17, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(7, 18, 24, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.08;
  color: rgba(245, 251, 253, 0.94);
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  color: rgba(245, 251, 253, 0.68);
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(245, 251, 253, 0.78);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
  transform: translateY(-1px);
}

.nav-links .button {
  margin-left: 6px;
  min-height: 48px;
  padding: 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #061318;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(7, 18, 24, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 46px rgba(7, 18, 24, 0.18);
  filter: saturate(1.04);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 44px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px auto auto 7%;
  width: 102px;
  height: 90px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(41, 179, 187, 0.08);
  animation: rotate-hex 16s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 200px 12% auto auto;
  width: 72px;
  height: 62px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  background: rgba(255, 157, 33, 0.12);
  animation: float-up 10s ease-in-out infinite;
}

.hero-grid,
.split-layout,
.contact-grid,
.cta-band,
.reach-grid,
.hero-pulse-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 34px;
  overflow: hidden;
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 33, 0.16), transparent 26%),
    radial-gradient(circle at 18% 16%, rgba(41, 179, 187, 0.16), transparent 30%),
    linear-gradient(150deg, rgba(11, 30, 40, 0.98) 0%, rgba(6, 20, 27, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  opacity: 0.6;
}

.hero-copy::before {
  width: 150px;
  height: 132px;
  right: -30px;
  top: 28px;
  background: linear-gradient(135deg, rgba(41, 179, 187, 0.12), rgba(41, 179, 187, 0.02));
  border: 1px solid rgba(41, 179, 187, 0.22);
  animation: float-up 13s ease-in-out infinite;
}

.hero-copy::after {
  width: 108px;
  height: 92px;
  left: -10px;
  bottom: 30px;
  background: linear-gradient(135deg, rgba(140, 200, 68, 0.16), rgba(255, 157, 33, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float-up 11s ease-in-out infinite reverse;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 11.8ch;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
}

.hero-copy p {
  color: rgba(245, 251, 253, 0.8);
}

.hero-tagline,
.hero-microcopy {
  color: rgba(245, 251, 253, 0.66);
  font-size: 0.94rem;
}

.hero-tagline {
  margin-top: 14px;
  max-width: 48ch;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.chip-list,
.check-list,
.mini-list,
.inline-links,
.proof-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 251, 253, 0.82);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.proof-card {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.proof-card strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-panel::before {
  inset: auto auto 8% -3%;
  width: 72px;
  height: 62px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  background: rgba(140, 200, 68, 0.16);
  animation: float-up 10s ease-in-out infinite;
}

.hero-panel::after {
  inset: 0 -10% auto auto;
  width: 110px;
  height: 94px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  background: rgba(41, 179, 187, 0.1);
  animation: rotate-hex 18s linear infinite reverse;
}

.hero-surface,
.hero-command,
.card,
.contact-card,
.content-card,
.status-banner,
.reach-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.hero-command {
  display: grid;
  gap: 18px;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(41, 179, 187, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 247, 249, 0.95) 100%);
}

.hero-command::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 132px;
  height: 116px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  background: linear-gradient(135deg, rgba(255, 157, 33, 0.12), rgba(140, 200, 68, 0.14));
}

.hero-brand-panel {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(8, 24, 34, 0.96), rgba(15, 41, 53, 0.96));
  color: var(--ink-inverse);
  box-shadow: var(--glow-cyan);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-brand-lockup img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.hero-brand-copy strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.02rem;
}

.hero-brand-copy span {
  display: block;
  margin-top: 5px;
  max-width: 30ch;
  color: rgba(245, 251, 253, 0.66);
  font-size: 0.85rem;
}

.hero-brand-panel > p {
  margin: 0;
  color: rgba(245, 251, 253, 0.8);
  font-size: 0.96rem;
}

.hero-showcase-intro {
  display: grid;
  gap: 10px;
}

.hero-showcase-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hero-showcase-intro p {
  margin: 0;
  color: var(--ink-soft);
}

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

.service-logo-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 178px;
  padding: 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 24, 34, 0.08);
  box-shadow: 0 14px 24px rgba(8, 24, 34, 0.08);
}

.service-logo-card strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
}

.service-logo-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-logo-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 184, 194, 0.16), rgba(140, 200, 68, 0.24));
  color: var(--primary-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-logo-card:nth-child(2n) .service-logo-icon {
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.18), rgba(47, 184, 194, 0.16));
}

.service-logo-card:nth-child(3n) .service-logo-icon {
  background: linear-gradient(135deg, rgba(140, 200, 68, 0.18), rgba(47, 184, 194, 0.12));
}

.service-logo-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-logo-icon svg .fill-shape {
  fill: currentColor;
  stroke: none;
}

.hero-note-band {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-note-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 24, 34, 0.96), rgba(12, 34, 45, 0.96));
  color: var(--ink-inverse);
  box-shadow: var(--shadow-md);
}

.hero-note-card strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
}

.hero-note-card span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 251, 253, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.command-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 24, 34, 0.08);
  box-shadow: 0 14px 24px rgba(8, 24, 34, 0.08);
}

.command-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 184, 194, 0.12);
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-card strong {
  display: block;
  margin-top: 14px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.02rem;
}

.command-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  padding: 16px 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 24, 34, 0.94), rgba(12, 34, 45, 0.94));
  color: var(--ink-inverse);
  box-shadow: var(--shadow-md);
}

.metric-card strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  color: rgba(245, 251, 253, 0.66);
  font-size: 0.85rem;
}

.signal-band {
  margin-top: 26px;
}

.signal-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 251, 253, 0.76);
  backdrop-filter: blur(14px);
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.stat-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.stat-card span {
  display: block;
  color: rgba(245, 251, 253, 0.68);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.content-card,
.contact-card,
.reach-card {
  padding: 28px;
  overflow: hidden;
}

.card::before,
.content-card::before,
.contact-card::before,
.reach-card::before {
  content: "";
  position: absolute;
  right: -10px;
  top: -14px;
  width: 70px;
  height: 60px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  background: rgba(41, 179, 187, 0.08);
  transform: rotate(12deg);
}

.card h3,
.content-card h3,
.contact-card h3,
.reach-card h3 {
  font-size: 1.42rem;
  margin-bottom: 10px;
}

.card p,
.content-card p,
.contact-card p,
.reach-card p {
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
}

.section-dark .card::before {
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .card p,
.section-dark .card li {
  color: rgba(245, 251, 253, 0.78);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--primary-deep);
  font-weight: 900;
}

.service-link:hover,
.service-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(47, 184, 194, 0.4);
}

.accent-panel {
  padding: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(47, 184, 194, 0.12), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(8, 24, 34, 0.08);
  box-shadow: var(--shadow-md);
}

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

.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 24, 34, 0.05);
  color: var(--primary-deep);
  font-weight: 800;
  margin-bottom: 14px;
}

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

.timeline-step {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 24, 34, 0.08);
  box-shadow: var(--shadow-md);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 184, 194, 0.16), rgba(144, 204, 65, 0.16));
  color: var(--primary-deep);
  font-weight: 900;
  margin-bottom: 16px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(47, 184, 194, 0.08);
  color: var(--primary-deep);
  font-weight: 800;
}

.section-dark .pill {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
}

.page-hero {
  position: relative;
  padding: 54px 0 48px;
}

.page-hero .page-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(41, 179, 187, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 157, 33, 0.12), transparent 24%),
    linear-gradient(150deg, #0a1b23 0%, #123444 100%);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero .page-frame::before,
.page-hero .page-frame::after {
  content: "";
  position: absolute;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  pointer-events: none;
}

.page-hero .page-frame::before {
  width: 180px;
  height: 158px;
  right: -24px;
  top: 30px;
  background: rgba(47, 184, 194, 0.1);
}

.page-hero .page-frame::after {
  width: 118px;
  height: 102px;
  left: -18px;
  bottom: 30px;
  background: rgba(255, 159, 28, 0.12);
}

.page-hero p {
  color: rgba(245, 251, 253, 0.8);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: rgba(245, 251, 253, 0.68);
}

.breadcrumb a {
  color: rgba(245, 251, 253, 0.92);
}

.highlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.highlight-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-card p {
  color: rgba(245, 251, 253, 0.76);
}

.inline-service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.inline-service-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.feature-band {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-band .content-card {
  background: rgba(255, 255, 255, 0.86);
}

.check-list li,
.mini-list li,
.feature-list li,
.proof-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.mini-list li::before,
.feature-list li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 30%, transparent 31%),
    linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  box-shadow: 0 0 0 5px rgba(47, 184, 194, 0.08);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.98fr);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card a {
  color: var(--primary-deep);
  font-weight: 900;
}

.contact-form {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47, 184, 194, 0.12), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 251, 0.94) 100%);
  border: 1px solid rgba(8, 24, 34, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-form::before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 110px;
  height: 96px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  background: rgba(255, 159, 28, 0.1);
}

.contact-form h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.94rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(8, 24, 34, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(47, 184, 194, 0.7);
  box-shadow: 0 0 0 4px rgba(47, 184, 194, 0.12);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-note,
.mini-note {
  margin: 14px 0 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.status-banner {
  display: none;
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 184, 194, 0.14);
  color: var(--primary-deep);
  background: rgba(47, 184, 194, 0.08);
}

.status-banner.error {
  border-color: rgba(194, 65, 12, 0.16);
  color: #c2410c;
  background: rgba(194, 65, 12, 0.08);
}

.status-banner.is-visible {
  display: block;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 24, 34, 0.08);
  box-shadow: var(--shadow-md);
  padding: 0 22px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 34px 22px 0;
  position: relative;
  font-weight: 900;
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.5rem;
  color: var(--primary-deep);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list .faq-content {
  padding: 0 0 22px;
  color: var(--ink-soft);
}

.cta-band {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  align-items: center;
  padding: 40px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 33, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(41, 179, 187, 0.12), transparent 24%),
    linear-gradient(135deg, #08151c 0%, #103040 100%);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-lg);
}

.cta-band p {
  margin: 14px 0 0;
  color: rgba(245, 251, 253, 0.8);
}

.cta-panel {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.footer {
  padding: 28px 0 42px;
}

.footer-frame {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(41, 179, 187, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(9, 20, 27, 0.98) 0%, rgba(12, 28, 37, 0.98) 100%);
  color: var(--ink-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.6fr));
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer p,
.footer li,
.footer a,
.footer small {
  color: rgba(245, 251, 253, 0.72);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 35;
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(8, 24, 34, 0.92);
  color: var(--ink-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.floating-contact a.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #061318;
}

.floating-contact a:not(.primary) {
  display: none;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    box-shadow 240ms ease;
}

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

[data-tilt]:hover {
  box-shadow: var(--shadow-lg);
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(40px, -26px, 0) scale(1.08);
  }
}

@keyframes float-up {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes rotate-hex {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .services-grid,
  .feature-band,
  .timeline,
  .footer-grid,
  .stats-strip,
  .reach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at 10% 10%, rgba(41, 179, 187, 0.18), transparent 24%),
      linear-gradient(180deg, #071218 0%, #08161f 18%, #eef3f4 18.1%, #eef3f4 100%);
  }

  .site-header {
    background: rgba(6, 17, 22, 0.86);
  }

  .brand {
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 24, 34, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav-links a {
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(47, 184, 194, 0.08);
    color: var(--ink);
  }

  .nav-links .button {
    margin-left: 0;
    color: #061318;
  }

  .nav-links.is-open {
    display: flex;
  }

  .services-grid,
  .three-up,
  .two-up,
  .feature-band,
  .highlight-grid,
  .timeline,
  .footer-grid,
  .stats-strip,
  .form-grid,
  .hero-proof,
  .command-grid,
  .hero-metrics,
  .reach-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-brand-panel {
    padding: 18px;
  }

  .hero-brand-lockup {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero-copy,
  .hero-command,
  .page-hero .page-frame,
  .cta-band,
  .card,
  .content-card,
  .contact-card,
  .contact-form,
  .timeline-step,
  .accent-panel,
  .reach-card {
    border-radius: 24px;
  }

  .floating-contact {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .floating-contact a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .service-logo-grid {
    grid-template-columns: 1fr;
  }

  .service-logo-card {
    min-height: 0;
  }
}
