/* ========================================
   Form44 Pre-Launch Landing Page
   Design system translated from Tailwind
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input { font: inherit; }

/* ── Typography ── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  color: #1c1917;
  background: #FDFBF7;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  line-height: 1.1;
}

/* ── Color Tokens (CSS Custom Properties) ── */
:root {
  --cream-50: #FDFBF7;
  --paper-dark: #292524;
  --paper-grid-bg: #F2F4EF;
  --paper-grid-line: #D8DCD6;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --red-500: #ef4444;
  --radius: 8px;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

/* ── Paper Grid Background ── */
.bg-paper-grid {
  background-color: var(--paper-grid-bg);
  background-image:
    linear-gradient(to right, var(--paper-grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--paper-grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Navigation ── */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-bar.nav-scrolled {
  background: var(--cream-50);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--paper-dark);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--stone-500);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--stone-800);
}

.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--paper-dark);
  padding: 6px 16px;
  border: 1px dashed var(--stone-300);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-cta-mobile:hover {
  background: var(--stone-100);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta-mobile { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-grid-layer {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  z-index: 0;
}

.hero-dashed-line {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-cream-layer {
  position: absolute;
  inset: 0;
  background: var(--cream-50);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 250px, 0 850px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .hero-content {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.hero-text {
  max-width: 680px;
  margin-bottom: 48px;
}

/* Badge */
.badge {
  display: inline-block;
  background: var(--stone-200);
  color: var(--stone-800);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.badge-accent {
  background: var(--green-100);
  color: var(--green-600);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--paper-dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .muted {
  color: var(--stone-400);
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--stone-500);
  line-height: 1.7;
  max-width: 520px;
}

/* ── Hero Offer Block ── */
.hero-offer {
  margin-top: 24px;
  padding: 16px 20px;
  background: white;
  border: 1px dashed var(--stone-300);
  border-radius: var(--radius);
  max-width: 480px;
}

.hero-offer p {
  font-size: 0.9375rem;
  color: var(--stone-600);
  line-height: 1.6;
}

.hero-offer strong {
  color: var(--stone-900);
}

.hero-offer .price-strike {
  text-decoration: line-through;
  color: var(--stone-400);
}

/* ── Email Form ── */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 480px;
}

.signup-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .signup-form .form-row {
    flex-direction: row;
  }
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px dashed var(--stone-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: white;
  color: var(--stone-900);
  outline: none;
  transition: border-color 0.2s;
}

@media (min-width: 640px) {
  .signup-form input[type="email"] {
    padding: 14px 18px;
    font-size: 0.9375rem;
  }
}

.signup-form input[type="email"]:focus {
  border-color: var(--stone-400);
}

.signup-form input[type="email"]::placeholder {
  color: var(--stone-400);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--paper-dark);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .btn-primary {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}

.btn-primary:hover {
  background: #000;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive button text */
.btn-text-mobile {
  display: inline;
}

.btn-text-desktop {
  display: none;
}

@media (min-width: 768px) {
  .btn-text-mobile {
    display: none;
  }

  .btn-text-desktop {
    display: inline;
  }
}

/* Waitlist counter */
.waitlist-counter {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--stone-500);
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Form messages */
.form-message {
  margin-top: 8px;
  font-size: 0.8125rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  display: none;
}

.form-message.success {
  display: block;
  background: var(--green-100);
  color: var(--green-600);
}

.form-message.error {
  display: block;
  color: var(--red-500);
}

/* ── Product Mockup ── */
.mockup-wrapper {
  position: relative;
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.15);
  border: 1px dashed rgba(231, 229, 228, 0.5);
  background: white;
  z-index: 3;
}

.mockup-inner {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--stone-50);
  display: flex;
  overflow: hidden;
}

/* Sidebar */
.mockup-sidebar {
  width: 240px;
  border-right: 1px dashed var(--stone-200);
  background: var(--stone-50);
  padding: 16px;
  display: none;
  flex-direction: column;
}

@media (min-width: 768px) {
  .mockup-sidebar { display: flex; }
}

.mockup-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--stone-300);
}

.mockup-sidebar-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.mockup-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.mockup-sidebar-item.active {
  background: rgba(231, 229, 228, 0.5);
  border-radius: 4px;
}

.mockup-sidebar-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px dashed var(--stone-300);
  flex-shrink: 0;
}

.mockup-sidebar-item.active .mockup-sidebar-icon {
  border-color: var(--stone-400);
}

.mockup-sidebar-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--stone-300);
}

.mockup-sidebar-item.active .mockup-sidebar-bar {
  background: var(--stone-800);
}

/* Canvas */
.mockup-canvas {
  flex: 1;
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

@media (min-width: 768px) {
  .mockup-canvas { padding: 32px; }
}

.mockup-doc {
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-radius: 8px;
  border: 1px dashed var(--stone-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mockup-doc-header {
  height: 48px;
  border-bottom: 1px dashed var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .mockup-doc-header { height: 56px; padding: 0 32px; }
}

.mockup-doc-title { height: 12px; width: 120px; background: var(--stone-200); border-radius: 4px; }

.mockup-doc-send {
  height: 28px;
  width: 80px;
  background: var(--paper-dark);
  border-radius: 4px;
  color: white;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-doc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .mockup-doc-body { padding: 40px; gap: 32px; }
}

.skel-line {
  border-radius: 4px;
}

.skel-dark { background: var(--stone-800); }
.skel-med { background: var(--stone-200); }
.skel-light { background: var(--stone-100); }
.skel-muted { background: var(--stone-300); }

/* Right Panel */
.mockup-right {
  width: 240px;
  border-left: 1px dashed var(--stone-200);
  background: white;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .mockup-right { display: flex; }
}

.mockup-right-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--stone-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mockup-right-input {
  height: 32px;
  background: var(--stone-100);
  border: 1px dashed var(--stone-200);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mockup-right-divider {
  height: 1px;
  background: var(--stone-100);
  width: 100%;
}

.mockup-stripe-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border: 1px dashed var(--stone-200);
  border-radius: 4px;
  font-size: 0.6875rem;
  color: var(--stone-500);
}

/* ── Features Section ── */
.features-section {
  background: var(--cream-50);
  border-left: 1px dashed var(--stone-200);
  border-right: 1px dashed var(--stone-200);
  border-top: 1px dashed var(--stone-200);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Big text statement */
.big-statement {
  padding: 48px 24px;
  text-align: center;
  border-bottom: 1px dashed var(--stone-200);
  background: var(--cream-50);
}

@media (min-width: 768px) {
  .big-statement { padding: 80px 48px; }
}

.big-statement p {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--stone-800);
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .big-statement p { font-size: 2.25rem; }
}

/* Feature row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px dashed var(--stone-200);
  padding: 32px 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 64px;
  }
}

.feature-text { order: 2; }
.feature-visual { order: 1; display: flex; justify-content: center; align-items: center; margin-bottom: 32px; }

@media (min-width: 768px) {
  .feature-text { order: 1; }
  .feature-visual { order: 2; margin-bottom: 0; }
  .feature-row.reverse .feature-text { order: 2; }
  .feature-row.reverse .feature-visual { order: 1; }
}

.feature-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 1.0625rem;
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-600);
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--stone-800);
}

/* Feature visuals - skeletons */
.visual-card {
  background: white;
  border: 1px dashed var(--stone-200);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Payment card visual */
.payment-card {
  width: 288px;
  height: 176px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.payment-chip {
  width: 40px;
  height: 28px;
  border: 1px dashed var(--stone-200);
  border-radius: 4px;
}

.payment-card-icon {
  color: var(--stone-300);
}

.payment-card-numbers {
  display: flex;
  gap: 8px;
}

.payment-card-numbers span {
  display: block;
  height: 4px;
  width: 32px;
  background: var(--stone-200);
  border-radius: 4px;
}

.payment-card-expiry {
  height: 4px;
  width: 96px;
  background: var(--stone-100);
  border-radius: 4px;
  margin-top: 12px;
}

.payment-card-btn {
  height: 32px;
  width: 100%;
  background: var(--stone-800);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.payment-card-btn span {
  font-size: 0.625rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* Signature visual */
.signature-visual {
  width: 100%;
  max-width: 280px;
}

.sig-label {
  height: 12px;
  width: 128px;
  background: var(--stone-200);
  border-radius: 3px;
  margin-bottom: 16px;
}

.sig-box {
  border: 1px dashed var(--stone-200);
  background: white;
  padding: 24px;
  border-radius: 3px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 128px;
  position: relative;
}

.sig-x {
  color: var(--stone-400);
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.sig-line {
  flex: 1;
  height: 1px;
  background: var(--stone-800);
  margin-bottom: 8px;
}

.sig-pen {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--stone-300);
}

.sig-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.sig-meta span {
  display: block;
  height: 8px;
  background: var(--stone-100);
  border-radius: 3px;
}

/* Builder visual */
.builder-visual {
  width: 208px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.builder-title {
  height: 12px;
  width: 66%;
  background: var(--stone-300);
  border-radius: 3px;
}

.builder-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
}

.builder-lines span {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: var(--stone-100);
}

.builder-drag-block {
  border: 1px dashed var(--stone-300);
  background: var(--stone-50);
  border-radius: 3px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.grip-icon {
  color: var(--stone-300);
  flex-shrink: 0;
}

.builder-drag-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.builder-drag-lines span {
  display: block;
  border-radius: 4px;
  background: var(--stone-200);
}

.builder-pricing-block {
  border: 1px dashed var(--stone-100);
  border-radius: 3px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.builder-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.builder-pricing-total {
  margin-top: 2px;
  padding-top: 6px;
  border-top: 1px solid var(--stone-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.builder-footer {
  padding-top: 4px;
  border-top: 1px solid var(--stone-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.builder-sign-btn {
  height: 20px;
  width: 56px;
  background: var(--stone-800);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.builder-sign-btn span {
  font-size: 0.4375rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* One Link / Steps visual */
.steps-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px dashed var(--stone-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-800);
}

.step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stone-800);
}

.step-desc {
  font-size: 0.6875rem;
  color: var(--stone-400);
  max-width: 100px;
}

.step-arrow {
  color: var(--stone-300);
  font-size: 1.25rem;
  margin-top: -24px;
}

/* ── Trust Strip ── */
.trust-section {
  padding: 48px 24px;
  text-align: center;
  background: var(--cream-50);
  border-left: 1px dashed var(--stone-200);
  border-right: 1px dashed var(--stone-200);
  border-bottom: 1px dashed var(--stone-200);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-section { padding: 64px 48px; }
}

.trust-section h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--stone-800);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .trust-section h2 { font-size: 2.5rem; }
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-pill {
  background: white;
  border: 1px dashed var(--stone-200);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  color: var(--stone-600);
  font-weight: 500;
}

/* ── Bottom CTA ── */
.bottom-cta {
  position: relative;
  padding: 64px 24px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bottom-cta { padding: 96px 48px; }
}

.bottom-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.8;
}

.bottom-cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--paper-dark);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .bottom-cta h2 { font-size: 3rem; }
}

.bottom-cta .cta-subtitle {
  font-size: 1rem;
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.bottom-cta .signup-form {
  margin: 0 auto;
  margin-top: 32px;
}

/* ── Footer ── */
.footer {
  background: var(--cream-50);
  border-top: 1px dashed var(--stone-200);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer { padding: 64px 48px; }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-family: 'Instrument Serif', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--paper-dark);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--stone-400);
  margin-left: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--stone-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--stone-600);
}

.footer-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Instrument Serif', serif;
  font-size: 20vw;
  font-weight: 400;
  color: var(--stone-100);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  line-height: 1;
}

/* ── Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter count-up is handled in JS via requestAnimationFrame */

/* ── Responsive Utilities ── */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .feature-visual {
    transform: scale(0.8);
    margin-bottom: 20px;
  }

  .payment-card {
    width: 230px;
    height: 140px;
    padding: 18px;
  }

  .builder-visual {
    width: 166px;
    padding: 16px;
  }

  .signature-visual {
    max-width: 224px;
  }
  .feature-row { padding: 24px 20px; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hide-tablet-sm { display: none !important; }
}
