/* The Design 24 — visual system derived from the Sasly template kit */
:root {
  --primary: #000000;
  --secondary: #54595f;
  --text: #696969;
  --accent: #00a1fc;
  --white: #ffffff;
  --badge-bg: rgba(0, 161, 252, 0.1);
  --pink: #d197ff;
  --pink-bg: rgba(209, 151, 255, 0.1);
  --green: #00df8d;
  --green-bg: rgba(0, 223, 141, 0.1);
  --info-bg: #e5f5ff;
  --border: rgba(16, 16, 16, 0.1);
  --footer-text: #bbbbbb;
  --icon-bg: #2a2a2a;
  --footer-border: rgba(255, 255, 255, 0.1);
  --card-shadow: 10px 4px 60px rgba(193, 193, 193, 0.25);
  --heading: "Plus Jakarta Sans", sans-serif;
  --body: Manrope, sans-serif;
  --container: 1314px;
  --radius: 10px;
  --radius-sm: 8px;
  --header-h: 92px;
}

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

html {
  scroll-behavior: smooth;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body > *:not(.cursor) {
  max-width: 100%;
}

body {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, p, .lead {
  overflow-wrap: break-word;
}

h1, .h1 {
  font-family: var(--heading);
  font-size: 85px;
  font-weight: 700;
  line-height: 100px;
  color: var(--primary);
}

h2, .h2 {
  font-family: var(--heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 65px;
  color: var(--primary);
}

h2.light {
  font-weight: 400;
}

h3, .h3 {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  color: var(--primary);
}

h4, .h4 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  color: var(--primary);
}

h5, .h5 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--primary);
}

h6, .h6 {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: var(--primary);
}

.lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 18px 35px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn .arrow {
  font-size: 14px;
  letter-spacing: -1px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(5px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--accent);
  background: var(--badge-bg);
  border-radius: 50px;
  padding: 6px 16px;
}

.badge-light {
  background: var(--white);
  color: var(--primary);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  width: 100%;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, transform 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(5, 10, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}

.logo-word span {
  color: var(--accent);
}

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

.nav a {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: var(--white);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--accent);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 53px;
  height: 53px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: #050a1c url("../assets/images/bg-hero.png") center center / cover no-repeat;
  padding: 200px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero-title {
  max-width: 920px;
  width: 100%;
  margin: 0 auto 22px;
  color: var(--white);
  font-size: 52px;
  line-height: 65px;
  font-weight: 700;
  white-space: normal;
}

.hero-text {
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-frame {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #111318;
  text-align: left;
  min-width: 0;
}

.editor {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 200px;
  min-height: 460px;
  color: #c9cdd6;
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.4;
  min-width: 0;
}

.editor-side,
.editor-props {
  background: #16181e;
  padding: 16px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.editor-props {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.editor-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.editor-tabs span {
  padding: 6px 10px;
  border-radius: 6px;
  background: #22252d;
  color: #8b909c;
}

.editor-tabs .on {
  background: #2a2e38;
  color: #fff;
}

.layer {
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.layer.on {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.layer.indent {
  padding-left: 22px;
  color: #8b909c;
}

.prop-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #8b909c;
}

.prop-row b {
  color: #e8eaef;
  font-weight: 500;
  background: #22252d;
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 72px;
  text-align: right;
}

.editor-canvas {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 161, 252, 0.35), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(209, 151, 255, 0.28), transparent 32%),
    linear-gradient(180deg, #140b2e 0%, #1a0a3a 50%, #0b1024 100%);
  padding: 28px 32px 0;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.mini-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 36px;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 600;
}

.mini-nav ul {
  display: flex;
  gap: 16px;
  opacity: 0.8;
}

.mini-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
}

.mini-hero h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  max-width: min(420px, 100%);
  margin: 0 auto 10px;
  text-align: center;
}

.mini-hero p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 360px;
  margin: 0 auto 18px;
  font-size: 12px;
  line-height: 1.5;
}

.mini-hero .dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.orb {
  border-radius: 50%;
}

.orb.b { width: 42px; height: 42px; background: #3b9be0; }
.orb.g { width: 32px; height: 32px; background: #2dc653; }
.orb.n { width: 22px; height: 22px; background: #152238; }
.orb.a { width: 16px; height: 16px; background: #f5b942; }

.wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  height: 42px;
  margin-bottom: 18px;
}

.wave i {
  display: block;
  width: 10px;
  border-radius: 8px;
  background: #14d4a5;
  animation: wave 1.2s ease-in-out infinite;
}

.wave i:nth-child(1) { height: 16px; animation-delay: 0s; }
.wave i:nth-child(2) { height: 28px; animation-delay: .15s; }
.wave i:nth-child(3) { height: 40px; animation-delay: .3s; }
.wave i:nth-child(4) { height: 22px; animation-delay: .45s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.7); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.mini-dash {
  background: #12141a;
  border-radius: 12px 12px 0 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 10px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
}

.dash-card {
  background: #1b1e27;
  border-radius: 10px;
  padding: 14px;
  min-height: 110px;
}

.dash-card span {
  display: block;
  color: #8b909c;
  margin-bottom: 8px;
}

.dash-card strong {
  color: #fff;
  font-family: var(--heading);
  font-size: 22px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 54px;
  margin-top: 10px;
}

.bars i {
  display: block;
  width: 10px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 130px 0;
}

.section-sm {
  padding: 70px 0;
}

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

.section-head.center {
  text-align: center;
}

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

.section-head h2 {
  max-width: min(720px, 100%);
}

.section-head.center h2 {
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-width: 0;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0 18px;
}

.stat-value {
  font-family: var(--heading);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.stat-label {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  color: var(--primary);
  background: #f6f7fb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 16px;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 22px 0 28px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.check-list i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.about-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-photo img {
  width: 100%;
  height: 515px;
  object-fit: cover;
}

/* Marquee */
.marquee-wrap {
  padding: 40px 0 10px;
  overflow: hidden;
  text-align: center;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-wrap .badge {
  margin-bottom: 28px;
}

.marquee {
  display: flex;
  gap: 56px;
  width: max-content;
  max-width: none;
  animation: marquee 28s linear infinite;
  align-items: center;
}

.marquee span {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.55;
  white-space: nowrap;
}

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

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  min-width: 0;
}

.split-visual img {
  width: 100%;
  border-radius: 16px;
}

.split-copy .badge {
  margin-bottom: 16px;
}

.split-copy h2 {
  margin-bottom: 18px;
}

.split-copy .lead {
  margin-bottom: 22px;
}

.feature-lines {
  display: grid;
  gap: 22px;
  margin: 28px 0 32px;
}

.feature-lines article {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.feature-lines h4 {
  margin-bottom: 4px;
}

/* Services / cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 30px 27px;
  box-shadow: var(--card-shadow);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 10px 18px 60px rgba(193, 193, 193, 0.45);
}

.icon-card .icon-bubble {
  transition: transform 0.35s ease, background 0.25s ease, color 0.25s ease;
}

.icon-card:hover .icon-bubble {
  transform: scale(1.08) rotate(-8deg);
  background: var(--accent);
  color: #fff;
}

.icon-card .more {
  transition: color 0.2s ease, transform 0.25s ease;
}

.icon-card:hover .more {
  color: var(--accent);
}

.icon-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--info-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.icon-bubble svg {
  width: 30px;
  height: 30px;
}

.icon-card h3 {
  margin-bottom: 10px;
}

.icon-card p {
  margin-bottom: 16px;
  min-height: 60px;
}

.icon-card .more {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icon-card .more:hover {
  color: var(--accent);
}

.tint-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tint-card {
  border-radius: 16px;
  padding: 36px 30px;
  min-height: 210px;
}

.tint-card.blue { background: var(--info-bg); }
.tint-card.pink { background: var(--pink-bg); }
.tint-card.green { background: var(--green-bg); }

.tint-card .icon-bubble {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background: var(--white);
}

.tint-card.pink .icon-bubble { color: var(--pink); }
.tint-card.green .icon-bubble { color: var(--green); }

.tint-card h3 {
  margin-bottom: 10px;
}

.features-bg {
  background: #f7fbff;
}

.features-bg .section-head h2 {
  color: var(--primary);
}

/* Portfolio */
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1220;
  display: block;
  min-height: 280px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}

.work-card:hover img {
  transform: scale(1.07);
}

.work-card.tall {
  grid-row: span 2;
  min-height: 584px;
}

.work-card.tall img {
  min-height: 584px;
}

.work-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 28, 0.92));
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
}

.work-card:hover .work-meta {
  transform: translateY(0);
}

@media (hover: none) {
  .work-meta {
    transform: none;
  }
}

.work-meta .tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-meta h3 {
  color: #fff;
  margin-bottom: 4px;
}

.work-meta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 24px;
}

.work-stack {
  display: grid;
  gap: 24px;
}

/* Approach / process dark */
.dark-band {
  background: #050a1c url("../assets/images/testimonial-bg.jpg") center / cover no-repeat;
  color: #fff;
}

.dark-band h2,
.dark-band .h2 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-card {
  background: #0d0d0d;
  border-radius: 12px;
  padding: 28px 22px 24px;
  min-height: 230px;
}

.process-card .num {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 26px;
}

/* FAQ */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 22px 0;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: var(--primary);
  cursor: pointer;
}

.faq-item .icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 40px 0 0;
  color: var(--text);
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .answer {
  max-height: 220px;
  opacity: 1;
  padding: 0 40px 20px 0;
}

.faq-item.is-open .icon {
  color: var(--accent);
}

/* CTA band */
.cta-band {
  background: #05060d url("../assets/images/footer-bg.jpg") center / cover no-repeat;
  padding: 110px 15px;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  max-width: 760px;
  margin: 0 auto 28px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #070b14;
  color: var(--footer-text);
  position: relative;
}

.footer-main {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-brand p {
  margin: 16px 0 22px;
  max-width: 260px;
  color: var(--footer-text);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
}

.socials a:hover {
  background: var(--accent);
}

.footer-grid h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.subscribe p {
  margin-bottom: 14px;
}

.subscribe form {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.subscribe input {
  flex: 1;
  border: 0;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.subscribe button {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.subscribe button:hover {
  background: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: #fff;
}

.to-top {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 161, 252, 0.35);
}

.to-top:hover {
  background: var(--primary);
}

/* Page banner */
.page-banner {
  background: #050a1c url("../assets/images/page-banner.jpg") center / cover no-repeat;
  padding: 180px 0 80px;
  text-align: center;
  color: #fff;
}

.page-banner h1 {
  color: #fff;
  font-size: 52px;
  line-height: 65px;
}

.crumbs {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.crumbs a:hover {
  color: var(--accent);
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.info-card {
  background: var(--info-bg);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.info-card .icon-bubble {
  margin: 0 auto 16px;
  background: #fff;
}

.info-card h3 {
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 36px 32px;
}

.form-card h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--primary);
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

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

.form-note {
  font-size: 14px;
  margin: 8px 0 16px;
}

.form-success {
  display: none;
  background: var(--info-bg);
  border-radius: 10px;
  padding: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.form-success.is-visible {
  display: block;
}

.contact-aside img {
  width: 100%;
  border-radius: 12px;
  margin-top: 22px;
  height: 170px;
  object-fit: cover;
}

/* Service detail */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  scroll-margin-top: 110px;
}

.service-block:last-child {
  border-bottom: 0;
}

.service-index {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip-list span {
  background: var(--info-bg);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 28px;
  line-height: 36px;
  margin: 32px 0 12px;
}

.legal p {
  margin-bottom: 14px;
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
}

/* Responsive — laptop 13/14" */
@media (max-width: 1314px) {
  .hero-title,
  .page-banner h1,
  h2, .h2 {
    font-size: 44px;
    line-height: 56px;
  }
}

@media (max-width: 1200px) {
  .nav {
    gap: 22px;
  }

  .nav a {
    font-size: 16px;
  }

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

  .editor {
    grid-template-columns: 180px 1fr 0px;
  }

  .editor-props {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    background: #0b1020;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  body.nav-open .mobile-nav {
    display: block;
  }

  .mobile-nav a {
    display: block;
    color: #fff;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 18px;
    padding: 10px 8px;
  }

  .mobile-nav a:hover,
  .mobile-nav a.is-active {
    color: var(--accent);
  }

  .mobile-nav .btn {
    width: 100%;
    margin-top: 10px;
  }

  h1, .h1 {
    font-size: 55px;
    line-height: 70px;
  }

  h2, .h2,
  .hero-title,
  .page-banner h1 {
    font-size: 28px;
    line-height: 35px;
  }

  .section {
    padding: 90px 0;
  }

  .about-grid,
  .split,
  .work-grid,
  .contact-layout,
  .service-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .work-card.tall,
  .work-card.tall img,
  .about-photo img {
    min-height: 360px;
    height: 360px;
  }

  .cards-3,
  .tint-cards,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 160px 0 70px;
  }

  .page-banner {
    padding: 150px 0 70px;
  }

  .editor-side {
    display: none;
  }

  .editor {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stat-value {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  h1, .h1,
  .hero-title,
  .page-banner h1 {
    font-size: 32px;
    line-height: 42px;
  }

  h2, .h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .hero {
    padding: 150px 0 70px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 26px;
    padding: 0 6px;
  }

  .mini-nav ul,
  .mini-cta {
    display: none;
  }

  .editor-canvas {
    padding: 22px 16px 0;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .btn {
    padding: 18px 20px;
  }

  .cards-3,
  .tint-cards,
  .contact-cards,
  .process-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-photo img,
  .work-card img,
  .work-card.tall img {
    height: 280px;
    min-height: 280px;
  }

  .mini-hero h3 {
    font-size: 18px;
    max-width: 100%;
  }

  .hero-frame,
  .editor,
  .editor-canvas,
  .split,
  .about-grid,
  .work-grid,
  .container,
  .section-head,
  .section-head h2 {
    max-width: 100%;
    min-width: 0;
  }

  .marquee-wrap {
    width: 100%;
    max-width: 100%;
  }

  .mini-dash {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 80px 15px;
  }

  .section-head h2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title,
  h1, .h1,
  .page-banner h1 {
    font-size: 28px;
    line-height: 36px;
  }

  h2, .h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .featured-inner,
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  max-width: none;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.cursor.is-on {
  opacity: 1;
}

.cursor.is-grow {
  width: 36px;
  height: 36px;
}

/* Motion — page load */
.hero-title {
  animation: rise 0.9s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-text {
  animation: rise 0.9s cubic-bezier(.22, 1, .36, 1) 0.1s both;
}

.hero-actions {
  animation: rise 0.9s cubic-bezier(.22, 1, .36, 1) 0.2s both;
}

.hero-frame {
  animation: rise 1s cubic-bezier(.22, 1, .36, 1) 0.32s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.orb {
  animation: float 4.5s ease-in-out infinite;
}

.orb.g { animation-delay: 0.4s; }
.orb.b { animation-delay: 0.8s; }
.orb.a { animation-delay: 1.2s; }

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

.bars i {
  transform-origin: bottom;
  animation: bar-in 1.1s cubic-bezier(.22, 1, .36, 1) both;
}

.bars i:nth-child(1) { animation-delay: 0.7s; }
.bars i:nth-child(2) { animation-delay: 0.8s; }
.bars i:nth-child(3) { animation-delay: 0.9s; }
.bars i:nth-child(4) { animation-delay: 1s; }
.bars i:nth-child(5) { animation-delay: 1.1s; }
.bars i:nth-child(6) { animation-delay: 1.2s; }

@keyframes bar-in {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.layer {
  transition: background 0.35s ease, color 0.35s ease;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

.tint-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tint-card:hover {
  transform: translateY(-6px);
}

.process-card {
  transition: transform 0.35s ease, background 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  background: #161616;
}

.split-visual img {
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.split:hover .split-visual img {
  transform: scale(1.03);
}

.about-photo img {
  transition: transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.about-photo:hover img {
  transform: scale(1.04);
}

/* Featured Stream24 */
.featured {
  background: #070b14;
  padding: 110px 0;
  overflow: hidden;
}

.featured-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.featured-copy .badge {
  margin-bottom: 18px;
}

.featured-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14d4a5;
  margin-bottom: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14d4a5;
  box-shadow: 0 0 0 0 rgba(20, 212, 165, 0.6);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 212, 165, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(20, 212, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 212, 165, 0); }
}

.featured-copy h2 {
  color: #fff;
  margin-bottom: 16px;
}

.featured-copy .lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.featured-copy .chip-list span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.featured-visual {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.featured-visual img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.featured-visual:hover img {
  transform: scale(1.04);
}

.btn-green {
  background: #14d4a5;
  color: #06281f;
}

.btn-green:hover {
  background: #fff;
  color: #000;
}

/* Case study */
.case-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.case-hero img {
  width: 100%;
  border-radius: 16px;
  background: #000;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.case-grid img {
  width: 100%;
  border-radius: 16px;
  background: #0d1220;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0;
}

.case-meta div span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.case-meta div strong {
  font-family: var(--heading);
  color: var(--primary);
  font-size: 18px;
}

@media (max-width: 1024px) {
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor {
    display: none;
  }
}
