/* Influvine — Done-For-You agency landing page */

:root {
  --bg: oklch(0.99 0.004 250);
  --bg-soft: oklch(0.96 0.008 255);
  --dark: oklch(0.14 0.03 265);
  --dark-panel: oklch(0.18 0.035 265);
  --dark-panel-alt: oklch(0.22 0.06 265);
  --footer-dark: oklch(0.11 0.025 265);
  --border: oklch(0.9 0.01 260);
  --border-dark: oklch(1 0 0 / 0.08);
  --border-dark-soft: oklch(1 0 0 / 0.07);

  --teal: oklch(0.72 0.13 195);
  --blue: oklch(0.55 0.14 260);
  --blue-soft: oklch(0.68 0.11 250);
  --grad-a: oklch(0.72 0.13 195);
  --grad-b: oklch(0.55 0.16 275);

  --ink: oklch(0.22 0.02 265);
  --ink-muted: oklch(0.38 0.02 265);
  --ink-mutedest: oklch(0.42 0.02 265);
  --label: oklch(0.58 0.13 260);
  --white-strong: oklch(0.98 0.004 250);
  --white-mid: oklch(0.92 0.01 260);
  --white-muted: oklch(0.82 0.02 260);
  --white-mutedest: oklch(0.72 0.03 265);
  --white-faint: oklch(0.62 0.03 265);

  --card-shadow: 0 24px 60px oklch(0.5 0.1 265 / 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: oklch(0.45 0.16 260); }
.mono { font-family: 'IBM Plex Mono', monospace; }
.label {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--label);
}

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ── nav ─────────────────────────────────────────── */
.dfy-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  background: oklch(0.14 0.03 265 / 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark-soft);
}
.dfy-brand { display: flex; align-items: center; gap: 11px; }
.dfy-brand-name { font: 600 19px 'Space Grotesk', sans-serif; letter-spacing: -0.01em; color: var(--white-strong); }
.dfy-brand-grad {
  background: linear-gradient(135deg, oklch(0.68 0.19 265), oklch(0.65 0.19 330));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dfy-nav-right { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); }
.dfy-nav-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.02em;
  color: var(--white-mutedest); text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 640px) { .dfy-nav-tag { display: none; } }
.dfy-nav-cta {
  font-size: 13.5px; font-weight: 600; color: var(--dark);
  background: var(--teal); padding: 10px 18px; border-radius: 9px; white-space: nowrap;
}
.dfy-nav-cta:hover { color: var(--dark); opacity: 0.9; }

/* ── hero ────────────────────────────────────────── */
.dfy-hero {
  position: relative; background: var(--dark); color: var(--white-strong);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 56px) clamp(72px, 10vw, 128px);
  overflow: hidden;
}
.dfy-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 78% -10%, oklch(0.4 0.13 265 / 0.55), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, oklch(0.5 0.1 200 / 0.28), transparent 55%);
}
.dfy-hero-grid {
  position: relative; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
@media (max-width: 860px) { .dfy-hero-grid { grid-template-columns: 1fr; } }
.dfy-hero-left { animation: riseIn 0.7s ease both; }
.dfy-hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px;
  border: 1px solid var(--border-dark); border-radius: 100px; margin-bottom: 26px;
}
.dfy-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}
.dfy-hero-badge span.mono { font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white-muted); }
.dfy-hero h1 { font-size: clamp(34px, 5.2vw, 60px); line-height: 1.04; margin-bottom: 22px; text-wrap: balance; }
.dfy-hero-lead {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: var(--white-muted);
  max-width: 560px; margin-bottom: 34px; text-wrap: pretty;
}
.dfy-hero-lead strong { color: oklch(0.75 0.12 195); font-weight: 600; }
.dfy-hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.dfy-btn-primary {
  font-size: 15px; font-weight: 600; color: var(--dark); background: var(--teal);
  padding: 15px 28px; border-radius: 11px; box-shadow: 0 8px 30px oklch(0.72 0.13 195 / 0.3);
}
.dfy-btn-primary:hover { color: var(--dark); opacity: 0.92; }
.dfy-link-quiet { font-size: 14px; color: var(--white-muted); }

.dfy-hero-card {
  animation: riseIn 0.9s ease both; background: var(--dark-panel);
  border: 1px solid var(--border-dark); border-radius: 18px; padding: 22px;
  box-shadow: 0 30px 80px oklch(0 0 0 / 0.4);
}
.dfy-hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dfy-hero-card-head span.mono { font-size: 11px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--white-faint); }
.dfy-hero-card-head span.mono.accent { color: var(--teal); }
.dfy-bars { display: flex; align-items: flex-end; gap: 8px; height: 150px; }
.dfy-bar { flex: 1; border-radius: 5px 5px 0 0; transform-origin: bottom; animation: growBar 0.8s ease both; }
.dfy-hero-card-foot {
  display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-dark-soft);
}
.dfy-hero-card-foot .n { font-family: 'IBM Plex Mono', monospace; font-size: 22px; color: var(--white-strong); }
.dfy-hero-card-foot .n.accent { color: var(--teal); }
.dfy-hero-card-foot .l { font-size: 11px; color: var(--white-faint); }

/* ── generic section shell ──────────────────────── */
.dfy-section { padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 56px); background: var(--bg); }
.dfy-section-soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dfy-section-dark { background: var(--dark); color: var(--white-strong); }
.dfy-wrap { max-width: 1080px; margin: 0 auto; }
.dfy-wrap-wide { max-width: 1140px; }
.dfy-h2 { font-size: clamp(26px, 3.6vw, 42px); line-height: 1.1; margin: 14px 0 40px; max-width: 820px; text-wrap: balance; }
.dfy-h2-sm { font-size: clamp(24px, 3.2vw, 38px); line-height: 1.12; margin: 14px 0 0; text-wrap: balance; }

/* ── why act now ─────────────────────────────────── */
.dfy-why-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 800px) { .dfy-why-grid { grid-template-columns: 1fr; } }
.dfy-why-body { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.7; color: var(--ink-muted); }
.dfy-why-body p { margin-bottom: 18px; }
.dfy-why-body p:last-child { margin-bottom: 0; }
.dfy-why-body em { font-style: normal; color: oklch(0.5 0.13 260); font-weight: 600; }

.dfy-timeline { background: var(--dark); border-radius: 18px; padding: 28px; color: var(--white-strong); }
.dfy-timeline-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white-faint); margin-bottom: 22px; }
.dfy-timeline-row { display: flex; gap: 16px; }
.dfy-timeline-row.has-line { margin-bottom: 22px; }
.dfy-timeline-dot-col { display: flex; flex-direction: column; align-items: center; }
.dfy-timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); }
.dfy-timeline-dot.blue { background: var(--blue-soft); }
.dfy-timeline-line { flex: 1; width: 2px; background: linear-gradient(var(--teal), var(--blue-soft)); margin: 4px 0; }
.dfy-timeline-time { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: var(--teal); }
.dfy-timeline-time.blue { color: var(--blue-soft); }
.dfy-timeline-desc { font-size: 14px; color: var(--white-muted); margin-top: 3px; }

/* ── why ai saas ─────────────────────────────────── */
.dfy-whyai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 800px) { .dfy-whyai-grid { grid-template-columns: 1fr; } }
.dfy-whyai-body { font-size: clamp(15px, 1.3vw, 16.5px); line-height: 1.7; color: var(--ink-muted); }
.dfy-whyai-body p { margin-bottom: 16px; }
.dfy-whyai-quote { padding-left: 18px; border-left: 2px solid var(--teal); color: oklch(0.28 0.03 265); font-weight: 500; margin-bottom: 0 !important; }

/* ── why we move faster ─────────────────────────── */
.dfy-source-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
@media (max-width: 700px) { .dfy-source-grid { grid-template-columns: 1fr; } }
.dfy-source-card { border: 1px solid var(--border); border-radius: 18px; padding: 26px 28px; background: oklch(0.985 0.004 250); }
.dfy-source-card .dfy-service-num { display: inline-block; margin-bottom: 14px; }
.dfy-source-card h3 { font-size: 17px; margin-bottom: 8px; }
.dfy-source-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); }

/* ── numbers ─────────────────────────────────────── */
.dfy-numbers-intro { max-width: 720px; margin-bottom: 48px; }
.dfy-numbers-intro .label { color: var(--teal); }
.dfy-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .dfy-stat-grid { grid-template-columns: 1fr; } }
.dfy-stat-card { background: var(--dark-panel); border: 1px solid var(--border-dark); border-radius: 16px; padding: 26px; }
.dfy-stat-card.wide { grid-column: span 2; display: flex; align-items: center; gap: 24px; background: linear-gradient(120deg, var(--dark-panel-alt), oklch(0.2 0.045 250)); border: 1px solid oklch(1 0 0 / 0.1); padding: 26px 30px; }
@media (max-width: 700px) { .dfy-stat-card.wide { grid-column: span 1; flex-wrap: wrap; } }
.dfy-stat-num { font-family: 'IBM Plex Mono', monospace; font-size: clamp(34px, 4vw, 48px); font-weight: 500; color: var(--teal); line-height: 1; }
.dfy-stat-num.blue { color: var(--blue-soft); }
.dfy-stat-num.big { font-size: clamp(38px, 5vw, 58px); color: oklch(0.86 0.09 200); white-space: nowrap; }
.dfy-stat-desc { font-size: 14px; color: var(--white-mutedest); margin-top: 12px; line-height: 1.5; }
.dfy-stat-card.wide .dfy-stat-desc { font-size: 14.5px; margin-top: 0; color: var(--white-muted); }
.dfy-stat-desc strong { color: var(--white-mid); font-weight: 600; }
.dfy-sources { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: oklch(0.54 0.02 265); margin-top: 22px; line-height: 1.5; }
.dfy-sources a { color: oklch(0.62 0.03 265); text-decoration: underline; text-underline-offset: 2px; }
.dfy-sources a:hover { color: var(--teal); }

/* ── services ────────────────────────────────────── */
.dfy-services-intro { max-width: 740px; margin-bottom: 44px; }
.dfy-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .dfy-services-grid { grid-template-columns: 1fr; } }
.dfy-service-card { border: 1px solid var(--border); border-radius: 18px; padding: 30px; background: oklch(0.985 0.004 250); }
.dfy-service-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.dfy-service-num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--blue); border: 1px solid oklch(0.85 0.03 260); border-radius: 7px; padding: 4px 9px; }
.dfy-service-head h3 { font-size: 19px; }
.dfy-service-card p { font-size: 14.5px; line-height: 1.65; color: var(--ink-muted); }
.dfy-services-note { text-align: center; font-size: 15px; color: var(--ink-muted); margin-top: 28px; }

/* ── who + how ───────────────────────────────────── */
.dfy-who-how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
@media (max-width: 800px) { .dfy-who-how-grid { grid-template-columns: 1fr; } }
.dfy-check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.dfy-check-item { display: flex; gap: 13px; align-items: flex-start; }
.dfy-check-mark { color: var(--teal); font-weight: 700; margin-top: 1px; }
.dfy-check-text { font-size: 15px; line-height: 1.55; color: oklch(0.35 0.02 265); }

.dfy-steps { display: flex; flex-direction: column; margin-top: 28px; }
.dfy-step { display: flex; gap: 16px; padding-bottom: 20px; }
.dfy-step:last-child { padding-bottom: 0; }
.dfy-step-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--dark); color: var(--teal);
  font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px oklch(0.14 0.03 265 / 0.25);
}
.dfy-step-num.done { background: var(--teal); color: var(--dark); box-shadow: 0 4px 14px oklch(0.72 0.13 195 / 0.35); }
/* progressive gradient — each step reads a little closer to "done" than the last */
.dfy-steps .dfy-step:nth-child(1) .dfy-step-num { background: var(--dark); color: var(--teal); }
.dfy-steps .dfy-step:nth-child(2) .dfy-step-num { background: var(--dark-panel); color: oklch(0.75 0.12 195); }
.dfy-steps .dfy-step:nth-child(3) .dfy-step-num { background: var(--dark-panel-alt); color: oklch(0.8 0.11 195); }
.dfy-steps .dfy-step:nth-child(4) .dfy-step-num { background: var(--teal); color: var(--dark); }
.dfy-step-title { font-weight: 600; font-size: 16px; margin-bottom: 3px; color: var(--ink); }
.dfy-step-desc { font-size: 14px; color: oklch(0.45 0.02 265); line-height: 1.55; }

/* ── pricing ─────────────────────────────────────── */
.dfy-pricing-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.dfy-pricing-card {
  border: 1px solid oklch(0.88 0.02 260); border-radius: 22px; padding: clamp(32px, 5vw, 48px);
  background: oklch(0.985 0.004 250); box-shadow: var(--card-shadow); margin-top: 34px;
}
.dfy-price-label { font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; color: oklch(0.55 0.02 265); }
.dfy-price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin: 8px 0 18px; }
.dfy-price-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(48px, 7vw, 72px); letter-spacing: -0.03em; color: oklch(0.18 0.03 265); }
.dfy-price-asterisk { font-size: 0.4em; vertical-align: super; color: var(--blue); }
.dfy-price-suffix { font-size: 18px; color: oklch(0.5 0.02 265); }
.dfy-pricing-card p.desc { font-size: 15.5px; line-height: 1.6; color: var(--ink-muted); max-width: 480px; margin: 0 auto 26px; }
.dfy-btn-dark {
  display: inline-block; font-size: 15px; font-weight: 600; color: var(--white-strong);
  background: oklch(0.2 0.05 265); padding: 14px 30px; border-radius: 11px;
}
.dfy-btn-dark:hover { color: var(--white-strong); opacity: 0.9; }
.dfy-pricing-fine { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: oklch(0.55 0.02 265); margin-top: 20px; line-height: 1.5; }

/* ── final cta ───────────────────────────────────── */
.dfy-final-cta { position: relative; padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 56px); overflow: hidden; text-align: center; }
.dfy-final-glow { position: absolute; inset: 0; background: radial-gradient(800px 400px at 50% -20%, oklch(0.4 0.13 265 / 0.5), transparent 60%); }
.dfy-final-inner { position: relative; max-width: 760px; margin: 0 auto; }
.dfy-final-inner h2 { font-size: clamp(28px, 4.4vw, 52px); line-height: 1.08; margin-bottom: 20px; text-wrap: balance; }
.dfy-final-inner p { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: var(--white-muted); max-width: 560px; margin: 0 auto 34px; text-wrap: pretty; }

/* ── footer ──────────────────────────────────────── */
.dfy-footer {
  background: var(--footer-dark); color: var(--white-faint);
  padding: 36px clamp(20px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.dfy-footer-brand { display: flex; align-items: center; gap: 10px; }
.dfy-footer-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; color: var(--white-mid); }
.dfy-footer-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: oklch(0.55 0.02 265); margin-left: 8px; }

/* ── hero stat row ───────────────────────────────── */
.dfy-hero-stat-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--white-muted); margin: 20px 0 8px;
}
.dfy-hero-stat-row b { color: var(--teal); font-weight: 600; }
.dfy-hero-stat-sep { color: var(--white-faint); }

/* ── trust bar ───────────────────────────────────── */
.dfy-trust-bar { background: var(--dark-panel); border-bottom: 1px solid var(--border-dark); }
.dfy-trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 32px; padding: 16px clamp(20px, 5vw, 56px); max-width: 1140px;
}
.dfy-trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--white-muted); white-space: nowrap;
}
.dfy-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex: none; }

/* ── why/fit 3-column strip ──────────────────────── */
.dfy-why3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.dfy-why3-card { border: 1px solid var(--border); border-radius: 18px; padding: 26px 24px; background: oklch(0.985 0.004 250); }
.dfy-why3-title { font-size: 16.5px; margin-bottom: 10px; }
.dfy-why3-card p { font-size: 14px; line-height: 1.65; color: var(--ink-muted); }
.dfy-why3-tags { display: flex; gap: 8px; margin-top: 14px; }
.dfy-why3-tag {
  font-size: 11px; color: var(--blue); border: 1px solid oklch(0.85 0.03 260);
  border-radius: 7px; padding: 4px 9px;
}
@media (max-width: 860px) { .dfy-why3-grid { grid-template-columns: 1fr; } }

/* ── how-it-works timeline connector ─────────────── */
.dfy-steps-timeline .dfy-step { position: relative; }
.dfy-steps-timeline .dfy-step:not(:last-child) .dfy-step-num::after {
  content: ""; position: absolute; top: 32px; left: 15px; width: 2px; height: calc(100% - 12px);
  background: linear-gradient(var(--border), var(--teal));
}
.dfy-steps-timeline .dfy-step-num { position: relative; }

/* ── elevated pricing card ───────────────────────── */
.dfy-pricing-card-elevated {
  position: relative; border-color: oklch(0.72 0.13 195 / 0.35);
  box-shadow: 0 30px 70px oklch(0.5 0.1 265 / 0.12), 0 0 0 1px oklch(0.72 0.13 195 / 0.1);
}

/* ── FAQ ──────────────────────────────────────────── */
.dfy-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.dfy-faq-item { border: 1px solid var(--border); border-radius: 14px; padding: 2px 22px; background: oklch(0.985 0.004 250); }
.dfy-faq-q {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 0; cursor: pointer; background: none; border: none; text-align: left;
  font: 600 15px 'IBM Plex Sans', sans-serif; color: var(--ink);
}
.dfy-faq-symbol { font: 500 18px 'IBM Plex Sans', sans-serif; color: var(--blue); flex: none; margin-left: 16px; }
.dfy-faq-a { display: none; padding: 0 0 20px; }
.dfy-faq-a p { font-size: 14px; line-height: 1.7; color: var(--ink-muted); }
.dfy-faq-item.is-open .dfy-faq-a { display: block; }

/* ── final CTA dual actions ──────────────────────── */
.dfy-final-ctas { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.dfy-footer a { font-size: 13.5px; color: oklch(0.78 0.03 200); }
