/* Ryze CRM marketing site */
:root {
  --ink: #171717;
  --ink-2: #525252;
  --ink-3: #8a8a8a;
  --bg: #faf9f7;
  --card: #ffffff;
  --line: #e7e4df;
  --violet: #7c3aed;
  --violet-d: #6d28d9;
  --grad: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #7c3aed 100%);
  --grad-soft: linear-gradient(160deg, #fff7ed 0%, #fdf2f8 45%, #f5f3ff 100%);
  --radius: 20px;
  --shadow: 0 1px 2px rgba(23, 23, 23, .04), 0 12px 32px -12px rgba(23, 23, 23, .12);
  --shadow-lg: 0 2px 4px rgba(23, 23, 23, .05), 0 24px 64px -20px rgba(23, 23, 23, .22);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav-outer { position: sticky; top: 0; z-index: 50; background: rgba(250, 249, 247, .82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand svg { display: block; }
.nav-links { display: flex; gap: 26px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--violet); font-weight: 600; }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; font-weight: 600; font-size: 14.5px; padding: 10px 18px; transition: all .15s ease; cursor: pointer; border: 0; }
.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); background: rgba(0, 0, 0, .04); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 8px 24px -8px rgba(236, 72, 153, .5); }
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(236, 72, 153, .6); }
.btn-lg { padding: 14px 26px; font-size: 16px; border-radius: 14px; }
.btn-outline { border: 1.5px solid var(--line); background: var(--card); color: var(--ink); }
.btn-outline:hover { border-color: #d4d0c9; transform: translateY(-1px); }
.nav-toggle { display: none; }
.nav-burger { display: none; }
.nav-menu { display: none; }

/* ── Hero ── */
.hero { background: var(--grad-soft); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-inner { padding: 84px 0 0; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--violet); background: rgba(124, 58, 237, .08); border: 1px solid rgba(124, 58, 237, .18); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
h1 { font-size: clamp(38px, 6vw, 60px); line-height: 1.06; letter-spacing: -.03em; font-weight: 800; }
h1 .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--ink-2); max-width: 640px; margin: 22px auto 0; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin: 32px 0 8px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--ink-3); margin-bottom: 40px; }
.hero-shot { max-width: 1000px; margin: 12px auto -2px; }

/* browser frame for screenshots */
.frame { background: var(--card); border: 1px solid var(--line); border-radius: 16px 16px 0 0; box-shadow: var(--shadow-lg); overflow: hidden; }
.frame.rounded { border-radius: 16px; }
.frame-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: #fbfaf9; }
.frame-bar span { width: 10px; height: 10px; border-radius: 50%; background: #e4e1dc; }
.frame-bar span:nth-child(1) { background: #fca5a5; }
.frame-bar span:nth-child(2) { background: #fcd34d; }
.frame-bar span:nth-child(3) { background: #86efac; }

/* ── Sections ── */
section.block { padding: 88px 0; }
section.block.tight { padding: 64px 0; }
.kicker { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--violet); margin-bottom: 10px; }
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.025em; line-height: 1.12; font-weight: 800; }
.sub { color: var(--ink-2); font-size: 17px; max-width: 620px; margin-top: 14px; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* alternating feature rows */
.feature-row { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; padding: 56px 0; }
.feature-row.flip .feature-copy { order: 2; }
.feature-copy h3 { font-size: 26px; letter-spacing: -.02em; font-weight: 800; margin-bottom: 12px; }
.feature-copy p { color: var(--ink-2); font-size: 16px; }
.feature-copy ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.feature-copy li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-2); }
.feature-copy li::before { content: ''; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: rgba(124, 58, 237, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat; }

/* bento grid */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card h4 { font-size: 16.5px; font-weight: 700; margin: 14px 0 6px; letter-spacing: -.01em; }
.card p { font-size: 14px; color: var(--ink-2); }
.icon-chip { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: var(--grad-soft); border: 1px solid var(--line); }

/* CTA band */
.cta-band { background: var(--ink); border-radius: 28px; padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: -40%; background: radial-gradient(600px 300px at 20% 10%, rgba(249, 115, 22, .25), transparent 60%), radial-gradient(600px 300px at 80% 90%, rgba(124, 58, 237, .35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .72); margin: 14px auto 28px; max-width: 520px; }

/* ── Pricing ── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; margin-top: 48px; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow); position: relative; }
.plan.featured { border: 2px solid var(--violet); box-shadow: 0 24px 64px -20px rgba(124, 58, 237, .35); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 20px; font-weight: 800; }
.plan .plan-for { font-size: 13.5px; color: var(--ink-3); margin-top: 2px; }
.price { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price .amount { font-size: 44px; font-weight: 800; letter-spacing: -.03em; }
.price .per { color: var(--ink-3); font-size: 14px; }
.price-year { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.plan ul { list-style: none; display: grid; gap: 10px; margin: 20px 0 26px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.plan li::before { content: ''; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: rgba(124, 58, 237, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat; }
.plan li.head { font-weight: 700; color: var(--ink); }
.plan li.head::before { display: none; }
.plan .btn { margin-top: auto; }

.addon-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.addon-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); padding: 14px 20px; border-bottom: 2px solid var(--line); background: #fbfaf9; }
.addon-table td { padding: 13px 20px; border-bottom: 1px solid #f1efeb; font-size: 14.5px; }
.addon-table tr:last-child td { border-bottom: 0; }
.addon-table td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.addon-table td .mini { display: block; font-size: 12.5px; color: var(--ink-3); font-weight: 400; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* FAQ */
.faq { display: grid; gap: 14px; max-width: 760px; margin: 40px auto 0; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow); }
.faq summary { font-weight: 600; font-size: 15.5px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; font-size: 20px; color: var(--ink-3); }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--ink-2); font-size: 14.5px; margin-top: 10px; }

/* ── Packs ── */
.pack { background: var(--card); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.pack-head { padding: 26px 26px 20px; border-bottom: 1px solid var(--line); }
.pack-head .pack-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pack-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 23px; color: #fff; }
.pack h3 { font-size: 20px; font-weight: 800; margin-top: 14px; }
.pack .pack-industry { font-size: 13px; color: var(--ink-3); }
.pack .pack-desc { font-size: 14.5px; color: var(--ink-2); margin-top: 10px; }
.pack-price { font-size: 15px; font-weight: 700; margin-top: 12px; }
.pack-price .mini { font-weight: 400; color: var(--ink-3); font-size: 13px; }
.pack-features { padding: 20px 26px 26px; display: grid; gap: 12px; flex: 1; }
.pack-feature { display: flex; gap: 12px; }
.pack-feature .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; margin-top: 8px; }
.pack-feature b { font-size: 14.5px; display: block; }
.pack-feature span { font-size: 13.5px; color: var(--ink-2); }
.badge { display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; letter-spacing: .02em; }
.badge-live { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.badge-soon { background: #fff7ed; color: #b45309; border: 1px solid #fed7aa; }

/* ── AI page ── */
.tool { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tool-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.tool h4 { font-size: 16px; font-weight: 700; margin: 12px 0 6px; }
.tool p { font-size: 13.5px; color: var(--ink-2); flex: 1; }
.tool .credits { margin-top: 14px; font-size: 12.5px; font-weight: 600; color: var(--violet); background: rgba(124, 58, 237, .07); border: 1px solid rgba(124, 58, 237, .15); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.step .n { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.step h4 { font-size: 16px; font-weight: 700; margin: 14px 0 6px; }
.step p { font-size: 14px; color: var(--ink-2); }

/* ── Footer ── */
footer { border-top: 1px solid var(--line); background: #f5f3f0; padding: 56px 0 40px; margin-top: 40px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.foot h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 14px; }
.foot a { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 9px; }
.foot a:hover { color: var(--ink); }
.foot .brand { margin-bottom: 12px; }
.foot .blurb { font-size: 13.5px; color: var(--ink-3); max-width: 260px; }
.foot-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .feature-row.flip .feature-copy { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; flex-direction: column; gap: 4.5px; background: none; border: 0; padding: 8px; cursor: pointer; }
  .nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .nav-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); flex-direction: column; padding: 12px 24px 20px; gap: 4px; }
  .nav-menu a { padding: 10px 0; font-size: 16px; font-weight: 500; color: var(--ink-2); }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  section.block { padding: 60px 0; }
  .cta-band { padding: 48px 24px; border-radius: 20px; }
}
