/* ==========================================================================
   SyncaDoc Marketing Site Styles
   Imports unified design system tokens
   ========================================================================== */

/* Import design system for tokens and base styles */
/* Note: For static site, CSS is inlined - see design-system.css */

/* Legacy variable aliases for backwards compatibility */
:root {
  --background: var(--bg);
  --primary: var(--accent);
  --primary-dark: var(--accent-hover);
  --primary-light: var(--accent-light);
  --secondary: var(--accent-2);
  --secondary-light: var(--accent-2-light);
}

body {
  margin: 0;
  font-family: "Newsreader", serif;
  color: var(--ink);
  overscroll-behavior-y: contain;
  background: radial-gradient(circle at top left, #fdf6ea, transparent 50%),
    radial-gradient(circle at 80% 20%, #eaf4ff, transparent 55%),
    linear-gradient(140deg, #fdf8f1, #f4f7ff);
  min-height: 100vh;
}

/* Dark mode body background */
html[data-theme="dark"] body {
  background: radial-gradient(circle at top left, rgba(128, 128, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.05), transparent 55%),
    linear-gradient(135deg, #020617 0%, #0f172a 100%);
  background-attachment: fixed;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) body {
    background: radial-gradient(circle at top left, rgba(128, 128, 255, 0.08), transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.05), transparent 55%),
      linear-gradient(135deg, #020617 0%, #0f172a 100%);
    background-attachment: fixed;
  }
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(20px, 3vw, 40px) 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.mark {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Let the img determine size - no clipping or extra border-radius */
}

.mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wordmark {
  font-size: 18px;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  padding: 10px 14px;
  min-height: var(--touch-minimum);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--easing-default),
              color var(--duration-fast) var(--easing-default);
}

.nav-link:hover {
  background: rgba(13, 110, 120, 0.1);
  color: var(--secondary);
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  min-height: var(--touch-minimum);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--easing-default),
              box-shadow var(--duration-normal) var(--easing-default),
              background var(--duration-normal) var(--easing-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.button.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(92, 92, 217, 0.2);
}

.button.primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.button.primary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-md), var(--focus-ring);
}

.button.ghost {
  border-color: var(--stroke);
  color: var(--ink);
  background: var(--surface);
  transition: all var(--duration-normal) var(--easing-default);
}

.button.ghost:hover {
  border-color: var(--primary);
  background: rgba(128, 128, 255, 0.08);
}

.button.ghost:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.button.secondary {
  background: rgba(128, 128, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

.button.secondary:hover {
  background: rgba(128, 128, 255, 0.2);
}

.button.secondary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.button.text {
  color: var(--primary);
  background: none;
  padding: 12px 8px;
  min-height: var(--touch-minimum);
  transition: color var(--duration-fast) var(--easing-default);
}

.button.text:hover {
  color: var(--primary-dark);
}

.button.text:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-bottom: 64px;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 16px 0;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 12px;
}

.tagline {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  color: var(--accent-2);
  margin: 0 0 8px;
  font-weight: 500;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.signal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.signal-label {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  transition: box-shadow var(--duration-slow) var(--easing-default);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-title {
  font-family: "Sora", sans-serif;
  margin: 0;
}

.pill {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 124, 134, 0.12);
  color: var(--accent);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--stroke);
}

.metric-label {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.metric-value {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  margin: 4px 0 0;
}

/* Stats Section */
.stats-section {
  margin: 72px 0;
  text-align: center;
}

.stats-header {
  max-width: 640px;
  margin: 0 auto 40px;
}

.stats-header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  margin-top: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  transition: transform var(--duration-normal) var(--easing-default),
              box-shadow var(--duration-normal) var(--easing-default);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stat-card.stat-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
}

.stat-card.stat-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(128, 128, 255, 0.2);
}

.stat-card.stat-primary .stat-source {
  color: rgba(255, 255, 255, 0.85);
}

.stat-value {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  white-space: nowrap;
  text-align: center;
}

.stat-label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.stat-card.stat-primary .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.stat-source {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  color: var(--muted);
  margin-top: auto;
  opacity: 0.7;
}

.stats-cta {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--accent-2);
  font-weight: 500;
  margin-top: 32px;
}

.stat-source a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  transition: opacity 0.2s ease;
}

.stat-source a:hover {
  opacity: 0.8;
}

.stat-source a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.stat-card.stat-primary .stat-source a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 4px;
  }

  .stat-card {
    padding: 16px 20px;
    gap: 4px;
  }

  .stat-value {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 13px;
  }

  .stat-source {
    font-size: 10px;
    margin-top: 4px;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section {
  margin: 72px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.section h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
  line-height: 1.6;
}

/* Cloud Sync Section */
.cloud-sync-section {
  text-align: center;
}

.cloud-sync-section .section-header {
  margin-left: auto;
  margin-right: auto;
}

.cloud-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.cloud-provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--easing-default),
              box-shadow var(--duration-normal) var(--easing-default),
              border-color var(--duration-normal) var(--easing-default);
  min-width: 120px;
}

.cloud-provider:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.cloud-provider img {
  width: 40px;
  height: 40px;
}

.cloud-provider span {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.cloud-sync-note {
  margin-top: 32px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
}

.cloud-sync-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.cloud-sync-note a:hover {
  opacity: 0.8;
}

/* Dark mode cloud provider cards */
html[data-theme="dark"] .cloud-provider {
  border-color: var(--stroke);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) .cloud-provider {
    border-color: var(--stroke);
  }
}

@media (max-width: 640px) {
  .cloud-providers {
    gap: 16px;
  }

  .cloud-provider {
    padding: 16px 20px;
    min-width: 100px;
  }

  .cloud-provider img {
    width: 32px;
    height: 32px;
  }

  .cloud-provider span {
    font-size: 12px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--easing-default),
              box-shadow var(--duration-normal) var(--easing-default);
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature h3 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(128, 128, 255, 0.25);
}

html[data-theme="dark"] .step {
  border-color: transparent;
}

.step-number {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.callout > div:first-child {
  padding-top: 24px;
}

.callout > div:first-child h2 {
  margin-top: 0;
}

.callout-list {
  display: grid;
  gap: 12px;
  font-family: "Sora", sans-serif;
  color: var(--muted);
}

.callout-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.callout-card h3 {
  font-family: "Sora", sans-serif;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

label {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

input[type="email"],
input[type="text"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: var(--touch-minimum);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--duration-fast) var(--easing-default),
              box-shadow var(--duration-fast) var(--easing-default);
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

textarea {
  margin-bottom: 12px;
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  min-height: 1.4em;
}

.form-note.error {
  color: var(--accent);
  font-weight: 600;
  margin-top: 20px;
}

.form-note.error::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M12 16h.01'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M12 16h.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Form status messages (styled boxes for error/success/warning/info) */
.form-status {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  line-height: 1.5;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-status.success {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-status.warning {
  background: rgba(251, 191, 36, 0.12);
  color: #d97706;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.form-status.info {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Dark mode form status */
html[data-theme="dark"] .form-status.error {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.4);
}

html[data-theme="dark"] .form-status.success {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.4);
}

html[data-theme="dark"] .form-status.warning {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.4);
}

html[data-theme="dark"] .form-status.info {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.4);
}

/* System preference dark mode - form status */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) .form-status.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.4);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .form-status.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.4);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .form-status.warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .form-status.info {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.4);
  }
}

.input-group.shake {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.input-group.error input,
.input-group.error input:focus {
  border-color: #dc2626;
  border-right: 1px solid #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

.field-warning {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: #d32f2f;
  margin-top: 4px;
}

input.invalid,
textarea.invalid {
  border-color: #d32f2f;
}

input.invalid:focus,
textarea.invalid:focus {
  outline-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

.login-main {
  margin: 48px 0;
}

.login-simple {
  max-width: 400px;
  margin: 0 auto;
}

.login-simple .login-card {
  text-align: left;
}

.login-simple .login-title {
  margin-bottom: 32px;
  text-align: center;
}

.login-simple .form-field {
  text-align: left;
}

.login-simple .form-field + .form-field {
  margin-top: 36px;
}

.login-simple label {
  font-size: 13px;
  letter-spacing: 0.1em;
}

.login-simple input[type="email"],
.login-simple input[type="text"],
.login-simple input[type="tel"],
.login-simple input[type="password"] {
  font-size: 15px;
}

.form-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.form-link-row-center {
  justify-content: center;
  margin-top: 20px;
}

/* Form links (forgot password, etc.) */
.form-link {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--easing-default);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  min-height: var(--touch-minimum);
  border-radius: var(--radius-full);
}

.form-link:hover {
  color: var(--primary-dark);
}

.form-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.login-simple .button.primary {
  width: 100%;
  margin-top: 24px;
}

.form-hint {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.form-hint strong {
  color: var(--ink);
}

.input-group {
  display: flex;
  align-items: stretch;
}

.input-group input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  min-width: 0;
}

.input-group input:focus {
  z-index: 1;
  border-right: 1px solid var(--accent);
}

.input-suffix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--stroke);
  border-left: none;
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
  user-select: none;
}

.login-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.login-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.login-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.login-hint {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.login-support {
  margin-top: 48px;
  background: rgba(14, 124, 134, 0.08);
  border-radius: 24px;
  padding: 28px;
}

.login-support h2 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
}

.login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.legal-main {
  margin: 24px 0 48px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.legal-updated {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 24px;
  margin: 12px 0;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
}

.legal-section a:hover {
  opacity: 0.8;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.back-to-top {
  display: block;
  width: 100%;
  flex-basis: 100%;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 16px 0;
  margin-bottom: 8px;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.back-to-top:hover {
  color: var(--accent);
  background-color: var(--surface-soft);
}

.site-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.footer-left {
  max-width: 360px;
}

.footer-security {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.footer-legal {
  font-size: 12px;
  margin-top: 8px;
}

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

.footer-legal a:hover {
  opacity: 0.8;
}

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

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.footer-mark {
  /* Let the img determine size - no clipping or extra border-radius */
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface-soft);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

.footer-social-icon {
  width: 14px;
  height: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav .button {
    white-space: nowrap;
    padding-inline: 12px;
  }

  .site-actions .button.ghost {
    display: none;
  }

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

  .split,
  .callout,
  .login-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .login-main {
    margin: 32px 0;
  }

  .login-card {
    padding: 24px;
  }

  .login-title {
    font-size: clamp(26px, 8vw, 32px);
  }

  .login-simple label {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .login-simple input[type="email"],
  .login-simple input[type="text"],
  .login-simple input[type="tel"],
  .login-simple input[type="password"] {
    font-size: 16px;
    padding: 14px 16px;
  }

  .form-link {
    font-size: 15px;
    min-height: 44px;
  }

  .form-note {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .reveal {
    transition: none;
  }
}

/* Dark mode form inputs */
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="tel"],
html[data-theme="dark"] input[type="password"],
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: var(--surface-soft);
  color: var(--ink);
  border-color: var(--stroke);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: var(--muted);
}

/* Dark mode stat card adjustments */
html[data-theme="dark"] .stat-card:not(.stat-primary) {
  border-color: var(--stroke);
  border: 1px solid var(--stroke);
}

html[data-theme="dark"] .stat-card {
  border: 1px solid var(--stroke);
}

html[data-theme="dark"] .stat-card.stat-primary {
  border: none;
}

html[data-theme="dark"] .hero-card,
html[data-theme="dark"] .feature,
html[data-theme="dark"] .callout-card,
html[data-theme="dark"] .login-card {
  border-color: var(--stroke);
}

/* System preference dark mode - card adjustments */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) .stat-card:not(.stat-primary) {
    border: 1px solid var(--stroke);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .stat-card.stat-primary {
    border: none;
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .hero-card,
  html:not([data-theme="light"]):not([data-theme="dark"]) .feature,
  html:not([data-theme="light"]):not([data-theme="dark"]) .callout-card,
  html:not([data-theme="light"]):not([data-theme="dark"]) .login-card {
    border-color: var(--stroke);
  }
}

/* Theme selector */
.theme-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  padding: 4px;
  border: 1px solid var(--stroke);
  margin-left: auto;
}

.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--muted);
  transition: all var(--duration-fast) var(--easing-default);
}

.theme-btn:hover {
  color: var(--ink);
  background: rgba(128, 128, 255, 0.1);
}

.theme-btn.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.theme-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.theme-btn svg {
  width: 18px;
  height: 18px;
}

html[data-theme="dark"] .theme-btn.active {
  background: var(--surface);
}

/* Dark mode button adjustments */
html[data-theme="dark"] .button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}

html[data-theme="dark"] .button.primary:hover {
  background: linear-gradient(135deg, #7070ef 0%, #5858d8 100%);
  box-shadow: 0 0 12px rgba(128, 128, 255, 0.25);
}

html[data-theme="dark"] .button.ghost {
  background: var(--surface-soft);
  border-color: var(--stroke);
  color: var(--ink);
}

html[data-theme="dark"] .button.ghost:hover {
  background: #475569;
  border-color: var(--primary);
}

html[data-theme="dark"] .button.secondary {
  background: rgba(128, 128, 255, 0.15);
  color: var(--accent);
  border-color: rgba(128, 128, 255, 0.5);
}

html[data-theme="dark"] .button.secondary:hover {
  background: rgba(128, 128, 255, 0.25);
}

/* Dark mode form input enhancements */
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="tel"],
html[data-theme="dark"] input[type="password"],
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--stroke);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: var(--muted);
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

/* Dark mode form links */
html[data-theme="dark"] .form-link {
  color: var(--primary-light);
}

html[data-theme="dark"] .form-link:hover {
  color: var(--accent);
}

/* System preference dark mode - button adjustments */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) .button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .button.primary:hover {
    background: linear-gradient(135deg, #7070ef 0%, #5858d8 100%);
    box-shadow: 0 0 12px rgba(128, 128, 255, 0.25);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) input[type="email"],
  html:not([data-theme="light"]):not([data-theme="dark"]) input[type="text"],
  html:not([data-theme="light"]):not([data-theme="dark"]) input[type="tel"],
  html:not([data-theme="light"]):not([data-theme="dark"]) input[type="password"],
  html:not([data-theme="light"]):not([data-theme="dark"]) select,
  html:not([data-theme="light"]):not([data-theme="dark"]) textarea {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--stroke);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) input::placeholder,
  html:not([data-theme="light"]):not([data-theme="dark"]) textarea::placeholder {
    color: var(--muted);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) input:focus,
  html:not([data-theme="light"]):not([data-theme="dark"]) textarea:focus,
  html:not([data-theme="light"]):not([data-theme="dark"]) select:focus {
    border-color: var(--accent);
    box-shadow: var(--focus-ring);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .form-link {
    color: var(--primary-light);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .form-link:hover {
    color: var(--accent);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .button.ghost {
    background: var(--surface-soft);
    border-color: var(--stroke);
    color: var(--ink);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .button.ghost:hover {
    background: #475569;
    border-color: var(--primary);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .button.secondary {
    background: rgba(128, 128, 255, 0.15);
    color: var(--accent);
    border-color: rgba(128, 128, 255, 0.5);
  }

  html:not([data-theme="light"]):not([data-theme="dark"]) .button.secondary:hover {
    background: rgba(128, 128, 255, 0.25);
  }
}

/* ==========================================================================
   Skeleton Loaders
   Shimmer loading placeholders for perceived performance improvement
   ========================================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--surface-soft) 25%,
    var(--surface) 50%,
    var(--surface-soft) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Skeleton Variants */
.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-title {
  height: 1.5em;
  width: 40%;
  margin-bottom: 1em;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-card {
  height: 200px;
  border-radius: var(--radius-md);
}

.skeleton-button {
  height: 40px;
  width: 120px;
  border-radius: var(--radius-full);
}

/* Skeleton Table Row */
.skeleton-row {
  display: table-row;
}

.skeleton-row td {
  padding: 12px 16px;
}

.skeleton-row .skeleton {
  width: 100%;
}

/* Skeleton Container for HTMX loading */
.skeleton-container {
  display: none;
}

.htmx-request ~ .skeleton-container,
.htmx-request .skeleton-container {
  display: block;
}

.htmx-request ~ .content-container,
.htmx-request .content-container {
  display: none;
}

/* Reduced motion support - disable shimmer animation */
@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}

/* ==========================================================================
   ROI Calculator
   ========================================================================== */

.roi-calculator {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: var(--space-xl, 32px);
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

.roi-calculator h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 8px;
}

.roi-calculator > p {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 32px;
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-input-group label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.roi-input-group input {
  padding: 12px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.roi-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.roi-input-group .input-hint {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--muted);
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 24px;
  background: var(--surface-soft);
  border-radius: 12px;
  margin-bottom: 24px;
}

.roi-result-card {
  text-align: center;
}

.roi-result-card .roi-result-value {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.roi-result-card .roi-result-value.savings {
  color: var(--success);
}

.roi-result-card.highlight .roi-result-value {
  color: var(--highlight);
}

.roi-result-card .roi-result-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.roi-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

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

.roi-comparison-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.roi-comparison-card.manual {
  background: rgba(199, 88, 88, 0.08);
  border-color: rgba(199, 88, 88, 0.25);
}

.roi-comparison-card.syncadoc {
  background: rgba(74, 155, 107, 0.08);
  border-color: rgba(74, 155, 107, 0.3);
}

.roi-comparison-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}

.roi-comparison-card.manual h4 {
  color: var(--error);
}

.roi-comparison-card.syncadoc h4 {
  color: var(--success);
}

.roi-comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roi-comparison-card li {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
}

.roi-comparison-card li span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.roi-time {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
}

.roi-comparison-card.manual .roi-time {
  color: var(--error);
}

.roi-comparison-card.syncadoc .roi-time {
  color: var(--success);
}

.roi-comparison-card.syncadoc {
  padding-bottom: 80px;
  position: relative;
}

.roi-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: 9999px;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.roi-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(92, 92, 217, 0.2);
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */

.social-proof {
  max-width: 900px;
  margin: 0 auto 60px;
}

.social-proof h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.trust-badge svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.trust-badge span {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.testimonial-quote {
  font-family: 'Newsreader', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-role {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--muted);
}

/* ===========================================
   Procore Alternative Section
   =========================================== */

.procore-alternative {
  max-width: 900px;
  margin: var(--space-xl) auto;
  padding: var(--space-xl);
  background: var(--surface);
  border-radius: 16px;
  text-align: center;
}

.alternative-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #5050cf 100%);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.procore-alternative h2 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.alternative-subtitle {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.alternative-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

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

.alternative-column {
  padding: 24px;
  border-radius: 12px;
  text-align: left;
}

.procore-col {
  background: rgba(199, 88, 88, 0.08);
  border: 1px solid rgba(199, 88, 88, 0.25);
}

.syncadoc-col {
  background: rgba(74, 155, 107, 0.08);
  border: 1px solid rgba(74, 155, 107, 0.25);
}

.alternative-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
}

.alternative-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.alternative-price {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.procore-col .alternative-price {
  color: var(--error);
}

.syncadoc-col .alternative-price {
  color: var(--success);
}

.alternative-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alternative-features li {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.alternative-features li::before {
  position: absolute;
  left: 0;
  font-size: 16px;
}

.alternative-features li.con::before {
  content: '✗';
  color: var(--error);
}

.alternative-features li.pro::before {
  content: '✓';
  color: var(--success);
}

.alternative-bottom-line {
  background: var(--bg);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.alternative-bottom-line h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.alternative-bottom-line p {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.alternative-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.alternative-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(92, 92, 217, 0.2);
}
