:root {
  --ink: #1c2430;
  --muted: #5d6878;
  --line: #dde3eb;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --soft-2: #edf5f2;
  --brand: #d92332;
  --brand-dark: #a91522;
  --green: #16745d;
  --gold: #b87514;
  --shadow: 0 18px 45px rgba(28, 36, 48, 0.12);
}

* {
  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.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(221, 227, 235, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 190px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.tool-letter {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #ff36b0, #6b35ff);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

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

.button.brand-button {
  border-color: var(--brand);
  background: var(--brand);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 660px;
  margin: 0 auto;
  padding: 72px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 35, 50, 0.12), transparent 38%),
    linear-gradient(160deg, #ffffff, #eef4f7);
  box-shadow: var(--shadow);
}

.brand-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}

.dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 34px;
}

.dash-row,
.metric,
.tool-preview {
  border: 1px solid rgba(221, 227, 235, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(28, 36, 48, 0.08);
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.dash-title {
  font-weight: 800;
}

.dash-pill {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green);
  background: #dff1ec;
  font-size: 0.8rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric {
  min-height: 132px;
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 1.55rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tool-preview {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
}

.tool-preview img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-right: 18px;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

.tool-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
}

.tool-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
}

.band {
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px 0;
}

.band p {
  margin: 10px 0 0;
  color: #c9d1dc;
}

.page-hero {
  padding: 84px 0 54px;
  background: var(--soft);
}

.page-hero .lead {
  margin-bottom: 0;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin-top: 36px;
  font-size: 1.7rem;
}

.content p,
.content li {
  color: var(--muted);
}

.content a {
  color: var(--brand);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
}

.footer-grid h3 {
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.subfooter {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

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

.notice {
  border-left: 4px solid var(--gold);
  background: #fff8eb;
  padding: 16px 18px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 16px;
  }

  .hero,
  .grid.two,
  .grid.three,
  .band .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: auto;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .container,
  .hero,
  .footer-grid {
    width: min(100% - 28px, 1120px);
  }

  .dashboard {
    padding: 18px;
  }

  .metric-grid,
  .tool-card,
  .tool-preview {
    grid-template-columns: 1fr;
  }
}
