/* Your Next Customers. Anara-inspired platform design system */

@import url('ync-tokens.css?v=ync118');

/* Layout-only vars. Colors, fonts and radii come from ync-tokens.css -
   the Inter/Instrument-Serif system is retired; everything is DM Sans. */
:root {
  --ync-ink-soft: var(--ync-text-muted);
  --ync-hover: var(--ync-bg-subtle);
  --ync-serif: var(--ync-font-display);
  --ync-gutter: clamp(1.25rem, 5vw, 2.5rem);
  --ync-max: 1120px;
  --ync-max-wide: 1200px;
  --ync-max-narrow: 640px;
  --ync-sidebar: 248px;
  --ync-topbar: 56px;
  --ync-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Utilities (replace scattered inline style="" attributes) */
.ync-text-center { text-align: center; }
.ync-muted { color: var(--ync-text-muted); }
.ync-btn--block { display: block; width: 100%; }
.ync-display--page { font-size: clamp(30px, 4.5vw, 44px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

body.ync-page,
body.ync-app {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: var(--ync-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--ync-ink);
  background: var(--ync-bg);
}

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

.ync-display {
  font-family: var(--ync-font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ync-ink);
}

.ync-container {
  width: 100%;
  max-width: var(--ync-max);
  margin-inline: auto;
  padding-left: var(--ync-gutter);
  padding-right: var(--ync-gutter);
  min-width: 0;
}

.ync-container--wide {
  max-width: var(--ync-max-wide);
}

.ync-container--narrow {
  max-width: var(--ync-max-narrow);
}

.ync-main {
  overflow-x: clip;
  max-width: 100%;
}

/* Marketing header */
.ync-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ync-border);
}

.ync-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--ync-topbar);
  width: 100%;
  max-width: var(--ync-max);
  margin-inline: auto;
  padding: 0 var(--ync-gutter);
}

.ync-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ync-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--ync-r-sm);
  background: var(--ync-ink);
  color: #fff;
  font-family: var(--ync-serif);
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

/* Real brand mark (the SVG is already the black rounded square) */
.ync-logo-mark--img {
  background: transparent;
  display: block;
  object-fit: contain;
}

.ync-logo-text {
  font-family: var(--ync-serif);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.ync-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.ync-nav a {
  padding: 0.4rem 0.65rem;
  border-radius: var(--ync-r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ync-ink);
  transition: background 0.15s ease;
}

.ync-nav a:hover,
.ync-nav a.is-active {
  background: var(--ync-hover);
}

.ync-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.ync-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 550;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ync-btn--primary {
  background: var(--ync-ink);
  color: #fff;
  border-color: var(--ync-ink);
}

.ync-btn--primary:hover {
  background: var(--ync-hover);
  color: var(--ync-ink);
  border-color: var(--ync-border);
}

.ync-btn--ghost {
  background: transparent;
  border-color: var(--ync-border);
  color: var(--ync-ink);
}

.ync-btn--ghost:hover { background: var(--ync-hover); }

.ync-btn--lg { padding: 0.75rem 1.35rem; font-size: 0.9375rem; }

.ync-btn--sm { padding: 0.4rem 0.85rem; font-size: 0.8125rem; }

/* Hero */
.ync-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--ync-border);
}

.ync-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.ync-hero-grid--copy {
  grid-template-columns: 1fr;
  max-width: 42rem;
}

.ync-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.ync-hero-lead {
  font-size: 1.0625rem;
  color: var(--ync-ink-muted);
  max-width: 42ch;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.ync-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ync-eyebrow {
  font-size: 0.8125rem;
  color: var(--ync-ink-muted);
  margin: 0 0 0.85rem;
}

/* Product preview frame */
.ync-preview {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  overflow: hidden;
  background: var(--ync-bg-muted);
}

.ync-preview-bar {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--ync-border);
  background: #fff;
}

.ync-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ync-border);
}

.ync-preview-body { padding: 1rem; }

/* Sections */
.ync-section {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--ync-border);
}

.ync-section--muted {
  background: var(--ync-bg-muted);
}

.ync-section--cta {
  border-bottom: none;
}

.ync-section .ync-container > :first-child {
  margin-top: 0;
}

.ync-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.85rem;
  max-width: 22ch;
}

.ync-section-lead {
  color: var(--ync-ink-muted);
  max-width: 52ch;
  margin: 0 0 2.25rem;
  font-size: 1rem;
  line-height: 1.55;
}

.ync-section-lead--center {
  margin-left: auto;
  margin-right: auto;
}

.ync-section-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.ync-text-center {
  text-align: center;
}

.ync-hero-actions--center {
  justify-content: center;
}

.ync-quote {
  font-family: var(--ync-serif);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.ync-quote-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ync-ink-muted);
}

/* Feature grid */
.ync-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.ync-card {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  padding: 1.5rem 1.4rem;
  background: #fff;
  height: 100%;
  transition: border-color 0.2s var(--ync-ease), background 0.2s var(--ync-ease);
}

.ync-section--muted .ync-card {
  background: #fff;
}

.ync-card:hover {
  border-color: #d4d4d4;
  background: rgba(237, 237, 237, 0.25);
}

.ync-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.ync-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ync-ink-muted);
  line-height: 1.5;
}

/* Product. bento grid */
.ync-section--product {
  background: var(--ync-bg-muted);
}

.ync-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.ync-bento-cell {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  padding: 1.35rem 1.4rem;
  background: #fff;
  transition: border-color 0.2s var(--ync-ease), transform 0.2s var(--ync-ease);
}

.ync-bento-cell:hover {
  border-color: #d4d4d4;
  transform: translateY(-2px);
}

.ync-bento-cell--wide {
  grid-column: span 2;
}

.ync-bento-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ync-ink-soft);
  margin-bottom: 0.65rem;
}

.ync-bento-cell h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.ync-bento-cell p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ync-ink-muted);
  line-height: 1.5;
  max-width: 42ch;
}

/* Solutions. split + numbered list */
.ync-section--solutions {
  background: #fff;
}

.ync-solutions-split {
  display: grid;
  grid-template-columns: minmax(0, 22rem) 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.ync-solutions-intro {
  position: sticky;
  top: calc(var(--ync-topbar) + 1.5rem);
}

.ync-section-lead--flush {
  margin-bottom: 0;
}

.ync-solutions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ync-border);
}

.ync-solution-row {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--ync-border);
}

.ync-solution-num {
  font-family: var(--ync-serif);
  font-size: 1.125rem;
  color: var(--ync-ink-soft);
  line-height: 1.2;
  padding-top: 0.1rem;
}

.ync-solution-row h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.ync-solution-row p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ync-ink-muted);
  line-height: 1.5;
}

/* Industries. dark mosaic */
.ync-section--industries {
  background: var(--ync-ink);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ync-section--industries .ync-display {
  color: #fff;
}

.ync-eyebrow--inverse {
  color: rgba(255, 255, 255, 0.55);
}

.ync-section-lead--inverse {
  color: rgba(255, 255, 255, 0.65);
}

.ync-industries-header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.ync-industry-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ync-r-lg);
  overflow: hidden;
}

.ync-industry-cell {
  background: var(--ync-ink);
  padding: 1.5rem 1.4rem;
  transition: background 0.2s var(--ync-ease);
}

.ync-industry-cell:hover {
  background: rgb(35, 35, 35);
}

.ync-industry-cell h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: #fff;
}

.ync-industry-cell p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* Workflow steps */
.ync-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.ync-workflow-step {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r);
  padding: 0.85rem;
  background: #fff;
  font-size: 0.75rem;
  text-align: center;
  min-width: 0;
  overflow-wrap: anywhere;
}

.ync-workflow-step strong {
  display: block;
  font-size: 0.6875rem;
  color: var(--ync-ink-soft);
  margin-bottom: 0.35rem;
}

/* Demo */
#ync-demo {
  min-width: 0;
  max-width: 100%;
}

.ync-demo-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  overflow: hidden;
  min-height: 480px;
  min-width: 0;
  max-width: 100%;
}

.ync-demo-steps {
  background: var(--ync-bg-muted);
  border-right: 1px solid var(--ync-border);
  padding: 0.75rem;
}

.ync-demo-step-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.25rem;
  border: 1px solid transparent;
  border-radius: var(--ync-r-sm);
  background: transparent;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ync-ink-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.ync-demo-step-btn.is-active,
.ync-demo-step-btn:hover {
  background: #fff;
  border-color: var(--ync-border);
  color: var(--ync-ink);
}

.ync-demo-panel {
  padding: 1.5rem;
  background: #fff;
  min-width: 0;
  overflow-x: auto;
}

.ync-demo-panel[hidden] { display: none !important; }

.ync-demo-start-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.ync-demo-start-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ync-demo-start-option:hover {
  border-color: #d4d4d4;
  background: rgba(247, 247, 247, 0.6);
}

.ync-demo-start-option.is-active {
  border-color: var(--ync-ink);
  background: rgba(247, 247, 247, 0.85);
}

.ync-demo-start-option-icon {
  flex-shrink: 0;
  width: 1.25rem;
  font-size: 0.9375rem;
  color: var(--ync-ink-soft);
  line-height: 1.2;
}

.ync-demo-start-option-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ync-demo-start-option-copy strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ync-ink);
}

.ync-demo-start-option-copy span {
  font-size: 0.75rem;
  color: var(--ync-ink-muted);
  line-height: 1.4;
}

.ync-demo-upload-zone {
  border-style: dashed;
  text-align: center;
  padding: 2.5rem;
}

.ync-demo-icp-fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ync-demo-icp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ync-demo-icp-field > span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ync-ink-muted);
}

.ync-demo-icp-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-sm);
  background: var(--ync-bg-muted);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ync-ink);
}

.ync-demo-icp-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: var(--ync-ink-soft);
}

.ync-demo-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.ync-demo-table th,
.ync-demo-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--ync-border);
  text-align: left;
}

.ync-demo-table th {
  color: var(--ync-ink-muted);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ync-score-pill {
  display: inline-flex;
  min-width: 2rem;
  justify-content: center;
  padding: 0.15rem 0.45rem;
  border-radius: var(--ync-r-pill);
  background: var(--ync-ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Pricing */
.ync-pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-pill);
  padding: 0.2rem;
  margin-bottom: 2rem;
}

.ync-pricing-toggle button {
  border: none;
  background: transparent;
  padding: 0.45rem 1rem;
  border-radius: var(--ync-r-pill);
  font-family: inherit;
  font-weight: 550;
  font-size: 0.8125rem;
  cursor: pointer;
}

.ync-pricing-toggle button.is-active {
  background: var(--ync-ink);
  color: #fff;
}

.ync-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ync-price-card {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  padding: 1.5rem;
  background: #fff;
}

.ync-price-card--featured {
  border-color: var(--ync-ink);
}

.ync-price-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }

.ync-price-card ul {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--ync-ink-muted);
}

.ync-price-card ul li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--ync-border);
}

/* FAQ */
.ync-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.ync-faq-intro .ync-section-lead {
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.ync-faq {
  max-width: none;
}

.ync-faq details {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r);
  padding: 0;
  margin-bottom: 0.55rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ync-faq details[open] {
  border-color: #d4d4d4;
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.04);
}

.ync-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  list-style: none;
  padding: 1rem 1.1rem;
  color: var(--ync-ink);
}

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

.ync-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ync-border);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ync-ink-muted);
  transition: transform 0.2s var(--ync-ease), border-color 0.15s ease, background 0.15s ease;
}

.ync-faq details[open] summary::after {
  content: "−";
  border-color: var(--ync-ink);
  background: var(--ync-ink);
  color: #fff;
}

.ync-faq p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--ync-ink-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 58ch;
}

.ync-faq p a {
  color: var(--ync-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.ync-footer {
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid var(--ync-border);
}

.ync-footer .ync-container {
  padding-bottom: 0;
}

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

.ync-footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ync-ink-soft);
  margin: 0 0 0.75rem;
}

.ync-footer a {
  display: block;
  font-size: 0.875rem;
  color: var(--ync-ink-muted);
  padding: 0.2rem 0;
}

.ync-footer a:hover { color: var(--ync-ink); }

/* App shell */
.ync-app { display: flex; min-height: 100vh; }

.ync-app-sidebar {
  width: var(--ync-sidebar);
  flex-shrink: 0;
  border-right: 1px solid var(--ync-border);
  background: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
}

.ync-app-main {
  margin-left: var(--ync-sidebar);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ync-app-topbar {
  height: var(--ync-topbar);
  border-bottom: 1px solid var(--ync-border);
  display: flex;
  align-items: center;
  padding: 0 var(--ync-gutter);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.ync-app-topbar > * {
  width: 100%;
  max-width: var(--ync-max-wide);
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

.ync-app-content {
  flex: 1;
  width: 100%;
  max-width: var(--ync-max-wide);
  margin-inline: auto;
  padding: 1.25rem var(--ync-gutter) 2rem;
  box-sizing: border-box;
}

.ync-sidebar-brand {
  padding: 1rem;
  border-bottom: 1px solid var(--ync-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ync-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
}

.ync-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--ync-r-sm);
  font-size: 0.875rem;
  color: var(--ync-ink-muted);
  margin-bottom: 0.1rem;
}

.ync-sidebar-link:hover,
.ync-sidebar-link.is-active {
  background: var(--ync-hover);
  color: var(--ync-ink);
}

.ync-sidebar-section {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ync-ink-soft);
  padding: 0.75rem 0.65rem 0.25rem;
}

.ync-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ync-widget {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  padding: 1rem;
  background: #fff;
}

.ync-widget .label {
  font-size: 0.75rem;
  color: var(--ync-ink-muted);
  margin-bottom: 0.35rem;
}

.ync-widget .value {
  font-family: var(--ync-serif);
  font-size: 1.75rem;
}

/* Auth */
.ync-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem var(--ync-gutter);
}

.ync-auth-card {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  padding: 2rem;
  background: #fff;
}

.ync-auth-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.ync-auth-card input,
.ync-auth-card select,
.ync-auth-card textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-sm);
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.ync-auth-card input:focus {
  outline: 2px solid rgba(23, 23, 23, 0.1);
  border-color: var(--ync-ink);
}

/* Onboarding. Anara-inspired */
.ync-onboard-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.ync-onboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--ync-topbar);
  padding: 0 var(--ync-gutter);
  border-bottom: 1px solid var(--ync-border);
}

.ync-onboard-topbar-label {
  font-family: var(--ync-serif);
  font-size: 1.05rem;
  color: var(--ync-ink);
}

.ync-onboard-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 6vw, 3.5rem) var(--ync-gutter) 3rem;
}

.ync-onboard-main--centered {
  align-items: center;
}

.ync-onboard-shell {
  width: 100%;
  max-width: 34rem;
}

.ync-onboard-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.ync-onboard-dot {
  width: 1.35rem;
  height: 0.22rem;
  border-radius: var(--ync-r-pill);
  background: var(--ync-border);
  transition: background 0.25s var(--ync-ease), width 0.25s var(--ync-ease);
}

.ync-onboard-dot.is-active {
  width: 1.75rem;
  background: var(--ync-ink);
}

.ync-onboard-dot.is-done {
  background: #c8c8c8;
}

.ync-onboard-title {
  font-size: clamp(1.65rem, 4vw, 2rem);
  margin: 0 0 0.75rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.ync-onboard-lead {
  margin: 0 0 1.5rem;
  color: var(--ync-ink-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 32ch;
}

.ync-onboard-main--centered .ync-onboard-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ync-onboard-main--centered .ync-onboard-title {
  text-align: center;
}

.ync-onboard-main--centered .ync-onboard-actions {
  justify-content: center;
}

.ync-onboard-body {
  margin-bottom: 1.5rem;
}

.ync-onboard-input,
.ync-onboard-textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--ync-border);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ync-ink);
  background: transparent;
  transition: border-color 0.15s ease;
}

.ync-onboard-input--pill {
  padding: 0.8rem 1rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-pill);
  margin-bottom: 0.65rem;
  background: #fafafa;
}

.ync-onboard-input:focus,
.ync-onboard-textarea:focus {
  outline: none;
  border-color: var(--ync-ink);
}

.ync-onboard-textarea {
  padding: 1rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  background: #fafafa;
  resize: vertical;
  min-height: 7rem;
  line-height: 1.5;
}

.ync-onboard-welcome-card {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  overflow: hidden;
  background: #fff;
}

.ync-onboard-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ync-ink-muted);
  border-bottom: 1px solid var(--ync-border);
}

.ync-onboard-feature:last-child {
  border-bottom: none;
}

.ync-onboard-feature-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  color: var(--ync-ink-soft);
  font-size: 0.85rem;
  padding-top: 0.1rem;
}

.ync-onboard-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ync-onboard-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ync-onboard-card:hover {
  border-color: #d4d4d4;
  background: rgba(247, 247, 247, 0.6);
}

.ync-onboard-card.is-selected {
  border-color: var(--ync-ink);
  background: rgba(247, 247, 247, 0.85);
}

.ync-onboard-card-icon {
  flex-shrink: 0;
  width: 1.5rem;
  font-size: 1rem;
  color: var(--ync-ink-soft);
  line-height: 1.2;
}

.ync-onboard-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ync-onboard-card-copy strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ync-ink);
}

.ync-onboard-card-copy span {
  font-size: 0.8125rem;
  color: var(--ync-ink-muted);
  line-height: 1.45;
}

.ync-onboard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ync-onboard-chip {
  padding: 0.55rem 1rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-pill);
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ync-ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ync-onboard-chip:hover {
  border-color: #d4d4d4;
  background: rgba(247, 247, 247, 0.7);
}

.ync-onboard-chip.is-selected {
  border-color: var(--ync-ink);
  background: var(--ync-ink);
  color: #fff;
}

.ync-onboard-invite {
  display: flex;
  flex-direction: column;
}

.ync-onboard-add {
  margin-top: 0.35rem;
  padding: 0.35rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ync-ink-muted);
  cursor: pointer;
  text-align: left;
}

.ync-onboard-add:hover {
  color: var(--ync-ink);
}

.ync-onboard-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.ync-onboard-skip {
  margin-left: auto;
  padding: 0.55rem 0.25rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ync-ink-muted);
  cursor: pointer;
}

.ync-onboard-skip:hover {
  color: var(--ync-ink);
}

@media (max-width: 768px) {
  .ync-onboard-main--centered .ync-onboard-lead {
    max-width: none;
  }

  .ync-onboard-skip {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Animations */
.ync-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ync-ease), transform 0.5s var(--ync-ease);
}

.ync-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Contact */
.ync-contact {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5rem);
}

.ync-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.ync-contact-aside {
  padding-top: 0.25rem;
}

.ync-contact-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ync-ink-soft);
  margin: 0 0 0.85rem;
}

.ync-contact-aside h1 {
  margin: 0 0 1rem;
  font-family: var(--ync-font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ync-contact-lead {
  margin: 0 0 2rem;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ync-ink-muted);
}

.ync-contact-points {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.ync-contact-points li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: var(--ync-ink-muted);
  line-height: 1.5;
}

.ync-contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--ync-ink);
}

.ync-contact-email-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r);
  background: var(--ync-bg-muted);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ync-contact-email-card:hover {
  border-color: #d4d4d4;
  background: #fff;
}

.ync-contact-email-card span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ync-ink-soft);
}

.ync-contact-email-card strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ync-ink);
}

.ync-contact-form-card {
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
}

.ync-contact-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ync-ink);
}

.ync-contact-form-sub {
  margin: 0 0 1.75rem;
  font-size: 0.8125rem;
  color: var(--ync-ink-muted);
}

.ync-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

.ync-contact-field {
  margin-bottom: 1.35rem;
}

.ync-contact-field--full {
  grid-column: 1 / -1;
}

.ync-contact-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ync-ink-muted);
}

.ync-contact-field input,
.ync-contact-field textarea {
  width: 100%;
  padding: 0.7rem 0;
  border: none;
  border-bottom: 1px solid var(--ync-border);
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ync-ink);
  transition: border-color 0.15s ease;
}

.ync-contact-field input::placeholder,
.ync-contact-field textarea::placeholder {
  color: var(--ync-ink-soft);
  font-weight: 450;
}

.ync-contact-field input:focus,
.ync-contact-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ync-ink);
}

.ync-contact-field textarea {
  min-height: 7.5rem;
  padding-top: 0.55rem;
  resize: vertical;
  line-height: 1.55;
}

.ync-contact-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
}

.ync-contact-status {
  display: none;
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--ync-ink-muted);
}

.ync-contact-status.is-visible {
  display: block;
}

.ync-contact-status.is-error {
  color: #c62828;
}

@media (max-width: 1024px) {
  .ync-hero-grid { grid-template-columns: 1fr; }
  .ync-grid-3 { grid-template-columns: 1fr 1fr; }
  .ync-bento { grid-template-columns: 1fr 1fr; }
  .ync-bento-cell--wide { grid-column: span 2; }
  .ync-solutions-split { grid-template-columns: 1fr; }
  .ync-solutions-intro { position: static; }
  .ync-industry-mosaic { grid-template-columns: 1fr 1fr; }
  .ync-pricing-grid { grid-template-columns: 1fr 1fr; }
  .ync-widgets { grid-template-columns: 1fr 1fr; }
  .ync-workflow { grid-template-columns: repeat(2, 1fr); }
  .ync-footer-grid { grid-template-columns: 1fr 1fr; }
  .ync-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ync-faq-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.ync-sidebar-toggle {
  border: 1px solid var(--ync-border);
  background: #fff;
  border-radius: var(--ync-r-sm);
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ync-ink);
  flex-shrink: 0;
}

.ync-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.ync-sidebar-backdrop.is-visible {
  display: block;
}

body.ync-sidebar-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .ync-reveal {
    transform: none;
  }

  .ync-nav { display: none; }
  .ync-grid-3,
  .ync-bento,
  .ync-industry-mosaic,
  .ync-pricing-grid,
  .ync-widgets { grid-template-columns: 1fr; }
  .ync-bento-cell--wide { grid-column: span 1; }
  .ync-workflow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ync-header-inner {
    gap: 0.5rem;
    padding-inline: 1rem;
  }
  .ync-header-actions {
    gap: 0.35rem;
    flex-shrink: 1;
    min-width: 0;
  }
  .ync-header-actions .ync-btn--sm {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }
  .ync-demo-layout { grid-template-columns: minmax(0, 1fr); }
  .ync-demo-steps {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--ync-border);
    -webkit-overflow-scrolling: touch;
  }
  .ync-demo-step-btn { white-space: nowrap; width: auto; flex: 0 0 auto; }
  .ync-demo-start-options { grid-template-columns: 1fr; }
  .ync-app-sidebar { transform: translateX(-100%); transition: transform 0.25s ease; }
  .ync-app-sidebar.is-open { transform: none; }
  .ync-app-main { margin-left: 0; }
  .ync-contact-fields { grid-template-columns: 1fr; gap: 0; }
}

.hide-mobile { display: none; }

/* The header nav needs ~920px to breathe with five links; below that the
   burger menu takes over (matching media query lives in shell.js). */
@media (min-width: 921px) {
  .hide-mobile { display: initial; }
  .hide-desktop { display: none; }
}

/* App topbar actions */
.ync-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* Interactive cards (Get started) */
.ync-card--interactive {
  transition: border-color 0.2s var(--ync-ease), box-shadow 0.2s var(--ync-ease);
}
.ync-card--interactive:hover {
  border-color: var(--ync-ink-soft);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Campaign history rows */
.ync-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ync-border);
}
.ync-history-row:last-child { border-bottom: none; }
.ync-history-row-main { flex: 1; min-width: 12rem; }
.ync-history-row-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ync-history-row h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  letter-spacing: -0.02em;
}
.ync-history-row .meta {
  font-size: 0.8rem;
  color: var(--ync-ink-muted);
  margin: 0;
}

/* Wizard content inside YNC shell */
.ync-app-content--wizard {
  max-width: 52rem;
}

/* Hero footnote (credit mention) */
.ync-hero-note { margin-top: 14px; font-size: 13.5px; color: var(--ync-text-faint); }

/* Home hero, centered entry console with room to breathe */
.ync-home-hero { padding: clamp(3rem, 9vh, 7rem) 0 clamp(2.5rem, 6vh, 4.5rem); }
.ync-home-hero .ync-container { display: flex; justify-content: center; }

/* How it works, four calm steps */
.ync-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.ync-step { border: 1px solid var(--ync-border); border-radius: 16px; padding: 1.5rem 1.35rem; background: #fff; }
.ync-step-n { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: var(--ync-accent-soft); color: var(--ync-accent-strong); font-weight: 700; font-size: 0.9rem; }
.ync-step h3 { font-size: 1.02rem; margin: 0.9rem 0 0.4rem; letter-spacing: -0.01em; }
.ync-step p { font-size: 0.9rem; line-height: 1.6; color: var(--ync-text-muted); margin: 0; }
@media (max-width: 900px) { .ync-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ync-steps { grid-template-columns: 1fr; } }

/* ============================================================
   About page
   ============================================================ */
.ync-about-hero { padding-top: clamp(3rem, 7vw, 5rem); }
.ync-about-statement {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.28; letter-spacing: -0.02em;
  max-width: 22ch; margin: 0.75rem auto 0; text-wrap: balance;
}
.ync-about-split {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 5vw, 4rem); align-items: start;
}
.ync-about-split-head .ync-display { margin-bottom: 0; }
.ync-about-split-body p {
  font-size: 1.02rem; line-height: 1.75; color: var(--ync-text-secondary);
  margin: 0 0 1.15rem;
}
.ync-about-split-body p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .ync-about-split { grid-template-columns: 1fr; gap: 1.25rem; } }

.ync-values {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem; margin-top: 2.25rem;
}
.ync-value {
  border: 1px solid var(--ync-border); border-radius: 16px;
  padding: 1.6rem 1.5rem; background: var(--ync-bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.ync-value:hover { border-color: var(--ync-border-strong); box-shadow: var(--ync-shadow-sm); transform: translateY(-2px); }
.ync-value h3 { font-size: 1.05rem; margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.ync-value p { font-size: 0.925rem; line-height: 1.65; color: var(--ync-text-muted); margin: 0; }
@media (max-width: 900px) { .ync-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ync-values { grid-template-columns: 1fr; } }

/* ============================================================
   Contact page (methods grid, details, select, fine print)
   ============================================================ */
.ync-contact-hero { padding-top: clamp(3rem, 7vw, 5rem); }
.ync-contact-methods {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem;
}
.ync-method {
  border: 1px solid var(--ync-border); border-radius: 16px;
  padding: 1.5rem 1.4rem; background: var(--ync-bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.ync-method:hover { border-color: var(--ync-border-strong); box-shadow: var(--ync-shadow-sm); transform: translateY(-2px); }
.ync-method-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--ync-accent-soft); color: var(--ync-accent-strong); margin-bottom: 0.95rem;
}
.ync-method h3 { font-size: 1.02rem; margin: 0 0 0.4rem; letter-spacing: -0.01em; }
.ync-method p { font-size: 0.9rem; line-height: 1.6; color: var(--ync-text-muted); margin: 0; }
@media (max-width: 900px) { .ync-contact-methods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ync-contact-methods { grid-template-columns: 1fr; } }

.ync-contact-field select {
  width: 100%; padding: 0.7rem 1.9rem 0.7rem 0;
  border: none; border-bottom: 1px solid var(--ync-border); border-radius: 0;
  background: transparent; font-family: inherit; font-size: 0.9375rem; font-weight: 500;
  color: var(--ync-text); cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.2rem center;
  transition: border-color 0.15s ease;
}
.ync-contact-field select:focus { outline: none; border-bottom-color: var(--ync-ink); }

.ync-contact-detail {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.85rem 0; border-top: 1px solid var(--ync-border);
  font-size: 0.9375rem; color: var(--ync-text-secondary);
}
.ync-contact-detail:first-of-type { border-top: none; }
.ync-contact-detail-label {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ync-text-faint);
}
.ync-contact-detail a { color: var(--ync-accent); font-weight: 600; }
.ync-contact-fineprint { margin: 0.85rem 0 0; font-size: 0.78rem; color: var(--ync-text-faint); }

/* ============================================================
   Department ecosystem map (injected via [data-ync-orgmap])
   ============================================================ */
.ync-orgmap { display: block; width: 100%; max-width: 720px; margin: 2.25rem auto 0; }
.ync-org-link { fill: none; stroke: var(--ync-border-strong); stroke-width: 1.5; }
.ync-org-pulses path {
  fill: none; stroke: var(--ync-accent); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 9 91; stroke-dashoffset: 100; opacity: 0.9;
  animation: ync-org-flow 3.6s linear infinite;
}
.ync-org-pulses path:nth-of-type(2) { animation-delay: 0.5s; }
.ync-org-pulses path:nth-of-type(3) { animation-delay: 1s; }
.ync-org-pulses path:nth-of-type(4) { animation-delay: 1.5s; }
.ync-org-pulses path:nth-of-type(5) { animation-delay: 2s; }
.ync-org-pulses path:nth-of-type(6) { animation-delay: 0.25s; }
.ync-org-pulses path:nth-of-type(7) { animation-delay: 0.75s; }
.ync-org-pulses path:nth-of-type(8) { animation-delay: 1.25s; }
.ync-org-pulses path:nth-of-type(9) { animation-delay: 1.75s; }
.ync-org-pulses path:nth-of-type(10) { animation-delay: 2.25s; }
@keyframes ync-org-flow { to { stroke-dashoffset: 0; } }
.ync-org-halo {
  fill: var(--ync-accent-soft); opacity: 0.5;
  transform-box: fill-box; transform-origin: center;
  animation: ync-org-halo 4.5s ease-in-out infinite;
}
@keyframes ync-org-halo {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.16); opacity: 0.2; }
}
.ync-org-node rect { fill: #fff; stroke: var(--ync-border-strong); stroke-width: 1.5; transition: stroke 0.18s ease; }
.ync-org-node:hover rect { stroke: var(--ync-accent); }
.ync-org-node text {
  font-family: var(--ync-font); font-size: 16.5px; font-weight: 600;
  fill: var(--ync-text); text-anchor: middle; dominant-baseline: middle; letter-spacing: -0.01em;
}
.ync-org-node--hub rect { fill: var(--ync-accent-soft); stroke: var(--ync-accent); stroke-opacity: 0.45; }
.ync-org-node--hub text { fill: var(--ync-accent-strong); }
@media (prefers-reduced-motion: reduce) {
  .ync-org-pulses path { animation: none; stroke-dashoffset: 46; }
  .ync-org-halo { animation: none; }
}
.ync-orgmap-m { display: none; }
@media (max-width: 640px) {
  .ync-orgmap { display: none; }
  .ync-orgmap-m { display: block; max-width: 300px; margin: 1.9rem auto 0; }
}
.ync-orgm-hub {
  display: block; text-align: center; font-weight: 700; font-size: 0.95rem;
  color: var(--ync-accent-strong); background: var(--ync-accent-soft);
  border: 1px solid var(--ync-accent-border, #ddd4f7); border-radius: 12px; padding: 0.6rem 1rem;
}
.ync-orgmap-m ul { list-style: none; margin: 0.9rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.ync-orgmap-m li { position: relative; padding-left: 1.35rem; font-size: 0.9rem; }
.ync-orgmap-m li::before {
  content: ""; position: absolute; left: 0.3rem; top: 0.42em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--ync-accent); opacity: 0.6;
}
.ync-orgmap-m li strong { letter-spacing: -0.01em; }
.ync-orgmap-m li span { color: var(--ync-text-muted); margin-left: 0.45rem; font-size: 0.8125rem; }

/* Connection chips under the map */
.ync-team-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem; margin-top: 2rem; }
.ync-team-chips span {
  font-size: 0.8125rem; font-weight: 600; color: var(--ync-text-secondary);
  border: 1px solid var(--ync-border); background: var(--ync-bg); border-radius: 999px; padding: 0.45rem 1rem;
}

/* ============================================================
   Department sections (what happens, what the AI does, what you get)
   ============================================================ */
.ync-flow3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0 0; }
.ync-flow3 > div {
  position: relative; border: 1px solid var(--ync-border); border-radius: 14px;
  background: var(--ync-bg); padding: 1.1rem 1.2rem;
}
.ync-flow3-k {
  display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ync-accent-strong); margin-bottom: 0.35rem;
}
.ync-flow3 p { margin: 0; font-size: 0.95rem; color: var(--ync-text-secondary); }
.ync-flow3 > div:not(:last-child)::after {
  content: "\2192"; position: absolute; right: -0.92rem; top: 50%;
  transform: translateY(-50%); color: var(--ync-text-faint); font-size: 1rem; z-index: 1;
}
@media (max-width: 720px) {
  .ync-flow3 { grid-template-columns: 1fr; }
  .ync-flow3 > div::after { display: none; }
}

.ync-handoff {
  display: inline-flex; align-items: center; gap: 0.5rem; margin: 2rem 0 0;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--ync-accent-soft); color: var(--ync-accent-strong);
  font-size: 0.85rem; font-weight: 600;
}
.ync-handoff svg { flex: none; }
.ync-handoff--sm { margin-top: auto; font-size: 0.78rem; padding: 0.4rem 0.85rem; align-self: flex-start; }

/* Marketing capability cards */
.ync-caps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.8rem; margin-top: 2rem; }
.ync-cap {
  border: 1px solid var(--ync-border); border-radius: 14px; background: var(--ync-bg);
  padding: 1rem 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.ync-cap:hover { border-color: var(--ync-border-strong); transform: translateY(-2px); box-shadow: var(--ync-shadow-sm); }
.ync-cap svg { color: var(--ync-accent-strong); }
.ync-cap span { font-size: 0.875rem; font-weight: 600; letter-spacing: -0.01em; }
/* 10 cards divide evenly at 5 and 2 columns; 3 would leave an orphan row. */
@media (max-width: 980px) { .ync-caps { grid-template-columns: repeat(2, 1fr); } }

/* Platform icon tiles */
.ync-plats-wrap { margin-top: 2.25rem; }
.ync-plats-label { font-size: 0.8125rem; color: var(--ync-text-muted); margin: 0 0 0.8rem; }
.ync-plats { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ync-plat {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--ync-border); background: var(--ync-bg); color: var(--ync-text-secondary);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.ync-plat:hover { color: var(--ync-text); border-color: var(--ync-border-strong); transform: translateY(-2px); }
.ync-plat svg { width: 20px; height: 20px; }

/* AI sales rep: profile card + day in the life */
.ync-rep {
  display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.25rem; align-items: start;
}
@media (max-width: 880px) { .ync-rep { grid-template-columns: 1fr; } }
.ync-rep-card {
  border: 1px solid var(--ync-border); border-radius: 18px; background: var(--ync-bg);
  box-shadow: var(--ync-shadow); padding: 1.5rem;
}
.ync-rep-head { display: flex; align-items: center; gap: 0.9rem; }
.ync-rep-avatar {
  position: relative; width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--ync-accent) 0%, #171717 100%);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; flex: none;
}
.ync-rep-avatar i {
  position: absolute; right: -6px; bottom: -6px; font-style: normal;
  font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.06em;
  background: #171717; color: #fff; border: 2px solid #fff; border-radius: 6px; padding: 1px 4px;
}
.ync-rep-id { min-width: 0; }
.ync-rep-id strong { display: block; font-size: 1.05rem; letter-spacing: -0.01em; }
.ync-rep-id span { display: block; font-size: 0.8125rem; color: var(--ync-text-muted); margin-top: 1px; }
.ync-rep-status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; color: var(--ync-success);
  background: var(--ync-success-bg); padding: 0.3rem 0.6rem; border-radius: 999px; white-space: nowrap;
}
.ync-rep-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.ync-rep-rows { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.ync-rep-rows li {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.55rem 0;
  border-top: 1px solid var(--ync-border); font-size: 0.9rem; color: var(--ync-text-secondary);
}
.ync-rep-rows svg { color: var(--ync-text-faint); flex: none; }
.ync-rep-foot {
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--ync-border);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.ync-rep-chans { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ync-rep-chans .ync-plat { width: 36px; height: 36px; border-radius: 10px; }
.ync-rep-chans .ync-plat svg { width: 16px; height: 16px; }
.ync-rep-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ync-rep-chips span {
  font-size: 0.75rem; font-weight: 600; color: var(--ync-text-secondary);
  background: var(--ync-bg-subtle); border: 1px solid var(--ync-border);
  border-radius: 999px; padding: 0.3rem 0.7rem;
}
.ync-repflow {
  list-style: none; counter-reset: rep; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
}
.ync-repflow li {
  counter-increment: rep; position: relative;
  border: 1px solid var(--ync-border); border-radius: 14px; background: var(--ync-bg);
  padding: 0.95rem 1rem 0.95rem 3.1rem;
}
.ync-repflow li::before {
  content: counter(rep); position: absolute; left: 0.95rem; top: 0.95rem;
  width: 26px; height: 26px; border-radius: 9px;
  background: var(--ync-accent-soft); color: var(--ync-accent-strong);
  font-weight: 700; font-size: 0.8125rem; display: grid; place-items: center;
}
.ync-repflow strong { display: block; font-size: 0.9rem; letter-spacing: -0.01em; }
.ync-repflow span { display: block; font-size: 0.8125rem; color: var(--ync-text-muted); margin-top: 2px; }
@media (max-width: 560px) { .ync-repflow { grid-template-columns: 1fr; } }
.ync-rep-note { margin: 1.4rem 0 0; font-size: 0.875rem; color: var(--ync-text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.ync-rep-note svg { color: var(--ync-success); flex: none; }

/* Four more departments */
.ync-deptgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; margin-top: 2.25rem; }
@media (max-width: 760px) { .ync-deptgrid { grid-template-columns: 1fr; } }
.ync-dept-card {
  border: 1px solid var(--ync-border); border-radius: 16px; background: var(--ync-bg);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.ync-dept-card:hover { border-color: var(--ync-border-strong); box-shadow: var(--ync-shadow-sm); transform: translateY(-2px); }
.ync-dept-card h3 { margin: 0.95rem 0 0.3rem; font-size: 1.1rem; letter-spacing: -0.01em; }
.ync-dept-card > p { margin: 0 0 1rem; font-size: 0.925rem; color: var(--ync-text-muted); }
.ync-dept-list {
  list-style: none; margin: 0 0 1.2rem; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 0.8rem;
}
.ync-dept-list li { position: relative; padding-left: 1.05rem; font-size: 0.875rem; color: var(--ync-text-secondary); }
.ync-dept-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ync-accent); opacity: 0.55;
}
