/* DebrisData.com — Professional styles */
:root {
  --navy: #0c1a2e;
  --navy-mid: #152a45;
  --navy-light: #1e3a5f;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #14b8a6;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #475569;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --font: "Inter", "Source Sans 3", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.logo-domain { color: var(--teal-light); font-weight: 500; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.15s;
}

.main-nav a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover { background: var(--teal-dark); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 9.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(13,148,136,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 780px; }

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover { background: var(--teal-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

.btn-full { width: 100%; }

/* Trust strip */
.trust-strip {
  background: var(--gray-100);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-strip p {
  text-align: center;
  font-size: 0.925rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* About */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.about-text .emphasis {
  color: var(--navy);
  font-weight: 500;
  border-left: 3px solid var(--teal);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.highlight-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.highlight-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* Services */
.services { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,148,136,0.25);
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(13,148,136,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.service-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}

.service-card ul li {
  font-size: 0.875rem;
  color: var(--slate);
  padding-left: 1rem;
  position: relative;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

/* Clients */
.clients { background: var(--white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.client-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.client-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.client-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* Approach */
.approach { background: var(--navy); color: var(--white); }

.approach .section-header h2 { color: var(--white); }
.approach .section-lead { color: rgba(255,255,255,0.75); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* Client Portal Coming Soon */
.portal {
  background: var(--gray-50);
  padding: 5rem 0;
}

.portal-banner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.portal-badge {
  display: inline-block;
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.portal-banner h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.portal-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 1.75rem;
}

.portal-feature {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.portal-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.portal-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.portal-note {
  font-size: 0.925rem;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}

/* Notice */
.notice {
  background: var(--gray-100);
  padding: 3.5rem 0;
}

.notice-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.notice-box h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.notice-box p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 0.75rem;
}

.notice-box p:last-child { margin-bottom: 0; }

/* Contact */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 0.85rem;
  text-align: center;
}

/* Form status messages */
.form-status {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1.15rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-status.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* Honeypot — hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.contact-list li strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 0.2rem;
}

.contact-list li span {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.contact-disclaimer {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 1rem 1.15rem;
}

.contact-disclaimer p {
  font-size: 0.825rem;
  color: var(--slate);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2rem;
}

.footer-inner { text-align: center; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-brand .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 0.7rem;
}

.footer-brand .logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
}

.footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  padding: 1.15rem 1.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: left;
}

.footer-disclaimer p {
  font-size: 0.825rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

.footer-disclaimer strong { color: rgba(255,255,255,0.85); }

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide { grid-column: auto; }

  .service-card ul {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-steps {
    grid-template-columns: 1fr 1fr;
  }

  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav.open { display: flex; }

  .mobile-toggle { display: flex; }

  .hero { padding: 8rem 0 4rem; }

  .hero-actions { flex-direction: column; }

  .hero-actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .clients-grid,
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .section { padding: 3.5rem 0; }
}
