:root {
  --bg: #0b0d10;
  --bg-soft: #12161c;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f2efe9;
  --muted: #b2b9c6;
  --blue: #2d6bff;
  --blue-soft: rgba(45, 107, 255, 0.2);
  --green: #34c67a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(52, 198, 122, 0.12), transparent 20%),
    linear-gradient(180deg, #0b0d10 0%, #10141a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

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

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  margin: 0;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: auto;
  height: 46px;
  margin: 0;
  object-fit: contain;
}

.ghost-link,
.secondary-button {
  color: var(--text);
  text-decoration: none;
}

.hero {
  padding: 12px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8cabff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 34ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.primary-button {
  background: linear-gradient(180deg, #2d6bff, #1f4ec2);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(45, 107, 255, 0.3);
  color: white;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.03);
}

.hero-card,
.story-card,
.panel-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 28px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 198, 122, 0.8);
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-proxy {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-proxy.compact {
  padding-top: 16px;
  padding-bottom: 16px;
}

.hero-proxy-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-example-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.hero-example-card.focus {
  background:
    radial-gradient(circle at top left, rgba(52, 198, 122, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(52, 198, 122, 0.2);
}

.hero-example-label {
  margin: 0 0 10px;
  color: #8cabff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-example-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.08rem;
  line-height: 1.3;
}

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

.hero-node-label,
.hero-proxy-label {
  margin: 0 0 4px;
  color: #8cabff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-flow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-flow-line::before,
.hero-flow-line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-chip.neutral {
  color: rgba(255, 255, 255, 0.82);
}

.hero-chip.danger {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.hero-chip.safe {
  color: #98e0b6;
  border-color: rgba(52, 198, 122, 0.22);
}

.hero-chip.muted {
  color: #ffb1b1;
  border-color: rgba(240, 99, 99, 0.18);
  background: rgba(240, 99, 99, 0.06);
}

main {
  display: grid;
  gap: 26px;
}

.story-section,
.how-section,
.demo-section,
.use-cases-section,
.benefits-section,
.team-section,
.privacy-section,
.privacy-hero,
.policy-note {
  padding: 34px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 32px;
}

.incidents-section {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(205, 35, 35, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 32px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.section-intro {
  max-width: 62ch;
  margin-top: 14px;
}

.story-grid,
.demo-grid,
.use-case-grid,
.benefits-grid,
.team-grid,
.team-signals-grid,
.policy-grid,
.incident-grid {
  display: grid;
  gap: 18px;
}

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

.demo-grid,
.use-case-grid,
.benefits-grid,
.team-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.story-card,
.demo-card,
.use-case-card,
.benefit-card,
.policy-card,
.incident-card {
  padding: 24px;
}

.story-card {
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-card h3 {
  margin: 0 0 12px;
}

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

.use-case-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.use-case-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.use-case-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex-shrink: 0;
}

.use-case-icon svg {
  width: 20px;
  height: 20px;
}

.use-case-icon.blue {
  color: #a9c4ff;
  background: rgba(45, 107, 255, 0.16);
}

.use-case-icon.green {
  color: #98e0b6;
  background: rgba(52, 198, 122, 0.14);
}

.use-case-icon.violet {
  color: #d2b7ff;
  background: rgba(151, 99, 255, 0.14);
}

.use-case-icon.amber {
  color: #ffd488;
  background: rgba(255, 184, 77, 0.14);
}

.rule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.rule-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.rule-chip.allow {
  background: rgba(52, 198, 122, 0.14);
  color: #98e0b6;
}

.rule-chip.block {
  background: rgba(240, 99, 99, 0.14);
  color: #ffb1b1;
}

.use-case-footer {
  margin: 18px 4px 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.privacy-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(45, 107, 255, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.025);
}

.privacy-lead {
  max-width: 60ch;
  font-size: 1.02rem;
}

.privacy-panel {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-item h3 {
  margin-bottom: 8px;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2d6bff, #1f4ec2);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(45, 107, 255, 0.24);
}

.privacy-main {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.privacy-hero-copy {
  max-width: 66ch;
}

.team-subhead {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.trust-subtext {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.privacy-hero {
  padding-bottom: 40px;
}

.policy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.policy-card-strong {
  background:
    radial-gradient(circle at top left, rgba(52, 198, 122, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.policy-list {
  padding-left: 18px;
}

.policy-list li + li {
  margin-top: 10px;
}

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

.signal-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.signal-card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.signal-card p {
  font-size: 0.92rem;
}

.signal-icon,
.policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a7c4ff;
  background: rgba(45, 107, 255, 0.14);
  border: 1px solid rgba(96, 160, 255, 0.22);
}

.signal-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.signal-icon svg,
.policy-icon svg {
  width: 20px;
  height: 20px;
}

.policy-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.policy-head .eyebrow {
  margin: 0;
}

.policy-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.how-card {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.how-card-simple {
  padding: 32px;
}

.how-example-label {
  margin: 0 0 14px;
  color: #8cabff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.how-arch-large {
  align-items: stretch;
}

.how-agent-large {
  flex: 0 0 160px;
}

.how-filter-large {
  flex: 0 0 320px;
}

.how-server-large {
  flex: 0 0 300px;
  min-width: 0;
}

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

.how-step-mini {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.how-step-mini-num {
  color: #8cabff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-steps-row {
  display: flex;
  margin-bottom: 24px;
}

.how-step {
  flex: 1;
  padding: 0 18px 14px 0;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.how-step + .how-step {
  margin-left: 18px;
}

.how-step.active {
  border-top-color: #8cabff;
}

.how-step-num {
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-step.active .how-step-num,
.how-step.active .how-step-title {
  color: var(--text);
}

.how-step-title {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.how-demo-area {
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.how-panel {
  display: none;
  gap: 28px;
  align-items: flex-start;
  padding: 28px;
}

.how-panel.active {
  display: flex;
}

.how-visual {
  flex: 0 0 280px;
}

.how-text {
  flex: 1;
  padding-top: 4px;
}

.how-text h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.how-text p {
  margin-bottom: 14px;
}

.how-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(52, 198, 122, 0.14);
  color: #98e0b6;
  font-size: 0.76rem;
  font-weight: 700;
}

.mini-label,
.mini-sub-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.mini-sub-label {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.4);
}

.proxy-mockup-dark,
.agent-mockup-dark,
.dashboard-mockup-dark,
.how-filter-box {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-filter-box {
  position: relative;
  border-color: rgba(96, 160, 255, 0.28);
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.04);
  flex: 0 0 190px;
}

.how-flow-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-flow-arch {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.how-agent-box {
  flex: 0 0 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-agent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45, 107, 255, 0.16);
  color: #a9c4ff;
}

.how-agent-icon svg {
  width: 18px;
  height: 18px;
}

.how-agent-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
}

.how-arrow-zone {
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-arrow-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.how-arrow-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(45deg);
}

.how-server-box {
  flex: 1;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proxy-url-box-dark,
.agent-msg-dark,
.dash-row-dark {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.proxy-url-box-dark {
  margin-bottom: 12px;
  padding: 12px 14px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.76rem;
  line-height: 1.6;
  word-break: break-all;
}

.proxy-url-box-dark .muted {
  color: rgba(255, 255, 255, 0.35);
}

.proxy-url-box-dark .accent,
.mono-accent {
  color: #8cabff;
}

.proxy-url-box-dark .safe {
  color: #98e0b6;
}

.proxy-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proxy-badge-dark,
.proxy-badge-subtle {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.proxy-badge-dark {
  background: rgba(52, 198, 122, 0.14);
  color: #98e0b6;
}

.proxy-badge-subtle {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.agent-mockup-dark {
  display: grid;
  gap: 10px;
}

.agent-msg-dark {
  padding: 12px 14px;
  color: var(--muted);
  line-height: 1.55;
}

.agent-msg-dark.active {
  border-color: rgba(96, 160, 255, 0.22);
  background: rgba(45, 107, 255, 0.1);
  color: var(--text);
}

.agent-note-dark,
.dash-note-dark {
  margin-top: 4px;
  color: #98e0b6;
  font-size: 0.76rem;
  font-weight: 700;
}

.dash-row-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.dash-fn {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.78rem;
  color: var(--text);
}

.dash-fn.blocked {
  color: rgba(255, 255, 255, 0.42);
}

.how-fn-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-family: "SF Mono", "Fira Code", monospace;
  color: rgba(255, 255, 255, 0.45);
}

.how-fn-chip.active {
  color: var(--text);
  border-color: rgba(52, 198, 122, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.how-fn-chip.blocked-chip {
  opacity: 0.3;
}

.how-fn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.how-fn-chip.active .how-fn-dot {
  background: var(--green);
}

.how-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.how-nav-dots {
  display: flex;
  gap: 8px;
}

.how-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.how-nav-dot.active {
  background: #8cabff;
}

.how-next {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.how-tagline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.how-tagline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.how-tagline span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.arch {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.agent-box {
  flex: 0 0 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
}

.agent-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(45, 107, 255, 0.18);
  color: #9cc0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-icon svg {
  width: 24px;
  height: 24px;
}

.agent-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.agent-sub {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.arrow-zone {
  flex: 0 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.arrow-svg {
  width: 60px;
  height: 100%;
}

.call-label {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(11, 13, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.63rem;
  white-space: nowrap;
}

.filter-box {
  flex: 0 0 240px;
  border: 1px solid rgba(96, 160, 255, 0.35);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.035);
  padding: 1rem;
  position: relative;
}

.barrier-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: #10141a;
  border: 1px solid rgba(96, 160, 255, 0.35);
  color: #b8cdff;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.filter-header,
.server-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-header-dot,
.status-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.tool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.tool-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.tool-row.blocked {
  opacity: 0.52;
}

.tool-name {
  font-size: 0.78rem;
  color: var(--text);
  font-family: "SF Mono", "Fira Code", "Fira Mono", monospace;
}

.toggle {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.toggle.on {
  background: linear-gradient(180deg, #3cd687, #23985f);
}

.toggle.off {
  background: rgba(255, 255, 255, 0.14);
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  transition: left 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.toggle.on .toggle-thumb {
  left: 16px;
}

.toggle.off .toggle-thumb {
  left: 2px;
}

.server-box {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.server-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(45, 107, 255, 0.15);
  color: #9cc0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fn-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-family: "SF Mono", "Fira Code", monospace;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.fn-chip.active {
  color: var(--text);
  border-color: rgba(52, 198, 122, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.fn-chip.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green);
}

.fn-chip.blocked-chip {
  opacity: 0.3;
}

.fn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.fn-chip.active .fn-dot {
  background: var(--green);
}

.status-bar {
  margin-top: 1.4rem;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

.status-count {
  font-weight: 700;
  color: var(--text);
}

.status-hint {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.52);
}

.how-note-pill {
  display: inline-flex;
  margin-top: 14px;
  width: fit-content;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(117, 214, 146, 0.1);
  border: 1px solid rgba(117, 214, 146, 0.16);
  color: #b9eac8;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.2;
}

.packet {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.packet.blocked-packet {
  background: #e24b4a;
}

@keyframes fly-right {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-20px);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(20px);
  }
}

@keyframes fly-left {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(20px);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-20px);
  }
}

.fly-r {
  animation: fly-right 0.7s ease forwards;
}

.fly-l {
  animation: fly-left 0.7s ease forwards;
}

.story-number {
  display: inline-block;
  margin-bottom: 18px;
  color: #8cabff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.demo-card {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(45, 107, 255, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.demo-copy {
  padding-bottom: 18px;
}

.demo-label {
  margin-bottom: 10px;
  color: #8cabff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.demo-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.incident-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.benefit-card {
  background:
    radial-gradient(circle at top left, rgba(52, 198, 122, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.team-grid {
  margin-bottom: 22px;
}

.team-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.team-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(52, 198, 122, 0.18), rgba(45, 107, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}

.team-avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.team-avatar-ali {
  object-position: 52% 30%;
}

.team-avatar-serhat {
  object-position: center 24%;
}

.team-card-head h3,
.team-why-card h3,
.team-signal-card h3 {
  margin: 0;
}

.team-card-head h3,
.team-why-card h3 {
  font-size: 1.12rem;
}

.team-copy {
  display: grid;
  gap: 10px;
}

.team-copy p,
.team-why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-socials {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 14px;
  padding-right: 6px;
  padding-bottom: 10px;
}

.team-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-social svg {
  width: 15px;
  height: 15px;
}

.team-card:hover .team-social {
  color: #a7c4ff;
  border-color: rgba(96, 160, 255, 0.22);
  background: rgba(45, 107, 255, 0.08);
}

.team-card:hover,
.team-why-card:hover,
.team-signal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.team-why-card {
  margin-bottom: 18px;
}

.team-why-card p + p {
  margin-top: 10px;
}

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

.team-signal-card {
  min-height: 0;
  padding: 18px 22px;
}

.team-signal-card h3 {
  font-size: 0.98rem;
  line-height: 1.35;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(52, 198, 122, 0.12);
  border: 1px solid rgba(52, 198, 122, 0.18);
  color: #98e0b6;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-mini-node,
.benefit-mini-tool {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.benefit-mini-node.focus {
  border-color: rgba(52, 198, 122, 0.2);
}

.benefit-mini-arrow {
  height: 18px;
  margin-left: 20px;
  border-left: 1px dashed rgba(255, 255, 255, 0.18);
}

.benefit-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-mini-dot.blue {
  background: #7ea9ff;
}

.benefit-mini-dot.green {
  background: var(--green);
}

.benefit-mini-stack {
  display: grid;
  gap: 10px;
}

.benefit-mini-tool.allowed::before,
.benefit-mini-tool.blocked::before,
.benefit-mini-tool.neutral::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-mini-tool.allowed::before {
  background: var(--green);
}

.benefit-mini-tool.blocked::before {
  background: #f06363;
}

.benefit-mini-tool.neutral::before {
  background: rgba(255, 255, 255, 0.3);
}

.benefit-visual-text {
  margin-top: 16px;
}

.incident-tag {
  margin-bottom: 10px;
  color: #ff8c8c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.incident-impact {
  color: #ffd1d1;
}

.incident-save {
  color: #9cd7b2;
}

.demo-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.demo-card li + li {
  margin-top: 10px;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hero-grid,
  .privacy-section,
  .trust-signals,
  .story-grid,
  .demo-grid,
  .use-case-grid,
  .benefits-grid,
  .team-grid,
  .team-signals-grid,
  .policy-grid,
  .incident-grid {
    grid-template-columns: 1fr;
  }

  .benefit-system {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .hero-chip-grid {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .story-section,
  .how-section,
  .demo-section,
  .use-cases-section,
  .benefits-section,
  .privacy-section,
  .privacy-hero,
  .policy-note,
  .incidents-section,
  .hero-card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tags {
    gap: 8px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .how-steps-row,
  .how-panel {
    flex-direction: column;
  }

  .how-steps-minimal {
    grid-template-columns: 1fr;
  }

  .how-step {
    padding-right: 0;
  }

  .how-step + .how-step {
    margin-left: 0;
    margin-top: 10px;
  }

  .how-visual {
    flex: none;
    width: 100%;
  }

  .how-flow-arch {
    flex-direction: column;
    gap: 12px;
  }

  .how-arrow-zone {
    height: 24px;
    flex: none;
  }

  .how-arrow-line {
    width: 1px;
    height: 100%;
  }

  .how-arrow-line::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }

  .how-filter-box,
  .how-agent-box {
    flex: none;
  }

  .how-nav-row,
  .how-tagline {
    align-items: flex-start;
  }

  .story-section,
  .how-section,
  .demo-section,
  .use-cases-section,
  .benefits-section,
  .privacy-section,
  .privacy-hero,
  .policy-note,
  .incidents-section {
    padding: 24px;
  }
}
