/* Danzo landing page
   Part of the Move Groove family — shares its warm neutral background,
   rounded card language and Hanken Grotesk type, in Danzo's own navy/orange/
   purple/green palette per the Danzo brand board: navy #17233a (logo/"D"),
   accent purple #6d31ff (icon bars, interactive accents), deep purple #6235f5
   (section labels, e.g. "MISSION"/"VALUES"), lavender #b8a9ff (secondary
   tracked-caps labels on navy, e.g. "MANAGER" under the app icon wordmark),
   orange #ff8614 and green #46d99b (icon bars). */

:root {
  --navy: #17233a;
  --navy-2: #24365a;
  --orange: #ff8614;
  --purple: #6d31ff;
  --purple-deep: #6235f5;
  --lavender: #b8a9ff;
  --green: #46d99b;
  --bg: #faf9f6;
  --card: #ffffff;
  --muted: #5b6472;
  --border: #e9e6e0;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 20px 45px -20px rgba(23, 35, 58, 0.25);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: "Hanken Grotesk", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

section {
  padding: 96px 0;
}

@media (max-width: 767px) {
  section {
    padding: 64px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: rgba(98, 53, 245, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

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

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head.left {
  margin: 0 0 48px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(23, 35, 58, 0.55);
}

.btn-primary:hover {
  background: #0f1830;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
}

.brand img {
  height: 32px;
  width: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.lang-btn) {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  opacity: 0.75;
}

.nav-links a:hover {
  opacity: 1;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-btn:hover {
  color: var(--navy);
}

.lang-btn.is-active {
  background: var(--navy);
  color: #fff;
}

.nav-lang-item {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
  }

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

  .nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-lang-item {
    display: block;
    padding-top: 16px !important;
  }

  .nav-cta > .lang-switch {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(109, 49, 255, 0.16), rgba(109, 49, 255, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 134, 20, 0.14), rgba(255, 134, 20, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-note .avatars {
  display: flex;
}

.hero-note .avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: inline-block;
}

.hero-note .avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
}

/* Mock dashboard card */

.mock-dashboard {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  border: 1px solid var(--border);
}

.mock-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-dashboard-top .dots {
  display: flex;
  gap: 6px;
}

.mock-dashboard-top .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.mock-dashboard-title {
  font-weight: 800;
  font-size: 0.95rem;
}

.mock-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(70, 217, 155, 0.15);
  color: var(--green);
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}

.mock-row:first-of-type {
  border-top: none;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-dot.purple { background: var(--purple); }
.mock-dot.orange { background: var(--orange); }
.mock-dot.green { background: var(--green); }

.mock-row-text {
  flex: 1;
  min-width: 0;
}

.mock-row-text .t {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.mock-row-text .s {
  font-size: 0.78rem;
  color: var(--muted);
}

.mock-cap {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mock-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--purple), rgba(109, 49, 255, 0.35));
}

.mock-checkin {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 168px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 18px 36px -14px rgba(23, 35, 58, 0.55);
}

@media (max-width: 480px) {
  .mock-checkin {
    right: -8px;
    bottom: -20px;
    width: 140px;
  }
}

.qr {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 10px;
}

.qr svg {
  width: 100%;
  height: 100%;
}

.mock-checkin .t {
  font-weight: 800;
  font-size: 0.85rem;
}

.mock-checkin .s {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.mock-checkin .check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
}

/* Logos / trust strip */

.trust {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-inner strong {
  color: var(--navy);
}

/* Split feature section */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.split-card .icon-badge {
  margin-bottom: 20px;
}

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 2px 0 18px;
}

.platform-tag.light {
  background: rgba(23, 35, 58, 0.06);
  color: var(--navy);
}

.platform-tag.dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--lavender);
}

.split-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.split-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}

.split-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.split-card.dark {
  background: var(--navy);
  color: #fff;
}

.split-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.split-card.dark li {
  color: #fff;
}

/* Icon badge */

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge.purple { background: rgba(109, 49, 255, 0.1); color: var(--purple); }
.icon-badge.orange { background: rgba(255, 134, 20, 0.1); color: var(--orange); }
.icon-badge.green { background: rgba(70, 217, 155, 0.15); color: var(--green); }
.icon-badge.navy { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* App icon tile — the real Danzo / Danzo Manager app icons, used wherever
   the site represents the two actual apps rather than a generic feature. */

.app-icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  margin-bottom: 20px;
}

.app-icon-tile img {
  width: 100%;
  height: 100%;
  display: block;
}

.app-icon-tile.light {
  border: 1px solid var(--border);
}

.app-icon-tile.dark {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Feature grid */

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

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.feature-card h3 {
  margin: 16px 0 8px;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Whitelabel band */

.band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .band {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }
}

.band p {
  color: rgba(255, 255, 255, 0.72);
}

.band-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 18px;
}

.band-visual {
  display: flex;
  justify-content: center;
  gap: -12px;
}

.brand-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.88rem;
}

.band-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 260px;
}

.band-visual-stack .brand-chip:nth-child(2) { margin-left: 24px; }
.band-visual-stack .brand-chip:nth-child(3) { margin-left: 48px; }

@media (max-width: 900px) {
  .band-visual-stack {
    margin: 0 auto;
  }

  .band-visual-stack .brand-chip:nth-child(2),
  .band-visual-stack .brand-chip:nth-child(3) {
    margin-left: 0;
  }
}

/* Values strip */

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

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(98, 53, 245, 0.08);
  color: var(--purple-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-item h4 {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.value-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* CTA */

.cta {
  background: linear-gradient(135deg, #f3edff, #fff3e8);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}

@media (max-width: 767px) {
  .cta {
    padding: 40px 24px;
  }
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  max-width: 520px;
  margin: 0 auto 32px;
}

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

/* Footer */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand img {
  height: 26px;
  width: 26px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--navy);
}

.footer-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
