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

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@450;500;550;600&display=swap');

:root {
  --ync-ink: rgb(23, 23, 23);
  --ync-ink-muted: #666666;
  --ync-ink-soft: #9a9a9a;
  --ync-bg: #ffffff;
  --ync-bg-muted: rgb(247, 247, 247);
  --ync-border: #e5e5e5;
  --ync-hover: rgba(237, 237, 237, 0.99);
  --ync-font: "Inter", system-ui, sans-serif;
  --ync-serif: "Instrument Serif", Georgia, serif;
  --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-r-sm: 8px;
  --ync-r: 12px;
  --ync-r-lg: 16px;
  --ync-r-pill: 9999px;
  --ync-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.ync-page,
body.ync-app {
  margin: 0;
  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-serif);
  font-weight: 400;
  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);
}

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

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

.ync-main {
  overflow-x: hidden;
}

/* 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;
}

.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: var(--ync-r-pill);
  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(7, 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;
}

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

/* Demo */
.ync-demo-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border: 1px solid var(--ync-border);
  border-radius: var(--ync-r-lg);
  overflow: hidden;
  min-height: 480px;
}

.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;
}

.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%;
  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(4, 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-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  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(4, 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-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-demo-layout { grid-template-columns: 1fr; }
  .ync-demo-steps { display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--ync-border); }
  .ync-demo-step-btn { white-space: nowrap; width: 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; }

@media (min-width: 769px) {
  .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;
}
