:root {
  --bg: #ffffff;
  --surface: #f4f5f7;
  --surface-strong: #eceef1;
  --text: #121416;
  --muted: #525a62;
  --border: #e1e4e8;
  --accent: #111315;
  --radius: 14px;
  --shadow: 0 18px 60px rgba(10, 12, 14, 0.08);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 72px;
  --space-2xl: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
  font-size: 17px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.narrow {
  max-width: 760px;
}

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

.header-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: stretch;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #5C6AFF;
}

.nav a:active {
  color: #7F8FFF;
}

.ghost-btn {
  padding: 10px 18px;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
  background: #fff;
  color: #4150FF;
  font-size: 14px;
  cursor: pointer;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: start;
  padding: 88px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.hero-copy {
  align-self: center;
}

.hero-copy .label {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  margin: 0 0 var(--space-md);
  max-width: 560px;
  font-weight: 600;
}

.subheadline {
  font-size: 24px;
  color: #47474A;
  max-width: 560px;
  line-height: 1.2;
}

.cta-row {
  margin-top: 10px;
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: stretch;
}

.primary-btn {
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  background: #4150FF;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.microcopy {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.hero-media {
  transform: translateX(30px);
}

.product-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.04);
  padding: var(--space-md);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: var(--space-md);
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.status {
  font-size: 12px;
  color: var(--muted);
}

.product-body {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-md);
  align-items: stretch;
}

.wireframe {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm);
  display: grid;
}

.wf-title {
  margin-bottom: var(--space-xs);
}

.device {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.device-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.search-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.search-placeholder {
  font-size: 13px;
  color: var(--text);
}

.filter-btn {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface);
}

.results {
  display: grid;
  gap: 10px;
}

.result-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.result-item.highlight {
  border-color: #cfd4da;
  background: #f7f8fa;
}

.result-item.muted {
  background: var(--surface-strong);
}

.thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.result-title {
  font-size: 13px;
  color: var(--text);
}

.result-sub {
  font-size: 12px;
  color: var(--muted);
}

.hint-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.hint.muted {
  color: #8a9199;
}
.analysis-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  display: grid;
  gap: var(--space-xs);
}

.panel-title {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.panel-metric {
  font-size: 14px;
  padding: 10px 12px;
  background: #7F8FFF;
  border-radius: 10px;
  border: 1px solid #7F8FFF;
  color: #fff;
}

.panel-list {
  display: grid;
  gap: 10px;
  margin-top: var(--space-xs);
}

.panel-item {
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid #7F8FFF;
  padding-left: 10px;
}

.panel-footer {
  margin-top: var(--space-xs);
  font-size: 12px;
  color: var(--muted);
}

.sub-hero {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
  text-align: center;
}


.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

h2 {
  font-size: clamp(32px, 3.2vw, 44px);
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  line-height: 1.03;
}

.list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.list-card ul {
  margin: 0 0 var(--space-sm);
  padding-left: 18px;
  color: var(--muted);
}

.note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.cap-item {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  min-height: 160px;
}

.cap-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.cap-text {
  font-size: 14px;
  color: var(--muted);
}

.ticker-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--surface);
}

.ticker {
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: var(--space-lg);
  white-space: nowrap;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: start;
  gap: var(--space-xs);
  font-size: 14px;
  color: var(--muted);
}

.avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cfd4da;
  display: inline-block;
}

.steps ol {
  margin: 0 0 var(--space-sm);
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
}

.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.side-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.side-metrics {
  display: flex;
  gap: var(--space-md);
  align-items: stretch;
  margin-top: 10px;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

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

.paywall {
  padding: var(--space-xl) 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.paywall-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-lg);
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  font-size: 18px;
}

.final-cta {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.closing {
  padding: var(--space-lg) 0 var(--space-2xl);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.closing p {
  font-size: 22px;
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-media {
    transform: none;
  }

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

  .paywall-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  h2 {
    font-size: 26px;
  }

  .subheadline,
  .janus-section-subtitle,
  .janus-accordion-subtitle,
  .final-cta-copy {
    font-size: 18px;
    line-height: 1.3;
  }

  .flow-title,
  .principle-card h3,
  .janus-accordion-title {
    font-size: 20px;
  }
.janus-accordion-title .janus-accordion-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


  .nav {
    display: none;
  }

  .header-inner {
    gap: var(--space-sm);
  }

  .hero {
    padding-top: var(--space-xl);
  }

  .hero-media {
    width: 100%;
  }

  .product-shell {
    width: 100%;
    max-height: 40vh;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  }

  .product-shell::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(244, 245, 247, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
  }

  .product-body {
    grid-template-columns: 1fr 0.9fr;
    gap: 12px;
  }

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

  /* mobile spacing (Hasbyt-inspired) */
  .section,
  .ticker-section,

  .section h2,
  .section-title-center h2,
  .principles-header h2,

  .section .subheadline,
  .janus-section-subtitle,
  .janus-accordion-subtitle,
  .final-cta-copy {
    margin-bottom: 40px;
  }

  .final-cta-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .final-cta-content .microcopy {
    margin-bottom: 0;
  }

  .final-cta .final-cta-content h2 {
    margin-bottom: 16px !important;
  }

  .final-cta .final-cta-content .subheadline {
    margin-top: 0 !important;
  }

  .integrations.section {
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .janus-section-subtitle.janus-accordion-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}








.primary-btn, .ghost-btn {
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn:hover {
  background: #5C6AFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

.ghost-btn:hover {
  background: #f1f3ff;
  color: #5C6AFF;
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.12);
}

::selection {
  background: #4150FF;
  color: #fff;
}

.janus-section-title {
  text-align: left;
  margin-bottom: 24px;
}

.janus-section-subtitle {
  font-size: 24px;
  margin: 0;
  color: #47474A;
  max-width: 720px;
  line-height: 1.2;
}


.janus-inspector-card {
  background: #f5f5f7;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: start;
  border: 1px solid #f0f1f4;
}

.janus-concepts {
  display: grid;
  gap: 24px;
  padding-right: 12px;
}

.janus-concept-pill {
  background: #fff;
  border: 1px solid #e1e4e8;
  color: #2b2f33;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  white-space: nowrap;
}

.janus-inspector {
  background: #f7f7f9;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 360px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.04);
}

.janus-inspector img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transform: none;
}

@media (max-width: 980px) {
  .janus-inspector-card {
    grid-template-columns: 1fr;
  }
  .janus-inspector img {
    width: 100%;
  }
}

.janus-accordion {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.janus-accordion-list {
  display: grid;
  gap: 14px;
  align-content: start;
  text-align: left;
}

.janus-accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px;
  background: #fff;
  text-align: left;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.janus-accordion-item .janus-acc-body {
  grid-column: 1 / -1;
  display: none;
  margin-top: 8px;
  gap: 8px;
}

.janus-accordion-item.active {
  border-color: #cfd4da;
  box-shadow: none;
}

.janus-accordion-item.active .janus-acc-body {
  display: grid;
}

.janus-acc-title {
  font-weight: 600;
  color: #1d1d1f;
}

.janus-acc-toggle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d9dde2;
  position: relative;
}

.janus-acc-toggle::before,
.janus-acc-toggle::after {
  content: "";
  position: absolute;
  background: #7a8189;
}

.janus-acc-toggle::before {
  width: 8px;
  height: 2px;
  top: 8px;
  left: 5px;
}

.janus-acc-toggle::after {
  width: 2px;
  height: 8px;
  top: 5px;
  left: 8px;
}

.janus-accordion-item.active .janus-acc-toggle::after {
  height: 0;
}

.janus-acc-sub {
  font-size: 16px;
  color: #404549;
}

.janus-acc-desc {
  font-size: 14px;
  color: #47474A;
}

.janus-accordion-preview {
  position: relative;
}


.janus-acc-media {
  display: none;
}

.janus-acc-media img {
  width: 100%;
  display: block;
  height: auto;
}


.janus-preview-frame {
  background: #f6f6f8;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.04);
}

.janus-preview-frame img {
  width: 100%;
  display: block;
  height: auto;
}

.janus-section-note {
  margin-top: auto;
  padding-top: 24px;
  color: #47474A;
  max-width: 520px;
}

@media (max-width: 980px) {
  .janus-accordion {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .janus-accordion-preview {
    display: none;
  }

  .janus-acc-media {
    display: block;
    margin-top: 12px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f6f6f8;
  }
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.how-copy h2 {
  margin-bottom: 16px;
}

.how-copy .subheadline {
  margin: 0 0 12px;
}

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

.how-step {
  background: #f4f5f7;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  min-height: 140px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--muted);
}

.step-title {
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1f;
}

@media (max-width: 980px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

.how-flow {
  display: grid;
  gap: 40px;
}

.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  overflow: visible;
}

.flow-card {
  background: #f6f6f8;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  min-height: 210px;
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.04);
}

.flow-step {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.flow-title {
  font-weight: 600;
  font-size: 22px;
  color: #1d1d1f;
  line-height: 1.2;
}


.flow-wire {
  display: grid;
  gap: 8px;
}

.wire-line {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
}

.wire-line.short {
  width: 60%;
}

.wire-block {
  height: 60px;
  border-radius: 10px;
  background: #e7eaee;
}

.wire-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.wire-row span {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
}

.wire-paragraph {
  height: 16px;
  border-radius: 6px;
  background: #e1e4e8;
}

.wire-paragraph.short {
  width: 70%;
}

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

.wire-grid span {
  height: 28px;
  border-radius: 8px;
  background: #e7eaee;
}

.wire-chip {
  width: 72px;
  height: 24px;
  border-radius: 999px;
  background: #e7eaee;
}

.wire-lock {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #d9dde2;
  position: relative;
}

.wire-lock::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 10px;
  border: 2px solid #d9dde2;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  top: -8px;
  left: 7px;
  background: transparent;
}

@media (max-width: 1200px) {
  .flow-track {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    padding-bottom: 6px;
  }
}

.flow-card {
  position: relative;
}

.flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #d9dde2;
}

.flow-card:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -14px;
  top: calc(50% - 4px);
  border-left: 6px solid #d9dde2;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.janus-accordion-title {
  text-align: center;
  margin-bottom: 40px;
}

.janus-accordion-subtitle {
  font-size: 24px;
  margin: 0;
  color: #47474A;
  max-width: 720px;
  line-height: 1.2;
}

.ticker-section .container {
  max-width: none;
  padding: 0 24px;
}

.ghost-btn:active {
  color: #7F8FFF;
  border-color: #7F8FFF;
}

.primary-btn:active {
  background: #7F8FFF;
}

.janus-acc-leading {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #cfd4da;
  position: relative;
  display: inline-block;
}

.janus-acc-leading::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid #7a8189;
}

.ic-ambiguo::before {
  border-color: #7a8189;
  border-style: dashed;
}

.ic-decisiones::before {
  border-radius: 4px;
  border-style: solid;
}

.ic-riesgo::before {
  border-radius: 2px;
  border-style: solid;
  transform: rotate(45deg);
}

.janus-accordion-item {
  grid-template-columns: 18px 18px 1fr 18px;
}

.janus-accordion-item .janus-acc-body {
  grid-column: 1 / -1;
}

.janus-acc-title {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  font-size: 22px;
}

.janus-acc-toggle {
  justify-self: end;
}


.sub-hero-content {
  position: relative;
  z-index: 1;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
}

.sub-hero-center {
  text-align: center;
}

.sub-hero-center h2 {
  max-width: none;
  width: 100%;
  margin: 0 auto 16px;
}

.sub-hero-center p {
  max-width: 720px;
  margin: 0 auto;
}

.flow-wire.checkout {
  min-height: 180px;
  gap: 10px;
}

.checkout-header {
  height: 12px;
  border-radius: 6px;
  background: #e1e4e8;
  width: 70%;
}

.checkout-body {
  display: grid;
  gap: 8px;
}

.checkout-item {
  height: 28px;
  border-radius: 8px;
  background: #e7eaee;
}

.checkout-summary {
  display: grid;
  gap: 6px;
}

.summary-row {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
}

.summary-row.total {
  width: 60%;
}

.checkout-cta {
  height: 18px;
  border-radius: 999px;
  background: #d9dde2;
  width: 55%;
}

.device-frame {
  border: 1px solid #d9dde2;
  border-radius: 18px;
  background: #f7f8fa;
  padding: 10px;
}

.device-bar {
  height: 6px;
  width: 40%;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #e1e4e8;
}

.device-screen {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e1e4e8;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.flow-wire.form {
  min-height: 180px;
}

.form-line {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
  width: 60%;
}

.form-field {
  height: 28px;
  border-radius: 8px;
  background: #e7eaee;
}

.form-field.short {
  width: 70%;
}

.form-textarea {
  height: 44px;
  border-radius: 10px;
  background: #e7eaee;
}

.form-cta {
  height: 18px;
  border-radius: 999px;
  background: #d9dde2;
  width: 55%;
}

.flow-wire.analysis {
  min-height: 180px;
}

.analysis-header {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
  width: 65%;
}

.analysis-metric {
  height: 22px;
  border-radius: 8px;
  background: #e7eaee;
}

.analysis-list {
  display: grid;
  gap: 6px;
}

.analysis-list span {
  height: 8px;
  border-radius: 6px;
  background: #e1e4e8;
}

.analysis-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #cfd4da;
  position: relative;
  margin: 2px 0 4px;
}

.analysis-icon::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #7a8189;
  top: 4px;
  left: 4px;
}

.analysis-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: #7a8189;
  bottom: 3px;
  right: 2px;
  transform: rotate(45deg);
}

.device-screen.thinking {
  display: grid;
  place-items: center;
  min-height: 140px;
}

.thinking-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px dashed #7F8FFF;
  position: relative;
}

.thinking-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7F8FFF;
  top: -12px;
  left: 4px;
  box-shadow: 12px 6px 0 #7F8FFF;
}

.thinking-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7F8FFF;
  bottom: -12px;
  right: 2px;
}

.flow-wire.summary {
  min-height: 140px;
}

.summary-header {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
  width: 70%;
}

.summary-chip {
  width: 64px;
  height: 20px;
  border-radius: 999px;
  background: #e7eaee;
}

.summary-lines {
  display: grid;
  gap: 6px;
}

.summary-lines span {
  height: 8px;
  border-radius: 6px;
  background: #e1e4e8;
}

.flow-wire.detail {
  min-height: 180px;
}

.detail-line {
  height: 10px;
  border-radius: 6px;
  background: #e1e4e8;
  width: 75%;
}

.detail-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #cfd4da;
  position: relative;
}

.detail-check::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 3px;
  border-left: 2px solid #7a8189;
  border-bottom: 2px solid #7a8189;
  transform: rotate(-45deg);
  top: 5px;
  left: 3px;
}

.detail-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: center;
}

.detail-alert,
.detail-warning {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #cfd4da;
  position: relative;
}

.detail-alert::after {
  content: "!";
  position: absolute;
  font-size: 10px;
  color: #7a8189;
  top: 1px;
  left: 5px;
}

.detail-warning::after {
  content: "!";
  position: absolute;
  font-size: 10px;
  color: #7a8189;
  top: 1px;
  left: 5px;
}


.principles {
  background: #fafbfc;
  padding-top: 200px;
  padding-bottom: 200px;
}

.principles-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.principles-header p {
  color: #47474A;
  margin: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.principle-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 8px;
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.principle-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 6px;
}

.principle-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.principle-card p {
  margin: 0;
  color: #47474A;
  font-size: 16px;
  line-height: 1.5;
  max-width: 260px;
}

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

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

.final-cta .container {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.flow-track-wrapper {
  position: relative;
  display: grid;
  align-items: center;
  overflow: visible;
}

.flow-arrow {
  display: none;
}

.flow-dots {
  display: none;
}

@media (max-width: 900px) {
  .flow-track-wrapper {
    grid-template-columns: 32px 1fr 32px;
    gap: 8px;
  }

  .flow-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 2px;
    scrollbar-width: none;
  }

  .flow-track::-webkit-scrollbar {
    display: none;
  }

  .flow-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .flow-arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
  }

  .flow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .flow-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #c9cdd3;
  }

  .flow-dots .dot.active {
    background: #111315;
  }

  .how-flow .how-cards {
    margin-top: 24px;
  }

  .how-flow .cta-row {
    margin-top: 16px;
  }

}

  .flow-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 16px);
  }

  .flow-card {
    scroll-snap-align: start;
  }

  .flow-arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
  }

  .flow-prev::before,
  .flow-next::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .flow-prev::before {
    border-right: 8px solid #7a8189;
  }

  .flow-next::before {
    border-left: 8px solid #7a8189;
  }

  .flow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .flow-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #c9cdd3;
  }

  .flow-dots .dot.active {
    background: #111315;
  }
}

@media (max-width: 900px) {
  .flow-track-wrapper {
    grid-template-columns: 32px 1fr 32px;
    gap: 8px;
  }

  .flow-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 8px;
  }

  .flow-card {
    scroll-snap-align: start;
  }

  .flow-arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
  }

  .flow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .flow-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #c9cdd3;
  }

  .flow-dots .dot.active {
    background: #111315;
  }
}

@media (min-width: 901px) {
  .flow-arrow,
  .flow-dots {
    display: none;
  }
}

.checkout-body .checkout-item,
.form-field,
.form-textarea,
.summary-lines span,
.detail-line {
  background: #7F8FFF;
}

.checkout-summary .summary-row,
.summary-header,
.summary-chip,
.checkout-header,
.form-line,
.analysis-icon,
.analysis-header,
.analysis-metric,
.detail-check,
.detail-alert,
.detail-warning {
  border-color: #7F8FFF;
  background: #7F8FFF;
}

.detail-check::after,
.detail-alert::after,
.detail-warning::after {
  border-color: #fff;
  color: #fff;
}

.flow-card {
  transition: box-shadow 0.35s ease;
}


@media (min-width: 901px) {
  .flow-track-wrapper {
    display: contents;
  }
}

.how-flow .cta-row {
  width: 100%;
  max-width: 260px;
  margin: 24px auto 0;
}

.how-flow .cta-row .primary-btn {
  width: 100%;
}

.final-cta {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.final-cta-content {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.final-cta-copy {
  color: #47474A;
  font-size: 18px;
  margin: 0;
}

.final-cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: #47474A;
  font-size: 14px;
  padding-bottom: 24px;
}

.final-cta-checks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 901px) {
  .final-cta-content .subheadline {
    white-space: nowrap;
  }
}

.section-title-center {
  text-align: center;
}

.section-title-center h2 {
  margin: 0 auto 16px;
}

.section-title-center .subheadline {
  margin: 0 auto;
}

section.section .container {
  text-align: center;
}

.principles-header .subheadline {
  margin: 0 auto;
  text-align: center;
}

.principles-header h2 {
  margin-bottom: 24px;
}

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

.final-cta-content h2 {
  margin-bottom: 16px;
}

.final-cta-content .microcopy {
  text-align: center;
}

.final-cta-content .primary-btn {
  padding-left: 78px;
  padding-right: 78px;
}

.janus-concepts .janus-section-note {
  text-align: left;
  max-width: 520px;
  margin-top: 16px;
}

.integrations-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.integrations-logos img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.integrations .janus-section-title {
  text-align: center;
}

.integrations .janus-section-title .subheadline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.integrations {
  margin-top: 96px;
}


.testimonial-card {
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 18px;
  padding: 20px;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 240px;
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.04);
}

.testimonial-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e73;
}

.testimonial-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #1d1d1f;
  white-space: normal;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #47474A;
  border-top: 1px solid #eef0f3;
  padding-top: 12px;
  margin-top: auto;
}

.testimonial-footer .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.ticker-track {
  gap: 24px;
}

.ticker-section .janus-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.ticker-section .janus-section-title .subheadline {
  margin: 0 auto;
  text-align: center;
}

section#capacidades.section {
  padding-bottom: 100px;
}

.principles.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.janus-section-subtitle.janus-accordion-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
