:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #667587;
  --line: #d8e0e8;
  --panel: #ffffff;
  --soft: #f4f7fa;
  --dark: #111820;
  --green: #20834e;
  --blue: #2457d6;
  --amber: #b7791f;
  --shadow: 0 22px 70px rgba(21, 32, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fb;
  color: var(--ink);
  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;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(247, 249, 251, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--ink);
}

.nav-cta,
.secondary-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 760;
}

.nav-cta,
.secondary-button {
  border: 1px solid var(--line);
  background: var(--panel);
}

.primary-button {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  min-height: calc(100vh - 76px);
  padding: 68px 5vw 84px;
}

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

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

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

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: #405063;
  font-size: clamp(18px, 2vw, 23px);
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #536273;
  font-size: 14px;
  font-weight: 700;
}

.product-visual {
  position: relative;
  min-height: 520px;
}

.terminal-window {
  overflow: hidden;
  border-radius: 14px;
  background: var(--dark);
  color: #d9f3df;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f2c35d;
}

.window-bar span:first-child {
  background: #e56b64;
}

.window-bar span:last-child {
  background: #56c271;
}

pre {
  margin: 0;
  padding: 28px;
  white-space: pre-wrap;
  color: #cce9d2;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.65;
}

.console-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(430px, 92%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.console-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 760;
}

.console-card-header strong {
  color: var(--green);
}

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

.metric-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.section,
.trust-section {
  padding: 86px 5vw;
  border-top: 1px solid var(--line);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 26px;
}

.step-number {
  display: grid;
  place-items: center;
  width: max-content;
  min-width: 44px;
  height: 38px;
  padding: 0 10px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: #e8f4ec;
  color: var(--green);
  font-weight: 900;
}

.steps p,
.trust-section p,
.team-copy p {
  margin: 0;
  color: #536273;
  font-size: 17px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  background: #ffffff;
}

.trust-section > div:first-child p {
  max-width: 630px;
  margin-top: 18px;
  font-size: 19px;
}

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

ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #4c5a68;
}

li + li {
  margin-top: 9px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.team-copy {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.cookie-banner p {
  margin: 0;
  color: #526273;
  font-size: 14px;
}

.cookie-banner p a {
  color: var(--blue);
  font-weight: 760;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

button.primary-button {
  border: 0;
  cursor: pointer;
}

button.secondary-button {
  cursor: pointer;
}

.legal-main {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 86px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.legal-card {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.legal-card section {
  display: grid;
  gap: 10px;
}

.legal-card h2 {
  font-size: 26px;
}

.legal-card p,
.legal-card li {
  color: #4c5b6a;
  font-size: 16px;
}

.legal-card p {
  margin: 0;
}

.legal-meta {
  color: var(--muted);
  font-weight: 720;
}

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

  .hero,
  .trust-section,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-visual {
    min-height: 470px;
  }

  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }

  .brand {
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .section,
  .trust-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-visual {
    min-height: auto;
  }

  .console-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}
