:root {
  --ink: #101828;
  --text: #344054;
  --muted: #667085;
  --line: #d0d5dd;
  --soft: #f2f4f7;
  --paper: #ffffff;
  --blue: #155eef;
  --blue-dark: #0b3b8f;
  --green: #00856f;
  --amber: #b76e00;
  --footer: #0b1220;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(208, 213, 221, 0.78);
  backdrop-filter: blur(12px);
}

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

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand img {
  width: 142px;
}

.nav-links,
.nav-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.nav-login,
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-login:hover,
.footer-links a:hover,
.contact-panel a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
}

.button-primary {
  background: var(--blue);
  color: white;
}

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

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #1d2939;
}

.button-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.78);
}

.button-light:hover {
  background: white;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #0b1220;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 25, 0.92) 0%, rgba(8, 13, 25, 0.72) 45%, rgba(8, 13, 25, 0.26) 100%),
    url("/assets/dashboard-hero.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

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

.hero .eyebrow {
  color: #9ff7dc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: 3.45rem;
  line-height: 1.05;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1.15;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  gap: 10px;
  margin: 40px 0 0;
}

.hero-facts div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: white;
  font-weight: 800;
}

.trust-band,
.policy-band {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  padding: 34px 0;
}

.trust-grid h2 {
  font-size: 1.5rem;
}

.trust-grid p,
.info-card p,
.section-heading p,
.product-layout p,
.contact-section p,
.legal-page p,
.legal-page li {
  margin: 0;
  color: var(--text);
}

.strong {
  color: var(--ink);
  font-weight: 800;
}

.section-block {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1.04rem;
}

.section-heading.compact {
  max-width: 720px;
}

.card-grid,
.pricing-grid,
.policy-links {
  display: grid;
  gap: 18px;
}

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

.info-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.info-card p + p {
  margin-top: 12px;
}

.product-band {
  background: #eef6ff;
  border-top: 1px solid #c7ddff;
  border-bottom: 1px solid #c7ddff;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  padding: 76px 0;
  align-items: start;
}

.product-layout h2 {
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: white;
  border: 1px solid #c7ddff;
  border-radius: 8px;
}

.feature-list span {
  color: var(--blue);
  font-weight: 900;
}

.price-card {
  border-top: 4px solid var(--blue);
}

.price-line {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.policy-band {
  padding: 72px 0;
}

.policy-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-links a {
  display: block;
  min-height: 150px;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-links a:hover {
  border-color: var(--blue);
}

.policy-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
}

.policy-links small {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  padding: 78px 0;
}

.contact-section h2 {
  margin-bottom: 14px;
}

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

.contact-panel p + p {
  margin-top: 12px;
}

.contact-panel a {
  color: var(--blue-dark);
  font-weight: 750;
}

.site-footer {
  background: var(--footer);
  color: #cbd5e1;
  padding: 42px 0;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-shell img {
  width: 136px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-shell p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #cbd5e1;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: white;
}

.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  padding: 16px;
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
}

.cookie-notice a {
  color: var(--blue-dark);
  font-weight: 750;
}

.cookie-notice button {
  min-width: 90px;
  min-height: 40px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.legal-hero {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: 64px 0 40px;
}

.legal-hero .section-shell {
  max-width: 900px;
}

.legal-hero h1 {
  color: var(--ink);
  font-size: 2.7rem;
}

.legal-page {
  max-width: 900px;
  padding: 48px 0 78px;
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.legal-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-page li + li {
  margin-top: 8px;
}

.legal-note {
  margin-top: 20px;
  padding: 16px;
  border-left: 4px solid var(--blue);
  background: #eef6ff;
}

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

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .trust-grid,
  .card-grid.three,
  .pricing-grid,
  .policy-links,
  .product-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-layout,
  .contact-section {
    gap: 28px;
  }

  .policy-links a {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 112px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-login {
    display: none;
  }

  .button {
    padding: 10px 13px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 74vh;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 13, 25, 0.94) 0%, rgba(8, 13, 25, 0.76) 100%),
      url("/assets/dashboard-hero.png") center right / cover no-repeat;
  }

  .hero-content {
    padding: 70px 0 52px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .section-block,
  .policy-band,
  .contact-section,
  .product-layout {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-notice button {
    width: 100%;
  }
}
