:root {
  --primary: #08090a;
  --secondary: #F1F1F1;
  --dark: #1a1a1a;
  --light: #ededed;
  --max-width: 1200px;
  --pad-x: 1.5rem;
  --transition: 200ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--primary);
  color: var(--secondary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 10, 0.8);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  position: relative;
}

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

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

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.site-nav-list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.92;
  transition: opacity var(--transition), color var(--transition), background var(--transition);
}

.nav-cta {
  display: none;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  opacity: 1;
  color: #cce7ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.nav-toggle-bars,
.nav-toggle-bar {
  display: block;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  transition: transform var(--transition), opacity var(--transition), width var(--transition), background var(--transition);
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 0;
}

body.nav-open .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(42deg);
  width: 24px;
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-42deg);
  width: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}

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

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(108, 157, 255, 0.18), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(142, 245, 201, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.15rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 18ch;
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 52ch;
  opacity: 0.9;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Visual side */
.hero-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image {
  position: relative;
  width: min(640px, 100%);
  height: auto;
  mix-blend-mode: screen;
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.trust {
  padding: 4.5rem 0;
}

.trust-title {
  margin: 0 0 2.5rem;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card */
.trust-card {
  background: rgba(255, 255, 255, 0.03);
  color: var(--secondary);
  padding: 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.8rem;
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Text */
.trust-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.trust-card-text {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}



/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }
}

/* Responsive */
@media (max-width: 760px) {
  .site-header-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.9rem var(--pad-x);
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .site-header .btn {
    order: 3;
    display: none;
  }

  .site-nav .nav-cta .btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: var(--pad-x);
    left: var(--pad-x);
    justify-content: flex-start;
    flex: 0 0 auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: transform var(--transition), opacity var(--transition);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand-logo {
    height: 34px;
  }

  .site-nav-list {
    gap: 0.35rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 9, 10, 0.95);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }

  .nav-cta {
    display: block;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .site-nav-link {
    display: block;
    width: 100%;
    padding: 0.65rem 0.7rem;
    border-radius: 8px;
  }

  .site-nav-link:hover,
  .site-nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
  }
}

.use-cases,
.platform,
.process,
.testimonials,
.faq,
.contact {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.section-title {
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.section-description {
  margin: 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.78);
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  font-size: 0.85rem;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8ef5c9, #6ac0ff);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.mock-body {
  display: grid;
  gap: 0.8rem;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.mock-value {
  font-weight: 600;
}

.mock-avatars {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.mock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1eaff, #7c9fff);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mock-avatar.muted {
  background: rgba(255, 255, 255, 0.15);
}

.mock-progress {
  display: grid;
  gap: 0.35rem;
}

.mock-bar {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mock-bar span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #8ef5c9, #6ac0ff);
}

.mock-list {
  display: grid;
  gap: 0.8rem;
}

.mock-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.mock-bullet {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
}

.mock-bullet.green {
  background: #8ef5c9;
}

.mock-bullet.amber {
  background: #f2c572;
}

.mock-strong {
  font-weight: 600;
  margin: 0;
}

.mock-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.mock-chart {
  display: grid;
  gap: 1rem;
}

.mock-chart-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  align-items: end;
  height: 160px;
}

.mock-chart-bars span {
  display: block;
  width: 100%;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, rgba(138, 196, 255, 0.9), rgba(110, 131, 255, 0.6));
}

.mock-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8ef5c9;
}

.mock-checklist {
  display: grid;
  gap: 0.65rem;
}

.mock-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.mock-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mock-box.checked {
  background: linear-gradient(135deg, #8ef5c9, #6ac0ff);
  border-color: transparent;
}

.mock-table {
  display: grid;
  gap: 0.4rem;
}

.mock-table-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
}

.mock-table-row.header {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.mock-table-row:not(.header) {
  background: rgba(255, 255, 255, 0.03);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.pill-green {
  background: rgba(142, 245, 201, 0.2);
  color: #9af1ce;
  border-color: rgba(142, 245, 201, 0.4);
}

.pill-amber {
  background: rgba(242, 197, 114, 0.18);
  color: #f4ce8a;
  border-color: rgba(242, 197, 114, 0.45);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.use-case-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.use-case-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.use-case-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  gap: 0.35rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.platform-points {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 1.75rem;
}

.platform-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
}

.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8ef5c9, #6ac0ff);
  margin-top: 0.35rem;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  padding-top: 1.5rem;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process-step {
  position: relative;
  padding: 1.25rem 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8ef5c9;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.process-step h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.step-index {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-quote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-author {
  margin: 0;
  font-weight: 600;
}

.testimonial-meta {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.faq-items {
  display: grid;
  gap: 0.9rem;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--secondary);
}

.faq p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.form-full {
  display: block;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--secondary);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--secondary);
  font: inherit;
  padding: 0.65rem 0.75rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--secondary);
}

.footer-meta {
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .dashboard-top {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section-header {
    margin-bottom: 2rem;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .process-steps::before {
    display: none;
  }

.site-footer .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.products-hero,
.team-hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.products-hero::before,
.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(108, 157, 255, 0.18), transparent 28%),
    radial-gradient(circle at 70% 0%, rgba(142, 245, 201, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.legal-hero {
  padding: 4.5rem 0 2.5rem;
  position: relative;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(108, 157, 255, 0.18), transparent 26%),
    radial-gradient(circle at 70% -5%, rgba(142, 245, 201, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  opacity: 0.85;
  pointer-events: none;
}

.legal-hero .section-title {
  margin-top: 0.4rem;
  max-width: 30ch;
}

.legal-hero .section-description {
  max-width: 64ch;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.legal-card h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.legal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.legal-list strong {
  font-weight: 600;
}

.legal-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-section p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 0.35rem;
}

.legal-card,
.legal-section p,
.legal-section li {
  word-break: break-word;
}

.legal-updated {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.products-hero-inner,
.team-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.products-hero-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.products-hero-meta {
  display: grid;
  gap: 0.25rem;
}

.products-hero-visual {
  position: relative;
  padding: 0.35rem;
}

.products-hero-visual svg,
.products-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.products-hero-visual rect {
  fill: rgba(255, 255, 255, 0.06);
}

.products-hero-visual circle {
  fill: rgba(255, 255, 255, 0.12);
  stroke: none;
}

.products-hero-visual img {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  filter: grayscale(1) contrast(1.05) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.logo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.logo-placeholder.small {
  min-height: 70px;
  font-size: 0.95rem;
}

.product-section,
.team-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 0.65rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.product-logos {
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
}

.product-logos img {
  height: 80px;
  max-width: 250px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-icon svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .products-hero-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.legal-section,
.legal-hero {
  scroll-margin-top: 100px;
}

@media (max-width: 720px) {
  .legal-hero {
    padding: 3.25rem 0 2.4rem;
  }

  .legal-hero .section-title {
    font-size: 1.65rem;
  }

  .legal-hero .section-description {
    font-size: 1rem;
    line-height: 1.65;
  }

  .legal-grid {
    gap: 1rem;
  }

  .legal-card {
    padding: 1rem;
  }

  .legal-card h2,
  .legal-section h2 {
    font-size: 1.08rem;
  }

  .legal-section {
    padding: 2.1rem 0;
  }

  .legal-section p,
  .legal-section li,
  .legal-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.team-hero-visual {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.team-photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: grayscale(1) contrast(1.05);
}

.person-card,
.advisor-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.person-avatar {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, rgba(142, 245, 201, 0.3), rgba(108, 157, 255, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.person-avatar.is-photo {
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.person-avatar.is-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.person-meta {
  display: grid;
  gap: 0.25rem;
}

.person-name {
  margin: 0;
  font-weight: 600;
}

.person-role {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
}

.person-bio {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.advisor-card {
  max-width: 560px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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