:root {
  --bg: #050505;
  --card: #111111;
  --card-2: #171717;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f4f4;
  --muted: #9b9b9b;
  --orange: #ff6b2c;
  --orange-2: #ff8a4a;
  --radius: 28px;
  --header-h: 76px;
}

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

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(255, 107, 44, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 140, 60, 0.08), transparent 50%);
  z-index: 0;
}

.header,
main,
footer {
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-bottom-color: var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 28px;
  width: auto;
}

.brand-mark {
  height: 36px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}

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

.nav a {
  font-size: 14px;
  color: #cfcfcf;
  transition: color 0.2s;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff !important;
  font-weight: 600;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-btn span {
  width: 16px;
  height: 1.5px;
  background: #fff;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 48px 0 80px;
  position: relative;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: min(520px, 100%);
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 60px rgba(255, 107, 44, 0.28));
  animation: float 9s ease-in-out infinite;
}

.eyebrow {
  color: var(--orange-2);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

h1,
h2 {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.accent {
  color: var(--orange);
}

.lead,
.muted,
.card p,
.team-meta p,
.chat-note {
  color: var(--muted);
}

.lead {
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.hero-note {
  color: #7d7d7d;
  font-size: 14px;
}

.orb {
  position: absolute;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  animation: float 9s ease-in-out infinite;
}

.orb-ico {
  width: 170px;
  right: 36%;
  top: 12px;
  z-index: 0;
}

.split,
.chat {
  position: relative;
  z-index: 1;
}

.orb-cube {
  width: 220px;
  left: -40px;
  bottom: -60px;
}

.orb-amber {
  width: 200px;
  right: -20px;
  top: 0;
}

.orb-jpg {
  mix-blend-mode: screen;
}

.orb-audience {
  width: 180px;
  right: -30px;
  top: 20px;
}

.orb-contact {
  width: 320px;
  right: -80px;
  top: -80px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  margin-bottom: 40px;
  max-width: 820px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 107, 44, 0.45);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 18px;
}

.cards-3,
.cards-4,
.steps,
.team-grid {
  display: grid;
  gap: 16px;
}

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

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

.card,
.chat,
.team-card,
.photo-card {
  background: linear-gradient(180deg, #141414, #0e0e0e);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.chat {
  padding: 28px;
}

.card:hover {
  border-color: rgba(255, 107, 44, 0.28);
}

.statement {
  margin-top: 36px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split .muted {
  margin-top: 18px;
  font-size: 17px;
}

.chat-label,
.chat-note {
  font-size: 14px;
}

.chat-label {
  margin-bottom: 16px;
  color: var(--orange-2);
}

.bubble {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.chat-note {
  margin-top: 16px;
}

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.flow-node {
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.accent-node {
  background: rgba(255, 107, 44, 0.12);
  border-color: rgba(255, 107, 44, 0.4);
  color: var(--orange-2);
}

.flow-line {
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.card-wide {
  grid-column: 1 / -1;
}

.step-num {
  display: block;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: #d6d6d6;
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.example-grid .muted {
  margin-top: 18px;
  font-size: 17px;
}

.photo-card {
  overflow: hidden;
}

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

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline li {
  background: #111;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.timeline span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.timeline h3 {
  margin: 10px 0;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  overflow: hidden;
}

.team-photo {
  height: 300px;
  background: transparent;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.team-meta {
  padding: 20px;
}

.role {
  color: var(--orange-2) !important;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact {
  padding-top: 40px;
  padding-bottom: 120px;
  text-align: center;
}

.contact h2 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--orange);
  margin-bottom: 28px;
}

.contact-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-pill {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #efefef;
  color: #111;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: #777;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

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

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

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

@media (max-width: 980px) {
  .cards-3,
  .cards-4,
  .steps,
  .team-grid,
  .timeline,
  .split,
  .example-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-wide {
    grid-column: auto;
  }

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

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(340px, 70vw);
  }

  .photo-card img {
    height: 300px;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 20px 22px;
    gap: 14px;
  }

  .nav.open {
    display: flex;
    align-items: stretch;
  }

  .nav a {
    padding: 10px 4px;
  }

  .nav-cta {
    text-align: center;
  }

  .menu-btn {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .orb {
    display: none;
  }

  .cards-3,
  .cards-4,
  .steps,
  .team-grid,
  .timeline,
  .split,
  .example-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-visual img {
    width: min(280px, 78vw);
  }

  .flow-line {
    width: 18px;
  }
}
