/* MRL Solutions — refined dark + cyan, professional */

:root {
  --bg: #0a0e15;
  --bg-elev: #0f1520;
  --bg-card: #131a26;
  --surface: rgba(255,255,255,0.02);
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --border-accent: rgba(74,212,255,0.28);
  --cyan: #4ad4ff;
  --cyan-soft: #2a9ec9;
  --cyan-dim: rgba(74,212,255,0.1);
  --white: #eaf2fb;
  --text: #cbd6e3;
  --muted: rgba(234,242,251,0.55);
  --muted-2: rgba(234,242,251,0.35);
  --success: #4ade80;
  --radius: 10px;
  --radius-lg: 16px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; color: var(--white); letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1rem; line-height: 1.4; }
p { margin: 0; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan); font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
.lead { font-size: 1.125rem; color: var(--muted); line-height: 1.65; max-width: 60ch; }
.small { font-size: 0.875rem; color: var(--muted); }
.mono { font-family: var(--font-mono); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(10,14,21,0.78); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.04em; color: var(--white); }
.brand-mark { width: 30px; height: 30px; border-radius: 7px; background: linear-gradient(135deg, var(--cyan), var(--cyan-soft)); display: grid; place-items: center; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: #0a0e15; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: inline-block; padding: 8px 14px; font-size: 0.875rem; color: var(--muted); font-weight: 500; border-radius: 6px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--white); background: var(--surface); }
.nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 12px; background: var(--cyan); color: #0a0e15 !important; padding: 9px 18px !important; border-radius: 8px !important; font-weight: 600 !important; }
.nav-cta:hover { background: #6ee0ff !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); padding: 8px; cursor: pointer; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 600; border-radius: 8px; cursor: pointer; border: 1px solid transparent; transition: transform 0.1s, background 0.15s, border-color 0.15s, color 0.15s; text-decoration: none; line-height: 1; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cyan); color: #0a0e15; }
.btn-primary:hover { background: #6ee0ff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* SECTIONS */
.section { padding: 96px 0; position: relative; z-index: 1; }
.section-tight { padding: 64px 0; }
.section-bg { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.0625rem; line-height: 1.65; }

/* HERO */
.hero { padding: 80px 0 96px; position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.hero-glow { position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(74,212,255,0.1) 0%, transparent 60%); filter: blur(40px); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--white); }
.hero-meta-lbl { font-size: 0.8125rem; color: var(--muted); }

/* SUB-PAGE HERO */
.subhero { padding: 64px 0 56px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.subhero .crumbs { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--muted); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; }
.subhero .crumbs a { color: var(--muted); }
.subhero .crumbs a:hover { color: var(--cyan); }
.subhero .crumbs span.sep { color: var(--muted-2); }
.subhero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; max-width: 22ch; }
.subhero p.lead { margin-bottom: 0; max-width: 64ch; }
.subhero-glow { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(74,212,255,0.08) 0%, transparent 60%); filter: blur(30px); pointer-events: none; }

/* CARDS */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; position: relative; }
.card:hover { border-color: var(--border-accent); }
.card h3 { color: var(--white); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }
.card .card-icon { width: 40px; height: 40px; background: var(--cyan-dim); border: 1px solid var(--border-accent); border-radius: 8px; display: grid; place-items: center; margin-bottom: 20px; }
.card .card-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
.card .card-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.card-link { color: var(--cyan); font-size: 0.875rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { color: #6ee0ff; }
.card-link-card { cursor: pointer; text-decoration: none; color: inherit; }
.card-link-card:hover { border-color: var(--cyan); }

/* FEATURE LIST */
.feature-list { display: grid; gap: 0; }
.feature-row { display: grid; grid-template-columns: 48px 1fr; gap: 24px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.feature-row:last-child { border-bottom: none; }
.feature-row .num { font-family: var(--font-mono); font-size: 0.875rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.05em; padding-top: 2px; }
.feature-row h4 { color: var(--white); margin-bottom: 6px; font-size: 1.0625rem; }
.feature-row p { color: var(--muted); font-size: 0.9375rem; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-tight { gap: 48px; }

/* PLACEHOLDER VISUAL */
.ph { position: relative; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(74,212,255,0.04), rgba(74,212,255,0.01)); border: 1px solid var(--border-accent); overflow: hidden; aspect-ratio: 4/3; }
.ph::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(74,212,255,0.05) 0 2px, transparent 2px 14px); }
.ph-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(74,212,255,0.6); }
.ph-inner svg { width: 56px; height: 56px; stroke: rgba(74,212,255,0.5); stroke-width: 1.2; fill: none; }
.ph-label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; max-width: 70%; line-height: 1.5; }
.ph-tag { position: absolute; top: 14px; left: 14px; padding: 4px 10px; background: rgba(10,14,21,0.7); border: 1px solid var(--border-accent); border-radius: 4px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.1em; backdrop-filter: blur(8px); }
.ph-corners { position: absolute; inset: 8px; pointer-events: none; }
.ph-corners::before, .ph-corners::after { content: ''; position: absolute; width: 14px; height: 14px; border: 1.5px solid var(--cyan); }
.ph-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.ph-corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

/* WHY US / TRUST */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-card); }
.trust-badge .star { color: #ffc857; }
.trust-badge strong { color: var(--white); font-weight: 600; }
.trust-badge .small { color: var(--muted); font-size: 0.8125rem; }

/* REVIEW CARD */
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.review-card .stars { color: #ffc857; font-size: 0.9375rem; letter-spacing: 0.1em; margin-bottom: 14px; }
.review-card .quote { font-size: 1rem; color: var(--text); line-height: 1.65; margin-bottom: 20px; font-family: var(--font-display); font-weight: 400; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan-soft)); display: grid; place-items: center; color: #0a0e15; font-weight: 700; font-size: 0.8125rem; flex-shrink: 0; }
.review-card .reviewer-name { color: var(--white); font-weight: 600; font-size: 0.9375rem; }
.review-card .reviewer-loc { color: var(--muted); font-size: 0.8125rem; }

/* FAQ */
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; margin-bottom: 10px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-family: var(--font-mono); color: var(--cyan); font-weight: 400; font-size: 1.25rem; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; max-width: 70ch; display: none; }
.faq-item.open .faq-a { display: block; }

/* SPEC LIST */
.spec-list { display: grid; gap: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-row { display: grid; grid-template-columns: 200px 1fr; padding: 16px 24px; border-bottom: 1px solid var(--border); align-items: start; gap: 24px; }
.spec-row:last-child { border-bottom: none; }
.spec-row .k { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; padding-top: 2px; }
.spec-row .v { color: var(--white); font-size: 0.9375rem; }
.spec-row .v .pill { display: inline-block; padding: 3px 10px; background: var(--cyan-dim); border: 1px solid var(--border-accent); color: var(--cyan); border-radius: 4px; font-family: var(--font-mono); font-size: 0.75rem; margin-right: 4px; margin-bottom: 4px; }

/* AREAS / TAGS */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; align-items: center; padding: 6px 14px; border: 1px solid var(--border-accent); border-radius: 999px; font-family: var(--font-mono); font-size: 0.8125rem; color: var(--cyan); background: var(--cyan-dim); }

/* CALLOUT */
.callout { background: var(--bg-card); border: 1px solid var(--border-accent); border-left: 3px solid var(--cyan); border-radius: var(--radius); padding: 24px 28px; }
.callout strong { color: var(--white); font-family: var(--font-display); }

/* COMPARE TABLE */
.compare { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.compare th { background: var(--bg-elev); color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--success); font-weight: 600; }
.compare .no { color: var(--muted-2); }

/* CTA SECTION */
.cta-section { padding: 96px 0; text-align: center; background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(74,212,255,0.1) 0%, transparent 60%); filter: blur(40px); pointer-events: none; }
.cta-section .inner { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--muted); margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; font-size: 1.0625rem; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info p { color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ic { width: 36px; height: 36px; border: 1px solid var(--border-accent); background: var(--cyan-dim); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ic svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 1.6; }
.contact-item .k { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-family: var(--font-mono); margin-bottom: 4px; }
.contact-item .v { color: var(--white); font-size: 0.9375rem; }

.form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-family: var(--font-mono); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 8px;
  padding: 12px 14px; color: var(--white); font-family: var(--font-sans); font-size: 0.9375rem;
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(74,212,255,0.12); }
.field textarea { min-height: 130px; resize: vertical; font-family: var(--font-sans); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.checks { display: flex; flex-direction: column; gap: 10px; }
.check { display: flex; gap: 10px; align-items: center; font-size: 0.9375rem; color: var(--text); cursor: pointer; }
.check input { width: auto; }

/* FOUNDER CARD */
.founder { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.founder-avatar { width: 200px; height: 200px; border-radius: var(--radius); background: var(--cyan-dim); border: 1px solid var(--border-accent); display: grid; place-items: center; overflow: hidden; position: relative; }
.founder-avatar svg { width: 80px; height: 80px; stroke: rgba(74,212,255,0.4); fill: none; stroke-width: 1.2; }
.founder-avatar .ph-corners { inset: 6px; }
.founder h3 { color: var(--white); margin-bottom: 4px; }
.founder .role { color: var(--cyan); font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.founder p { color: var(--muted); line-height: 1.65; }
.founder .sig { margin-top: 16px; font-family: var(--font-display); color: var(--white); font-weight: 600; }

/* FOOTER */
footer { background: #060912; border-top: 1px solid var(--border); padding: 56px 0 32px; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-col h5 { color: var(--white); font-family: var(--font-display); font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; color: var(--muted); font-size: 0.875rem; margin-bottom: 10px; line-height: 1.5; }
.foot-col a:hover { color: var(--cyan); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8125rem; color: var(--muted); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 36px; height: 36px; border: 1px solid var(--border-strong); border-radius: 8px; display: grid; place-items: center; transition: border-color 0.15s, color 0.15s; }
.foot-social a:hover { border-color: var(--cyan); color: var(--cyan); }
.foot-social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 12px; background: var(--bg-elev); border-bottom: 1px solid var(--border); align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .hero-grid, .split, .contact-grid, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .founder { grid-template-columns: 1fr; }
  .founder-avatar { width: 100%; max-width: 200px; height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 20px; }
  .compare th, .compare td { padding: 10px 12px; font-size: 0.8125rem; }
}
