:root {
  --ink: #111111;
  --ink-soft: #4d4d4d;
  --ink-faint: #727272;
  --paper: #f6f2eb;
  --paper-strong: #efe9de;
  --paper-line: rgba(17, 17, 17, 0.1);
  --night: #141414;
  --night-soft: #1d1d1d;
  --night-line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --green: #2071F5;
  --green-soft: rgba(32, 113, 245, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  --radius: 28px;
  --radius-sm: 18px;
  --shell: min(1280px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background: #151515;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.announcement-bar {
  background: #1c1c1c;
  color: rgba(255, 255, 255, 0.86);
  min-height: 46px;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2071F5;
  box-shadow: 0 0 0 6px rgba(32, 113, 245, 0.12);
}

.announcement-logo {
  height: 0.85em;
  width: auto;
  vertical-align: -0.05em;
  margin: 0 3px;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(21, 21, 21, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 28px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: end;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.main-nav a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

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

.hero {
  background:
    radial-gradient(circle at 50% 18%, rgba(32, 113, 245, 0.18), transparent 28%);
  color: var(--white);
  padding: 64px 0 84px;
}

.hero-shell {
  display: grid;
  gap: 56px;
}

.hero-copy {
  max-width: 940px;
  text-align: center;
  margin: 0 auto;
}

.eyebrow,
.section-label,
.workflow-index,
.stage-kicker,
.paper-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(32, 113, 245, 0.12);
  color: #478AEF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0 0 20px;
  opacity: 0.9;
}

.eyebrow {
  color: #478AEF;
  margin: 0 0 18px;
}

.hero h1,
.section-intro h2,
.workflow-copy h3,
.stage-panel-primary h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(48px, 5.6vw, 64px);
  max-width: 900px;
  margin: 0 auto;
}

.hero-body {
  max-width: 780px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.light-link {
  color: rgba(255, 255, 255, 0.82);
}

.proof-line {
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.proof-line div {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-line dt {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.03em;
}

.proof-line dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stage {
  position: relative;
}

.stage-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.stage-orbit-left {
  left: 3%;
  top: 18%;
  background: rgba(32, 113, 245, 0.22);
}

.stage-orbit-right {
  right: 4%;
  top: 2%;
  background: rgba(71, 138, 239, 0.18);
}

.stage-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

.stage-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 26px;
}

.stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.stage-panel {
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  backdrop-filter: blur(14px);
}

.stage-panel-primary {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 10% 10%, rgba(32, 113, 245, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
}

.stage-panel-primary h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  max-width: 560px;
}

.stage-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
}

.stage-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stage-chip-row span,
.stage-timeline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.signal-list li {
  position: relative;
  padding-left: 20px;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #478AEF;
}

.stage-panel-muted {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stage-meter {
  display: grid;
  gap: 6px;
}

.stage-meter span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.stage-meter strong {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.stage-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-section {
  padding: 0 0 104px;
}

.video-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Trust Bar ── */

.trust-bar {
  padding: 48px 0;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-row:first-child {
  padding-top: 0;
}

.trust-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.trust-label {
  flex-shrink: 0;
  width: 90px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex: 1;
}

.trust-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 300ms ease;
}

.trust-logo:hover {
  opacity: 0.7;
}

.trust-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity 300ms ease;
  white-space: nowrap;
}

.trust-logo-text:hover {
  color: rgba(255, 255, 255, 0.7);
}

.trust-callout {
  flex-shrink: 0;
  max-width: 300px;
  margin: 0;
  padding: 10px 14px;
  border-left: 2px solid #2071F5;
  background: rgba(32, 113, 245, 0.05);
  border-radius: 0 6px 6px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* ── Problem ── */

.problem {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.problem-shell {
  display: grid;
  gap: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(32, 113, 245, 0.12);
  color: #478AEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.problem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.platform {
  padding: 104px 0 120px;
}

.platform-shell {
  display: grid;
  gap: 28px;
}

.section-intro {
  display: grid;
  gap: 18px;
  max-width: 920px;
  padding-bottom: 32px;
}

.section-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.5vw, 18px);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.section-intro h2 {
  font-size: clamp(36px, 4.4vw, 48px);
  color: var(--white);
}

.section-intro p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.workflow-band {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.workflow-band-alt {
  grid-template-columns: 1.06fr 0.94fr;
}

.workflow-copy,
.workflow-visual {
  min-height: 520px;
}

.workflow-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.workflow-index {
  margin: 0;
  color: #478AEF;
}

.workflow-copy h3 {
  font-size: clamp(32px, 3.2vw, 40px);
  margin-top: 16px;
}

.workflow-summary {
  margin: 20px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.workflow-points {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.workflow-points li {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  font-size: 16px;
}

.workflow-visual {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(32, 113, 245, 0.14), transparent 34%),
    linear-gradient(180deg, #1c1c1c, #181818);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.visual-stack {
  width: min(100%, 540px);
  position: relative;
  height: 380px;
}

.paper {
  position: absolute;
  left: 50%;
  width: 84%;
  transform-origin: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  padding: 26px;
  backdrop-filter: blur(14px);
}

.paper strong {
  display: block;
  margin-top: 12px;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
}

.paper-front {
  top: 8%;
  transform: translateX(-50%) rotate(-4deg);
}

.paper-mid {
  top: 24%;
  transform: translateX(-50%) rotate(1.5deg);
}

.paper-back {
  top: 42%;
  transform: translateX(-50%) rotate(6deg);
}

.paper-label {
  color: #478AEF;
}

.reporting-visual {
  background:
    radial-gradient(circle at top left, rgba(32, 113, 245, 0.14), transparent 30%),
    linear-gradient(180deg, #1c1c1c, #181818);
}

.report-panel {
  width: min(100%, 560px);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.report-header,
.report-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.report-header {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.report-lines {
  display: grid;
  gap: 16px;
}

.report-lines span {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.report-lines .short {
  width: 54%;
}

.report-status {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.report-status small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.report-status strong {
  display: block;
  margin-top: 8px;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.03em;
}


/* ── Trust First ── */

.trust {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-shell {
  display: grid;
  gap: 56px;
}

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

.trust-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 200ms ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(32, 113, 245, 0.12);
  color: #478AEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}


/* ── Why Us ── */

.why-us {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-us-shell {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 80px;
  align-items: start;
}

.why-us-headline {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.why-us-headline h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}

.why-us-sub {
  margin: 0;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.why-us-items {
  display: grid;
  gap: 0;
}

.why-us-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-item:first-child {
  padding-top: 0;
}

.why-us-item:last-child {
  border-bottom: none;
}

.why-us-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #478AEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-text {
  display: grid;
  gap: 12px;
  align-content: start;
}

.why-us-text h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.why-us-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}


/* ── Team ── */

.team {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-shell {
  display: grid;
  gap: 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card {
  background: rgba(255, 255, 255, 0.025);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: background 200ms ease;
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.team-photo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.team-role {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #478AEF;
}

.team-creds {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  text-align: left;
  width: 100%;
}

.team-creds li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.team-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(32, 113, 245, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 7l2.5 2.5L10.5 5' stroke='%23478AEF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ── Security ── */

.security {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.security-shell {
  display: grid;
  gap: 56px;
}

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

.security-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 200ms ease;
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.security-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(32, 113, 245, 0.15);
  color: #478AEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.security-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}


/* ── Getting Started ── */

.getting-started {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.getting-started-shell {
  display: grid;
  gap: 56px;
}

.getting-started .section-intro {
  text-align: center;
  justify-items: center;
  max-width: 100%;
}

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

.step {
  padding: 0 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.step:first-child {
  padding-left: 0;
  border-left: none;
}

.step:last-child {
  padding-right: 0;
}

.step-number {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.step p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}


/* ── Testimonials ── */

.testimonials {
  background: var(--night);
  padding: 96px 0;
}

.testimonials-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.testimonials-title {
  display: grid;
  gap: 18px;
}

.testimonials-title h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(36px, 4.4vw, 48px);
  color: var(--white);
}

.testimonials-title .section-label {
  margin: 0;
}

.testimonials-nav {
  display: flex;
  gap: 12px;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease;
}

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonials-slideshow {
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--night-soft);
  border-radius: 16px;
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.testimonial-card-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left;
  opacity: 0.7;
}

.testimonial-card-body {
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-card-text {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
}

.testimonial-card-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author-name {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
}

.testimonial-author-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}


/* ── Final CTA ── */

.final-cta {
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(32, 113, 245, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.final-cta h2 {
  margin: 0 0 24px;
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

.final-cta h2 span {
  color: rgba(255, 255, 255, 0.35);
}

.final-cta p {
  margin: 0 0 40px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.cta-contact {
  margin: 20px 0 0 !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.cta-contact a {
  color: #478AEF;
  transition: color 200ms ease;
}

.cta-contact a:hover {
  color: var(--white);
}


/* ── Footer ── */

.site-footer {
  padding: 0 0 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
  flex-shrink: 0;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.footer-columns {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 130px;
}

.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.footer-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 200ms ease;
}

.footer-legal a:hover {
  color: var(--white);
}


@media (max-width: 1080px) {
  .trust-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-label {
    width: 100%;
  }

  .trust-callout {
    max-width: 100%;
  }

  .why-us-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-headline {
    position: relative;
    top: auto;
  }

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

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

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

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

  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step {
    padding: 0;
    border-left: none;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .step:first-child {
    padding-top: 0;
    border-top: none;
  }

  .proof-line,
  .stage-grid,
  .workflow-band,
  .workflow-band-alt {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 56px 56px;
  }

  .testimonial-card-text {
    font-size: 28px;
  }

  .workflow-copy,
  .workflow-visual {
    min-height: auto;
  }

  .workflow-band,
  .workflow-band-alt {
    gap: 12px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(1280px, calc(100vw - 28px));
  }

  .main-nav {
    display: none;
  }

  .nav-shell {
    min-height: 62px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-wordmark {
    font-size: 24px;
  }

  .hero {
    padding-top: 44px;
  }

  .proof-line {
    gap: 12px;
  }

  .problem,
  .getting-started,
  .why-us,
  .trust,
  .security,
  .team {
    padding: 80px 0;
  }

  .final-cta {
    padding: 100px 0 80px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .problem-card {
    padding: 28px 24px;
  }

  .stage-frame,
  .workflow-band {
    padding: 18px;
  }

  .stage-panel,
  .workflow-copy {
    padding: 20px;
  }

  .hero-body,
  .section-intro p,
  .workflow-summary {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .trust-bar {
    padding: 32px 0;
  }

  .trust-logos {
    gap: 28px;
    flex-wrap: wrap;
  }

  .trust-logo {
    height: 24px;
  }

  .announcement-bar {
    padding: 10px 14px;
    text-align: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-actions {
    gap: 14px;
  }


  .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

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

  .why-us-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .why-us-icon {
    width: 48px;
    height: 48px;
  }

  .stage-topline,
  .report-header,
  .report-status {
    flex-direction: column;
  }

  .testimonials {
    padding: 64px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 36px 32px;
    gap: 32px;
  }

  .testimonial-card-text {
    font-size: 22px;
  }

  .stage-panel-primary h2,
  .section-intro h2,
  .workflow-copy h3 {
    line-height: 1;
  }

  .paper {
    width: 96%;
  }

  .visual-stack {
    height: 320px;
  }

  .final-cta {
    padding: 80px 0 64px;
  }

  .footer-columns {
    gap: 40px;
    flex-wrap: wrap;
  }

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

  .footer-legal {
    justify-content: center;
  }
}
