:root {
  --ink: #102a43;
  --muted: #52606d;
  --line: #d9e2ec;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --green: #2f9e7e;
  --gold: #f0b429;
  --red: #c94735;
  --deep: #071923;
  --shadow: 0 18px 60px rgba(7, 25, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: rgba(7, 25, 35, 0.84);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-action {
  background: var(--gold);
  color: #1f2933;
}

.primary-action {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 158, 126, 0.24);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.primary-action:hover,
.secondary-action:hover,
.header-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.header-action:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 84svh);
  align-items: center;
  padding: 118px clamp(20px, 6vw, 86px) 74px;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(7, 25, 35, 0.92), rgba(7, 25, 35, 0.72) 34%, rgba(7, 25, 35, 0.12) 72%),
    url("assets/djate-hero-preview.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6.5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.section {
  padding: 82px clamp(20px, 6vw, 86px);
}

.band-light {
  background: var(--mist);
}

.band-dark {
  background: var(--deep);
  color: #ffffff;
}

.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.band-dark .section-heading p,
.band-dark p {
  color: rgba(255, 255, 255, 0.78);
}

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

.benefit-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: #e8f7f0;
  color: var(--green);
  font-weight: 850;
}

.benefit-card h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.22;
}

.benefit-card p,
.steps p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 22px;
}

.steps strong {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
}

.proof-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

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

.proof-list p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-weight: 750;
}

.contact-section {
  background: #ffffff;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-panel .secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: var(--mist);
}

.full {
  width: 100%;
  margin-bottom: 12px;
}

.small-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 82svh;
    background-position: 58% center;
  }

  .benefit-grid,
  .split-section,
  .proof-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 78svh;
    padding: 88px 18px 34px;
    background-image:
      linear-gradient(90deg, rgba(7, 25, 35, 0.94), rgba(7, 25, 35, 0.72)),
      url("assets/djate-hero-preview.png");
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 3.05rem);
    line-height: 1;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .trust-row {
    margin-top: 18px;
    gap: 8px;
    font-size: 0.92rem;
  }

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

  .section {
    padding: 60px 18px;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
