/* DigiMark CRO landing — minimal styles to make the page usable.
   The original main.css was never archived by Wayback; this provides
   sensible defaults so Tailwind utility classes render correctly. */

:root {
  --brand: #ffaa17;
  --brand-dark: #f59e0b;
  --bg: #ffffff;
  --text: #1f2937;
  --text-light: #4b5563;
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1em; color: var(--text-light); }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }

img { max-width: 100%; height: auto; display: block; }

section { padding: 4rem 0; }
.container, .max-w-7xl { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.btn, .button, button[type="submit"] {
  display: inline-block;
  background: var(--brand);
  color: #111;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}
.btn:hover, .button:hover, button[type="submit"]:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* Header */
header { padding: 1rem 0; border-bottom: 1px solid var(--border); }
header nav ul { display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
header nav a { color: var(--text); font-weight: 500; }

/* Cards */
.card, .feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Hero */
.hero, [class*="hero"] {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

/* Footer */
footer { background: #111827; color: #e5e7eb; padding: 3rem 0 1.5rem; }
footer a { color: #d1d5db; }

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--brand);
  outline-offset: 0;
  border-color: transparent;
}
