:root {
  --ink: #231e1f;
  --muted: #6f626a;
  --paper: #fffafb;
  --white: #ffffff;
  --primary: #60014a;
  --primary-dark: #4d013b;
  --secondary: #862165;
  --accent: #33bfc5;
  --warning: #f0b033;
  --line: #eadfe6;
  --soft: #f8eef4;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(96, 1, 74, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 250, 251, 0.93); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(234, 223, 230, 0.9); }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-size: 20px; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; font-size: 24px; font-weight: 700; }
.nav-shell nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 600; }
.login-link { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); }
.hero-section { padding: 94px 0 84px; background: radial-gradient(circle at 80% 12%, rgba(51, 191, 197, 0.18), transparent 28%), linear-gradient(135deg, #fffafd, #f6eaf2); }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-block; color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow.light { color: #f8dfee; }
h1, h2, h3 { font-family: Manrope, sans-serif; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 70px); line-height: 1.03; letter-spacing: -0.045em; margin-top: 18px; max-width: 760px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -0.035em; }
.hero-copy { max-width: 670px; color: var(--muted); font-size: 20px; line-height: 1.65; margin: 26px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 800; transition: 0.2s transform, 0.2s box-shadow; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .login-link:focus-visible, .nav-shell nav a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.button-primary { background: var(--primary); color: white; box-shadow: 0 12px 30px rgba(96, 1, 74, 0.28); }
.button-primary:hover { background: var(--primary-dark); }
.button-secondary { background: white; border: 1px solid var(--line); }
.button-light { background: white; color: var(--primary-dark); }
.hero-notes { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 24px; color: var(--muted); font-size: 14px; }
.hero-notes span::before { content: "✓"; color: var(--accent); font-weight: 900; margin-right: 7px; }
.hero-panel { padding: 26px; border-radius: 30px; background: linear-gradient(145deg, var(--primary-dark), var(--primary)); color: white; box-shadow: var(--shadow); transform: rotate(1deg); }
.panel-topline { color: #ead1e2; font-size: 14px; margin-bottom: 20px; }
.status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-right: 8px; }
.metric-card { display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: 18px; background: rgba(255, 255, 255, 0.1); margin-top: 12px; }
.metric-card strong { font-family: Manrope, sans-serif; font-size: 19px; }
.metric-card span { color: #efdce8; }
.metric-card.accent { background: var(--accent); color: var(--ink); }
.metric-card.accent span { color: #263d3f; }
.section { padding: 96px 0; }
.section-heading { max-width: 680px; }
.section-heading h2 { margin-top: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.feature-grid article { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 34px rgba(96, 1, 74, 0.05); }
.feature-grid article > span { color: var(--secondary); font-weight: 800; }
.feature-grid h3 { font-size: 20px; margin: 28px 0 10px; }
.feature-grid p { color: var(--muted); line-height: 1.6; margin: 0; }
.workflow-section { background: linear-gradient(135deg, var(--primary-dark), #340129); color: white; }
.workflow-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
.workflow-grid h2 { margin-top: 12px; }
.workflow-grid ol { list-style: none; margin: 0; padding: 0; counter-reset: steps; }
.workflow-grid li { position: relative; display: grid; grid-template-columns: 1fr; gap: 6px; padding: 0 0 28px 62px; border-left: 1px solid rgba(255, 255, 255, 0.2); counter-increment: steps; }
.workflow-grid li::before { content: counter(steps); position: absolute; left: -22px; top: 0; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--warning); color: var(--ink); font-weight: 900; }
.workflow-grid li:last-child { padding-bottom: 0; }
.workflow-grid strong { font: 700 21px Manrope, sans-serif; }
.workflow-grid li span { color: #ead7e4; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.trust-grid h2 { margin-top: 12px; }
.trust-grid p { font-size: 19px; line-height: 1.8; color: var(--muted); }
.cta-section { padding: 0 0 90px; }
.cta-card { display: flex; justify-content: space-between; align-items: center; gap: 40px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 48px; border-radius: 30px; box-shadow: var(--shadow); }
.cta-card h2 { margin-top: 10px; }
.cta-card p { color: #f1deea; margin-bottom: 0; }
.footer-shell { display: flex; justify-content: space-between; gap: 20px; padding: 30px 0; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 860px) {
  .nav-shell nav a:not(.login-link) { display: none; }
  .hero-grid, .workflow-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-grid, .workflow-grid { gap: 42px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 48px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero-section { padding: 62px 0; }
  .section { padding: 70px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; gap: 9px; }
  .hero-panel { transform: none; }
  .cta-card { padding: 32px 24px; }
  .footer-shell { flex-direction: column; }
  .nav-shell { min-height: 68px; }
  .brand { font-size: 17px; }
}
