/* ============================================================
   WEBSITES.CSS — Sales page, matches portfolio theme
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:      #00171f;
  --bg2:     #061c26;
  --card:    #0a1e28;
  --border:  rgba(200,200,180,0.12);
  --fg:      #e8e4d9;
  --muted:   #7a7668;
  --accent:  #c8f03c;
  --teal:    #3cf0c8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  min-height: 100vh;
  cursor: crosshair;
  overflow-x: hidden;
}

/* ── CURSOR DOT ── */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 0.5px solid rgba(200,200,180,0.25);
  position: sticky;
  top: 0;
  background: rgba(0,23,31,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: top 0.3s ease;
}

.nav-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-name {
  font-size: 10px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.1em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.back-btn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #00171f;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal); }

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-bottom: 0.5px solid var(--border);
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--teal);
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.hero h1 em {
  color: var(--accent);
  font-style: normal;
}
.hero-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin: 1.5rem 0 2rem;
  font-weight: 400;
  max-width: 440px;
}
.hero-sub strong { color: var(--fg); }

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #00171f;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal); }

.btn-ghost {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid rgba(200,240,60,0.4);
  color: var(--accent);
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--fg);
}

/* Hero terminal block */
.hero-terminal {
  background: #061c26;
  border: 0.5px solid rgba(60,240,200,0.2);
  padding: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.hero-terminal::before {
  content: '● ● ●';
  color: rgba(200,200,180,0.2);
  font-size: 16px;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 6px;
}
.hero-terminal .t-label { color: var(--teal); }
.hero-terminal .t-val   { color: var(--fg);   }
.hero-terminal .t-acc   { color: var(--accent); }
.hero-terminal .blink   { animation: blink 1.1s step-end infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── TRUST BAR ── */
.trust-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 0.5px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent);
  font-weight: 800;
}
.trust-desc {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTIONS SHARED ── */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
}
.section-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--fg);
}
.section-heading span { color: var(--accent); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(60,240,200,0.35); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--teal);
  transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 16px; color: var(--fg); margin-bottom: 0.75rem; }
.service-card p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.service-price {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* ── WORK SHOWCASE ── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.work-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.work-card:hover { border-color: rgba(200,240,60,0.3); }
.work-preview {
  height: 180px;
  background: #061c26;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.work-preview--link {
  text-decoration: none;
  transition: background 0.25s;
}
.work-preview--link:hover {
  background: #0a2535;
}
.work-preview--link:hover .preview-url {
  color: var(--accent);
}
.preview-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.work-preview--link:hover .preview-inner {
  color: var(--teal);
}
.preview-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--fg);
  letter-spacing: 0.1em;
}
.preview-url {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.work-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.work-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.work-card h3 { font-size: 18px; color: var(--fg); margin-bottom: 0.75rem; }
.work-card p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
  flex: 1;
  margin-bottom: 1.25rem;
}
.work-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.work-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--accent);
  border: 0.5px solid rgba(200,240,60,0.3);
  padding: 3px 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag.teal { color: var(--teal); border-color: rgba(60,240,200,0.3); }
.work-link {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.work-link:hover { border-color: var(--accent); }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid var(--border);
}
.process-step {
  padding: 2rem;
  border-right: 0.5px solid var(--border);
}
.process-step:last-child { border-right: none; }
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200,240,60,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-title { font-size: 14px; color: var(--fg); margin-bottom: 0.75rem; }
.step-desc {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
}

/* ── WHY ME ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 0.5px solid var(--border);
  transition: border-color 0.25s;
}
.why-item:hover { border-color: rgba(60,240,200,0.25); }
.why-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 14px; color: var(--fg); margin-bottom: 0.4rem; }
.why-item p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
}

/* ── FINAL CTA ── */
.final-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.final-cta h2 span { color: var(--accent); }
.final-cta p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}
.cta-pair {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .back-btn { display: none; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem 2.5rem; }
  .hero-terminal { display: none; }
  section { padding: 3rem 1.25rem; }
  .trust-bar { padding: 2rem 1.25rem; gap: 2rem; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 0.5px solid var(--border); }
  .why-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 4rem 1.25rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .blink { animation: none; }
}