/*
Theme Name: DocuSlip
Theme URI: https://docuslip.com
Author: DocuSlip
Author URI: https://docuslip.com
Description: Official DocuSlip landing page theme with built-in waitlist management, email harvesting dashboard, and founder analytics. One-theme installation — no plugins required.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: docuslip
Tags: landing-page, one-page, custom-background, custom-logo
*/

/* =====================================================
   DOCUSLIP THEME — FRONT-END STYLES
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --teal-50:  #E1F5EE;
  --teal-100: #9FE1CB;
  --teal-200: #5DCAA5;
  --teal-400: #1D9E75;
  --teal-600: #0F6E56;
  --teal-800: #085041;
  --teal-900: #04342C;
  --gray-50:  #F8F7F4;
  --gray-100: #EDECE8;
  --gray-200: #D3D1C7;
  --gray-400: #888780;
  --gray-600: #5F5E5A;
  --gray-800: #2C2C2A;
  --amber-50: #FAEEDA;
  --amber-200: #FAC775;
  --amber-600: #854F0B;
  --blue-50:  #E6F1FB;
  --blue-600: #185FA5;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--gray-800);
  background: #FAFAF8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-800); }

/* ---- NAV ---- */
.ds-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 2rem;
}
.ds-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.ds-logo {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; color: var(--gray-800);
}
.ds-logo span { color: var(--teal-400); }
.ds-nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.ds-nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--gray-600); transition: color 0.15s;
}
.ds-nav-links a:hover { color: var(--teal-600); }
.ds-nav-cta {
  background: var(--teal-600); color: #fff !important;
  padding: 8px 18px; border-radius: var(--radius-md);
  font-weight: 500 !important; transition: background 0.15s !important;
}
.ds-nav-cta:hover { background: var(--teal-800) !important; color: #fff !important; }
.ds-nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.ds-nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: all 0.2s;
}

/* ---- HERO ---- */
.ds-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.ds-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(29,158,117,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ds-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(29,158,117,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.ds-hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ds-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-400); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 8px;
}
.ds-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--teal-400);
}
.ds-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 1.5rem;
  color: var(--gray-800);
}
.ds-headline em { font-style: italic; color: var(--teal-400); }
.ds-subhead {
  font-size: 16px; font-weight: 300;
  color: var(--gray-600); line-height: 1.75;
  margin-bottom: 2.5rem; max-width: 440px;
}

/* ---- EMAIL SIGNUP FORM ---- */
.ds-signup-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ds-signup-box::before {
  content: '';
  position: absolute; top: -1px; left: 2rem; right: 2rem; height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-200));
  border-radius: 0 0 3px 3px;
}
.ds-signup-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 1.25rem;
  display: block;
}
.ds-email-preview {
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 15px;
}
.ds-email-preview .handle {
  color: var(--teal-600); font-weight: 500;
  min-width: 80px;
}
.ds-email-preview .at-domain {
  color: var(--gray-400);
}
.ds-form-group { margin-bottom: 1rem; }
.ds-form-group label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--gray-600); margin-bottom: 6px;
}
.ds-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: 14px;
  color: var(--gray-800);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.ds-input:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.ds-input::placeholder { color: var(--gray-400); }
.ds-btn {
  width: 100%;
  padding: 13px 24px;
  background: var(--teal-600);
  color: #fff;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
}
.ds-btn:hover { background: var(--teal-800); }
.ds-btn:active { transform: scale(0.99); }
.ds-btn:disabled { background: var(--gray-200); cursor: not-allowed; }
.ds-form-note {
  font-size: 12px; color: var(--gray-400);
  text-align: center; margin-top: 0.75rem;
  font-family: var(--font-mono);
}
.ds-signup-count {
  display: flex; align-items: center; gap: 8px;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  font-size: 13px; color: var(--gray-600);
}
.ds-avatars { display: flex; }
.ds-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-50); border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; color: var(--teal-600);
  margin-left: -8px;
}
.ds-avatars .ds-avatar:first-child { margin-left: 0; }
#ds-success-message {
  display: none;
  text-align: center; padding: 2rem 0;
}
.ds-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-50); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.ds-success-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; margin-bottom: 0.5rem;
}
.ds-success-email {
  font-family: var(--font-mono);
  font-size: 15px; color: var(--teal-600);
  background: var(--teal-50);
  padding: 8px 16px; border-radius: var(--radius-md);
  display: inline-block; margin-top: 0.5rem;
}

/* ---- TRUST BADGES ---- */
.ds-trust {
  padding: 3rem 2rem;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.ds-trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.ds-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray-600);
}
.ds-trust-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ---- BENEFIT SECTIONS ---- */
.ds-section {
  padding: 6rem 2rem;
}
.ds-section-inner {
  max-width: 1100px; margin: 0 auto;
}
.ds-section-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-400); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.ds-section-tag::before {
  content: ''; width: 16px; height: 1px; background: var(--teal-400);
}
.ds-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 1rem;
}
.ds-section-subtitle {
  font-size: 16px; font-weight: 300;
  color: var(--gray-600); line-height: 1.75;
  max-width: 520px; margin-bottom: 3rem;
}
.ds-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ds-two-col.reverse { direction: rtl; }
.ds-two-col.reverse > * { direction: ltr; }
.ds-visual-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.ds-receipt-stack {
  display: flex; flex-direction: column; gap: 10px;
}
.ds-receipt-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-50); border-radius: var(--radius-md);
  padding: 12px 14px;
  animation: fadeSlide 0.5s ease both;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ds-receipt-row:nth-child(2) { animation-delay: 0.15s; }
.ds-receipt-row:nth-child(3) { animation-delay: 0.3s; }
.ds-receipt-row:nth-child(4) { animation-delay: 0.45s; }
.ds-receipt-left { display: flex; align-items: center; gap: 10px; }
.ds-merchant-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; flex-shrink: 0;
  font-family: var(--font-mono);
}
.ic-groc { background: var(--amber-50); color: var(--amber-600); }
.ic-pharm { background: var(--blue-50); color: var(--blue-600); }
.ic-cloth { background: var(--teal-50); color: var(--teal-600); }
.ic-home  { background: #FBEAF0; color: #993556; }
.rr-name { font-size: 13px; font-weight: 500; }
.rr-date { font-size: 11px; color: var(--gray-400); font-family: var(--font-mono); }
.rr-right { display: flex; align-items: center; gap: 10px; }
.rr-tag {
  font-size: 10px; font-family: var(--font-mono);
  padding: 3px 8px; border-radius: 100px;
}
.tag-shop  { background: var(--amber-50);  color: var(--amber-600); }
.tag-hlth  { background: var(--blue-50);   color: var(--blue-600); }
.tag-wardr { background: var(--teal-50);   color: var(--teal-600); }
.tag-home  { background: #FBEAF0;          color: #993556; }
.rr-amount { font-family: var(--font-mono); font-size: 13px; font-weight: 500; }
.ds-shield-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--teal-50); color: var(--teal-600);
  padding: 6px 12px; border-radius: 100px;
  font-size: 11px; font-family: var(--font-mono);
  display: flex; align-items: center; gap: 6px;
}

/* ---- CHEMICAL WARNING SECTION ---- */
.ds-warning-section {
  background: linear-gradient(135deg, #04342C 0%, #085041 100%);
  padding: 6rem 2rem;
  color: #fff;
  position: relative; overflow: hidden;
}
.ds-warning-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.ds-warning-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ds-warning-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-200); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.ds-warning-tag::before { content: ''; width: 16px; height: 1px; background: var(--teal-200); }
.ds-warning-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 1rem; color: #fff;
}
.ds-warning-title em { font-style: italic; color: var(--teal-200); }
.ds-warning-body {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.72); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.ds-warning-body strong { color: var(--teal-100); font-weight: 500; }
.ds-chemical-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 2rem;
}
.ds-chemical-title {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-200); margin-bottom: 1.5rem;
}
.ds-chemical-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ds-chemical-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ds-chem-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-400); margin-top: 7px; flex-shrink: 0;
}
.ds-chem-name { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.ds-chem-desc { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; }

/* ---- FEATURES GRID ---- */
.ds-features-bg { background: var(--gray-50); }
.ds-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 3rem;
}
.ds-feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ds-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ds-feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--teal-50); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 1rem;
}
.ds-feature-title {
  font-size: 15px; font-weight: 500; margin-bottom: 0.5rem; color: var(--gray-800);
}
.ds-feature-desc {
  font-size: 13px; color: var(--gray-600); font-weight: 300; line-height: 1.65;
}

/* ---- HOW IT WORKS ---- */
.ds-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3rem; position: relative;
}
.ds-steps::before {
  content: '';
  position: absolute; top: 22px; left: 10%; right: 10%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--teal-200) 0, var(--teal-200) 6px, transparent 6px, transparent 14px);
}
.ds-step { text-align: center; position: relative; }
.ds-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  margin: 0 auto 1rem; position: relative; z-index: 1;
}
.ds-step-title { font-size: 14px; font-weight: 500; margin-bottom: 0.5rem; }
.ds-step-desc { font-size: 13px; color: var(--gray-600); font-weight: 300; line-height: 1.6; }

/* ---- PRICING ---- */
.ds-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin-top: 3rem;
}
.ds-plan-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg); padding: 2rem;
}
.ds-plan-card.featured {
  background: var(--teal-800);
  border-color: var(--teal-800);
  position: relative;
}
.ds-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal-400); color: #fff;
  font-size: 11px; font-family: var(--font-mono);
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.ds-plan-name {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 1rem;
}
.ds-plan-card.featured .ds-plan-name { color: var(--teal-200); }
.ds-plan-price {
  font-family: var(--font-serif); font-size: 42px;
  font-weight: 700; line-height: 1; margin-bottom: 0.25rem;
}
.ds-plan-card.featured .ds-plan-price { color: #fff; }
.ds-plan-period { font-size: 13px; color: var(--gray-400); margin-bottom: 1.5rem; }
.ds-plan-card.featured .ds-plan-period { color: var(--teal-200); }
.ds-plan-features { list-style: none; font-size: 14px; margin-bottom: 1.5rem; }
.ds-plan-features li {
  padding: 6px 0; border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px; font-weight: 300;
}
.ds-plan-card.featured .ds-plan-features li {
  border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
}
.ds-plan-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-400); flex-shrink: 0;
}
.ds-plan-btn {
  display: block; width: 100%; padding: 11px;
  text-align: center; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--teal-600); color: var(--teal-600);
  background: transparent;
  cursor: pointer; transition: all 0.15s;
  font-family: var(--font-sans);
}
.ds-plan-btn:hover { background: var(--teal-50); }
.ds-plan-card.featured .ds-plan-btn {
  background: var(--teal-400); border-color: var(--teal-400); color: #fff;
}
.ds-plan-card.featured .ds-plan-btn:hover { background: var(--teal-200); border-color: var(--teal-200); color: var(--teal-800); }

/* ---- ROADMAP ---- */
.ds-roadmap { display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
.ds-roadmap-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: #fff; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  transition: box-shadow 0.15s;
}
.ds-roadmap-item:hover { box-shadow: var(--shadow-sm); }
.ds-roadmap-item.active { border-left: 3px solid var(--teal-400); }
.ds-rm-phase {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-400); white-space: nowrap;
  margin-top: 3px; min-width: 80px;
}
.ds-roadmap-item.active .ds-rm-phase { color: var(--teal-600); }
.ds-rm-content {}
.ds-rm-title { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.ds-rm-desc { font-size: 13px; color: var(--gray-600); font-weight: 300; }

/* ---- FINAL CTA ---- */
.ds-final-cta {
  background: var(--gray-50);
  padding: 6rem 2rem; text-align: center;
  border-top: 1px solid var(--gray-100);
}
.ds-final-cta .ds-section-title { margin: 0 auto 1rem; }
.ds-final-cta .ds-subhead { margin: 0 auto 2rem; text-align: center; }
.ds-cta-form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
}
.ds-cta-form .ds-input { flex: 1; }
.ds-cta-form .ds-btn { width: auto; padding: 11px 24px; white-space: nowrap; }

/* ---- FOOTER ---- */
.ds-footer {
  background: var(--gray-800); color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 2rem;
}
.ds-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ds-footer-logo { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.ds-footer-logo span { color: var(--teal-400); }
.ds-footer-desc { font-size: 13px; font-weight: 300; line-height: 1.7; max-width: 240px; }
.ds-footer-col-title {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px; margin-bottom: 1rem;
}
.ds-footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ds-footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.ds-footer-links a:hover { color: var(--teal-200); }
.ds-footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-family: var(--font-mono);
}

/* ---- NOTIFICATIONS ---- */
.ds-toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--teal-800); color: #fff;
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 14px; box-shadow: var(--shadow-lg);
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s ease; z-index: 9999;
}
.ds-toast.show { transform: translateY(0); opacity: 1; }

/* ---- ADMIN BAR OFFSET ---- */
.admin-bar .ds-nav { top: 32px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .ds-hero-inner,
  .ds-two-col,
  .ds-warning-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ds-two-col.reverse { direction: ltr; }
  .ds-features-grid { grid-template-columns: 1fr 1fr; }
  .ds-pricing-grid  { grid-template-columns: 1fr; }
  .ds-steps         { grid-template-columns: 1fr 1fr; }
  .ds-steps::before { display: none; }
  .ds-footer-inner  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ds-nav-links { display: none; }
  .ds-nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(250,250,248,0.98); backdrop-filter: blur(12px);
    padding: 1rem 2rem; gap: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }
  .ds-nav-hamburger { display: flex; }
  .ds-features-grid { grid-template-columns: 1fr; }
  .ds-steps { grid-template-columns: 1fr; }
  .ds-cta-form { flex-direction: column; }
  .ds-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
