:root {
  --bg: #f6f2e9;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #1d1f24;
  --muted: #5f6773;
  --primary: #0d8f8c;
  --primary-deep: #0a6c6a;
  --accent: #f28f3b;
  --line: rgba(16, 26, 42, 0.12);
  --shadow: 0 18px 60px rgba(13, 32, 56, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 0.97rem + 0.28vw, 1.12rem);
  color: var(--ink);
  background: radial-gradient(circle at 8% 10%, rgba(242, 143, 59, 0.22), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(13, 143, 140, 0.22), transparent 45%),
    var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(29, 31, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 31, 36, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 85%);
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 60;
  box-shadow: 0 0 14px rgba(13, 143, 140, 0.45);
}

.floating-proof {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(88vw, 420px);
  font-size: 0.83rem;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.floating-proof::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1db954;
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.12);
  animation: pulse-dot 1.8s ease infinite;
  flex-shrink: 0;
}

.mobile-quick-actions {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 55;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.mobile-quick-actions a {
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
}

.mobile-quick-actions .action-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-deep));
}

.mobile-quick-actions .action-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.site-header,
main,
.site-footer {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.site-header {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(13, 32, 56, 0.1);
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-size: 1.02rem;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: 0 8px 20px rgba(10, 108, 106, 0.36);
}

.brand-text {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.09em;
  font-size: clamp(1.06rem, 1.24vw, 1.42rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
  color: #0f2f38;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 70;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(13, 143, 140, 0.12);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-proof,
body.menu-open .mobile-quick-actions {
  opacity: 0;
  pointer-events: none;
}

main {
  padding: 26px 0 20px;
}

.landing-hero {
  position: relative;
  min-height: clamp(460px, 74vh, 760px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  background: linear-gradient(105deg, rgba(8, 14, 24, 0.78), rgba(8, 14, 24, 0.42)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80") center / cover;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(8, 14, 24, 0.46));
  pointer-events: none;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(242, 143, 59, 0.14), transparent 48%, rgba(13, 143, 140, 0.12));
}

.hero-energy {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-energy-1 {
  width: clamp(120px, 20vw, 260px);
  height: clamp(120px, 20vw, 260px);
  left: -5%;
  top: 8%;
  background: radial-gradient(circle, rgba(13, 143, 140, 0.62), rgba(13, 143, 140, 0));
  animation: orb-drift-1 9s ease-in-out infinite;
}

.hero-energy-2 {
  width: clamp(150px, 23vw, 290px);
  height: clamp(150px, 23vw, 290px);
  right: -4%;
  top: 16%;
  background: radial-gradient(circle, rgba(242, 143, 59, 0.58), rgba(242, 143, 59, 0));
  animation: orb-drift-2 11s ease-in-out infinite;
}

.hero-energy-3 {
  width: clamp(90px, 12vw, 180px);
  height: clamp(90px, 12vw, 180px);
  right: 28%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  animation: orb-drift-3 8s ease-in-out infinite;
}

.landing-hero-overlay {
  width: min(760px, 92%);
  padding: clamp(22px, 4vw, 56px);
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
  transition: transform 0.25s ease;
}

.landing-hero .eyebrow,
.landing-hero h1,
.landing-hero p {
  color: #ffffff;
}

.landing-hero h1 {
  margin: 2px 0 8px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.03;
  text-wrap: balance;
}

.landing-hero p {
  margin: 0;
  font-size: clamp(1.02rem, 0.96rem + 0.5vw, 1.25rem);
}

.landing-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.95);
}

.hero-live-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-live-stats article {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  display: grid;
  gap: 2px;
}

.hero-live-stats strong {
  font-family: "Syne", sans-serif;
  font-size: 1.06rem;
  color: #fff;
}

.hero-live-stats span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
}

.live-pulse-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pulse-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 12px 10px;
  animation: pulse-marquee 26s linear infinite;
}

.pulse-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-live-tags span {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.live-media-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.live-media-card {
  min-height: 180px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.live-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(10, 15, 25, 0.48) 100%);
}

.media-card-web {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.4), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=1200&q=80");
}

.media-card-app {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.4), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=1200&q=80");
}

.media-card-software {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.4), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80");
}

.media-card-ai {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.4), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1674027444485-cec3da58eef4?auto=format&fit=crop&w=1200&q=80");
}

.signal-bar {
  background: linear-gradient(140deg, rgba(10, 108, 106, 0.1), rgba(242, 143, 59, 0.16));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 16px;
}

.site-clarity-bar {
  margin-bottom: 22px;
  background: linear-gradient(140deg, rgba(10, 108, 106, 0.11), rgba(242, 143, 59, 0.14));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 2.8vw, 30px);
  display: grid;
  gap: 14px;
}

.site-clarity-bar h2 {
  margin: 4px 0 8px;
  font-family: "Syne", sans-serif;
  line-height: 1.12;
}

.site-clarity-bar p {
  margin: 0;
  color: var(--muted);
}

.clarity-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clarity-links a {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  padding: 9px 13px;
  font-weight: 700;
  color: var(--ink);
}

.clarity-links a:hover {
  border-color: rgba(10, 108, 106, 0.35);
  background: rgba(255, 255, 255, 1);
}

.clarity-head {
  display: grid;
  gap: 4px;
}

.signal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
}

.signal-stats h3 {
  margin: 0 0 6px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
}

.signal-stats p {
  margin: 0;
  font-size: 0.88rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.card,
.project-card,
.cta-block,
.page-intro,
.image-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 4vw, 46px);
}

.hero h1,
.page-intro h1,
.section h2 {
  font-family: "Syne", sans-serif;
  line-height: 1.08;
  margin: 8px 0 14px;
  text-wrap: balance;
}

.section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.page-intro h1 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.eyebrow,
.label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 0.76rem;
}

.hero-copy p,
.section p,
.page-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 0.98rem + 0.14vw, 1.08rem);
}

.cta-row,
.cta-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(140deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 108, 106, 0.35);
}

.btn-solid:hover {
  box-shadow: 0 14px 28px rgba(10, 108, 106, 0.42);
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-sm {
  padding: 8px 12px;
  font-size: 0.86rem;
}

.text-link {
  color: var(--primary-deep);
  font-weight: 700;
  display: inline-flex;
  margin-top: 6px;
}

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

.hero-metrics article {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
}

.hero-metrics h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 4px;
  font-size: 1.45rem;
}

.hero-metrics p {
  margin: 0;
  font-size: 0.87rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
}

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

.hero-card .mini-proof-grid article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: grid;
  gap: 4px;
}

.hero-card .mini-proof-grid strong {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.hero-card .mini-proof-grid span {
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 143, 59, 0.35), transparent 70%);
  right: -80px;
  top: -70px;
}

.section {
  margin-top: 34px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.traffic-strip {
  background: linear-gradient(135deg, rgba(10, 108, 106, 0.1), rgba(242, 143, 59, 0.14));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3.2vw, 34px);
  display: grid;
  gap: 18px;
}

.traffic-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  font-size: 0.84rem;
}

.logo-marquee {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 14px 8px;
  animation: marquee 30s linear infinite;
}

.logo-track span {
  color: var(--primary-deep);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.proof-cards h3 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  margin-bottom: 6px;
}

.section-head {
  margin-bottom: 16px;
}

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

.quick-nav-grid {
  margin-top: 4px;
}

.quick-nav-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.quick-nav-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 108, 106, 0.36);
  box-shadow: 0 14px 30px rgba(13, 32, 56, 0.14);
}

.quick-nav-card h3 {
  margin: 0 0 8px;
  font-family: "Syne", sans-serif;
}

.quick-nav-card p {
  margin: 0;
  color: var(--muted);
}

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

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

.tier-grid,
.inclusive-grid,
.process-grid {
  align-items: stretch;
}

.tier-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
}

.tier-card h3,
.process-card h3 {
  font-family: "Syne", sans-serif;
  margin-top: 0;
}

.process-card {
  border-left: 4px solid rgba(10, 108, 106, 0.42);
}

.float-card {
  animation: float-gentle 7s ease-in-out infinite;
}

.inclusive-grid .quick-nav-card h3 {
  font-size: 1.12rem;
}

.inclusive-grid .quick-nav-card p {
  font-size: 0.96rem;
}

.card {
  padding: 24px;
}

.card.large {
  padding: 28px;
}

.card h3,
.card h2,
.project-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Syne", sans-serif;
}

.service-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 108, 106, 0.28);
  background: linear-gradient(140deg, rgba(13, 143, 140, 0.15), rgba(242, 143, 59, 0.2));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  animation: pulse-glyph 3.2s ease-in-out infinite;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tilt-card:hover {
  box-shadow: 0 20px 34px rgba(13, 32, 56, 0.18);
}

.live-video-block {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-video {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
}

.brand-video-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.05), rgba(9, 14, 24, 0.82));
  color: #fff;
  display: grid;
  gap: 8px;
}

.brand-video-overlay h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.24rem, 2.2vw, 2rem);
}

.brand-video-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-carousel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.5vw, 24px);
}

.testimonial-slide {
  display: none;
  animation: testimonial-fade 0.45s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.testimonial-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 108, 106, 0.24);
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: linear-gradient(140deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(13, 143, 140, 0.16);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--primary));
}

.check-list.compact {
  gap: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
}

.image-frame {
  min-height: 310px;
  background: linear-gradient(25deg, rgba(10, 108, 106, 0.35), rgba(242, 143, 59, 0.22)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.image-frame-alt {
  background: linear-gradient(25deg, rgba(10, 108, 106, 0.35), rgba(242, 143, 59, 0.22)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.image-services {
  background: linear-gradient(25deg, rgba(10, 108, 106, 0.38), rgba(242, 143, 59, 0.24)),
    url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.image-contact {
  background: linear-gradient(25deg, rgba(10, 108, 106, 0.34), rgba(242, 143, 59, 0.24)),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.image-software {
  background: linear-gradient(25deg, rgba(10, 108, 106, 0.36), rgba(242, 143, 59, 0.2)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.image-ai {
  background: linear-gradient(25deg, rgba(10, 108, 106, 0.4), rgba(242, 143, 59, 0.2)),
    url("https://images.unsplash.com/photo-1677442135968-6bb6c8b9f7f2?auto=format&fit=crop&w=1200&q=80") center / cover;
}

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

.inner-photo-band {
  margin-top: 18px;
}

.inner-photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
}

.inner-photo-tile {
  min-height: 220px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.inner-photo-1 {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.42), rgba(13, 143, 140, 0.2)),
    url("https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1200&q=80");
}

.inner-photo-2 {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.42), rgba(13, 143, 140, 0.2)),
    url("https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=1200&q=80");
}

.inner-photo-3 {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.42), rgba(13, 143, 140, 0.2)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80");
}

.photo-tile {
  min-height: 210px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.photo-team {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.45), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1100&q=80");
}

.photo-mobile {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.45), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=1100&q=80");
}

.photo-software {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.45), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1100&q=80");
}

.photo-ai {
  background-image: linear-gradient(30deg, rgba(12, 21, 40, 0.45), rgba(13, 143, 140, 0.22)),
    url("https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1100&q=80");
}

.inner-page {
  padding-top: 24px;
}

.page-intro {
  padding: clamp(24px, 4vw, 44px);
}

.project-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  padding: 18px;
}

.project-card.feature {
  grid-column: span 2;
}

.project-media {
  min-height: 170px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
}

.media-univibe {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.5), rgba(13, 143, 140, 0.25)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1000&q=80");
}

.media-commerce {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.5), rgba(13, 143, 140, 0.25)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1000&q=80");
}

.media-school {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.5), rgba(13, 143, 140, 0.25)),
    url("https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?auto=format&fit=crop&w=1000&q=80");
}

.media-service {
  background-image: linear-gradient(35deg, rgba(11, 19, 43, 0.5), rgba(13, 143, 140, 0.25)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1000&q=80");
}

.stack {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.case-media {
  min-height: 180px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background-size: cover;
  background-position: center;
}

.case-media-1 {
  background-image: linear-gradient(35deg, rgba(12, 21, 40, 0.5), rgba(13, 143, 140, 0.24)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1100&q=80");
}

.case-media-2 {
  background-image: linear-gradient(35deg, rgba(12, 21, 40, 0.5), rgba(13, 143, 140, 0.24)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1100&q=80");
}

.case-media-3 {
  background-image: linear-gradient(35deg, rgba(12, 21, 40, 0.5), rgba(13, 143, 140, 0.24)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1100&q=80");
}

.case-media-4 {
  background-image: linear-gradient(35deg, rgba(12, 21, 40, 0.5), rgba(13, 143, 140, 0.24)),
    url("https://images.unsplash.com/photo-1607082350899-7e105aa886ae?auto=format&fit=crop&w=1100&q=80");
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.small-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.cta-block {
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
  background: linear-gradient(160deg, rgba(10, 108, 106, 0.12), rgba(242, 143, 59, 0.16));
}

.site-footer {
  margin-top: 28px;
  margin-bottom: 34px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: 12px;
}

.hero-copy,
.hero-card,
.card,
.project-card,
.cta-block,
.page-intro,
.signal-bar,
.traffic-strip {
  overflow: hidden;
}

.site-footer h3 {
  margin: 0 0 6px;
  font-family: "Syne", sans-serif;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--primary-deep);
  font-weight: 700;
}

.tiny {
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
}

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

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse-glyph {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes testimonial-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes orb-drift-1 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, -12px, 0) scale(1.08);
  }
}

@keyframes orb-drift-2 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-14px, 12px, 0) scale(1.05);
  }
}

@keyframes orb-drift-3 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -10px, 0) scale(1.12);
  }
}

@media (max-width: 1024px) {
  .hero,
  .split,
  .contact-grid,
  .cards-3,
  .cards-2,
  .project-card,
  .project-card.feature {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card .mini-proof-grid {
    grid-template-columns: 1fr;
  }

  .float-card {
    animation: none;
  }

  .tilt-card {
    transform: none !important;
  }

  .site-header {
    border-radius: 22px;
    margin-top: 12px;
    padding: 12px 14px;
    gap: 12px;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 95;
    gap: 10px;
  }

  .site-nav a {
    text-align: center;
    background: rgba(13, 143, 140, 0.05);
    border: 1px solid rgba(13, 143, 140, 0.12);
  }

  .site-nav.open {
    display: flex;
    animation: menu-drop 0.22s ease-out;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
  }

  .menu-toggle[aria-expanded="true"] {
    background: linear-gradient(140deg, var(--primary), var(--primary-deep));
    color: #fff;
    border-color: transparent;
  }
}

@media (max-width: 900px) {
  .hero,
  .split,
  .contact-grid,
  .cards-3,
  .cards-2,
  .project-card,
  .project-card.feature,
  .signal-stats {
    grid-template-columns: 1fr;
  }

  .project-media,
  .image-frame {
    min-height: 220px;
  }

  .landing-hero {
    min-height: clamp(360px, 54vh, 520px);
    background-position: 58% center;
  }

  .live-media-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .inner-photo-grid {
    grid-template-columns: 1fr;
  }

  .live-video-block,
  .brand-video {
    min-height: 330px;
  }
}

@media (max-width: 768px) {
  .site-header,
  main,
  .site-footer {
    width: min(1160px, 94vw);
  }

  .site-header {
    top: 8px;
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.12;
    max-width: min(54vw, 250px);
  }

  .hero h1,
  .page-intro h1 {
    line-height: 1.12;
  }

  .cta-row .btn,
  .cta-stack .btn {
    width: 100%;
    min-height: 46px;
  }

  .hero-copy,
  .hero-card,
  .card,
  .project-card,
  .cta-block,
  .page-intro,
  .image-frame,
  .signal-bar {
    border-radius: 18px;
  }

  .process-card {
    border-left-width: 3px;
  }

  .hero-live-tags {
    gap: 6px;
  }

  .hero-live-tags span {
    font-size: 0.72rem;
  }

  .traffic-chips {
    gap: 8px;
  }

  .clarity-links a {
    width: 100%;
    text-align: center;
  }

  .chip {
    width: 100%;
    text-align: center;
  }

  .floating-proof {
    bottom: 78px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .mobile-quick-actions {
    display: grid;
  }

  body {
    padding-bottom: 82px;
  }
}

@media (orientation: portrait) and (max-width: 1024px) {
  .site-header {
    top: 8px;
  }

  .hero,
  .split,
  .contact-grid,
  .cards-3,
  .cards-2,
  .project-card,
  .project-card.feature,
  .signal-stats {
    grid-template-columns: 1fr;
  }
}

@media (orientation: landscape) and (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 6px;
    margin-top: 10px;
  }

  main {
    padding-top: 18px;
  }

  .site-nav {
    top: 62px;
    max-height: calc(100dvh - 76px);
  }

  .hero,
  .split,
  .contact-grid {
    gap: 12px;
  }

  .image-frame,
  .project-media {
    min-height: 180px;
  }

  .floating-proof {
    right: 10px;
    bottom: 10px;
    max-width: min(70vw, 540px);
  }
}

@media (orientation: landscape) and (max-width: 900px) and (max-height: 520px) {
  .mobile-quick-actions {
    position: static;
    margin: 10px auto 0;
    width: min(680px, 95vw);
  }

  body {
    padding-bottom: 18px;
  }

  .floating-proof {
    position: static;
    margin: 8px auto 0;
    max-width: min(680px, 95vw);
  }

  .hero-copy,
  .hero-card,
  .card,
  .project-card,
  .cta-block,
  .page-intro,
  .signal-bar,
  .traffic-strip {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .site-header,
  main,
  .site-footer {
    width: 95vw;
  }

  .site-header {
    gap: 10px;
    padding: 10px;
    top: 6px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    max-width: min(56vw, 220px);
  }

  .menu-toggle {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero-copy,
  .hero-card,
  .card,
  .project-card,
  .cta-block,
  .page-intro,
  .signal-bar,
  .traffic-strip {
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .landing-hero {
    min-height: 340px;
    border-radius: 18px;
  }

  .hero-energy-1,
  .hero-energy-2,
  .hero-energy-3 {
    opacity: 0.78;
  }

  .live-media-wall {
    grid-template-columns: 1fr;
  }

  .live-video-block,
  .brand-video {
    min-height: 270px;
    border-radius: 18px;
  }

  .brand-video-overlay {
    padding: 14px;
  }

  .landing-hero h1 {
    font-size: clamp(1.52rem, 8.2vw, 2.05rem);
  }

  .page-intro h1 {
    font-size: clamp(1.45rem, 7.4vw, 1.9rem);
  }

  .section h2 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .hero-metrics article,
  .signal-stats article {
    padding: 12px;
  }

  .project-media,
  .image-frame {
    min-height: 190px;
  }

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

@media (max-width: 360px) {
  .brand-text {
    max-width: min(58vw, 210px);
  }

  .site-nav {
    padding: 10px;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 0.88rem;
  }
}

@keyframes menu-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1280px) {
  .site-header,
  main,
  .site-footer {
    width: min(1240px, 90vw);
  }

  .hero {
    gap: 30px;
  }

  .hero-copy {
    padding: clamp(30px, 3.2vw, 52px);
  }
}

@media (min-width: 1536px) {
  .site-header,
  main,
  .site-footer {
    width: min(1380px, 88vw);
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .cards-2 {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .scroll-progress {
    transition: none !important;
  }
}
