/* me1click landing - modern, light, flat
   Colors: Primary #2563EB, Dark #0F172A, Gray #6B7280
*/

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #0F172A;
  --muted: #6B7280;
  --primary: #2563EB;
  --primary-600: #1d4ed8;
  --primary-700: #1e40af;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: var(--text);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(12px); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: rgba(15,23,42,0.85);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: rgba(37,99,235,0.08);
  color: var(--text);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,23,42,0.85);
  cursor: pointer;
}
.pill:hover {
  border-color: rgba(37,99,235,0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 22px rgba(37,99,235,0.25);
}
.btn-primary:hover { background: var(--primary-600); }
.btn-outline {
  background: white;
  border-color: var(--border);
  color: rgba(15,23,42,0.9);
}
.btn-outline:hover { border-color: rgba(37,99,235,0.35); background: rgba(37,99,235,0.06); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: rgba(15,23,42,0.85);
  position: relative;
  display: block;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15,23,42,0.85);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

/* Hero */
.hero {
  padding: 44px 0 26px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(37,99,235,0.16), rgba(37,99,235,0.0));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  color: rgba(15,23,42,0.85);
  font-weight: 800;
  font-size: 13px;
  width: fit-content;
}
.kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.lead {
  margin: 0 0 18px;
  color: rgba(15,23,42,0.78);
  font-size: 16.5px;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,23,42,0.82);
}
.badge svg { width: 16px; height: 16px; color: var(--primary); }

.hero-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}
.hero-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-card .mini {
  font-size: 12px;
  color: rgba(15,23,42,0.70);
  font-weight: 700;
}
.hero-card .stat {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 14px;
  padding: 12px;
  background: white;
}
.metric .label { font-size: 12px; color: rgba(15,23,42,0.70); font-weight: 800; }
.metric .value { font-size: 18px; font-weight: 900; margin-top: 4px; letter-spacing: -0.01em; }

/* Sections */
.section {
  padding: 54px 0;
}
.section.alt {
  background: var(--surface-2);
  border-top: 1px solid rgba(229,231,235,0.8);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}
.section h2 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.01em;
}
.section p.sub {
  margin: 0 0 22px;
  color: rgba(15,23,42,0.72);
  max-width: 70ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  padding: 18px;
}
.card strong { font-size: 16px; }
.card p { margin: 8px 0 0; color: rgba(15,23,42,0.72); }

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(37,99,235,0.10);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.icon svg { width: 22px; height: 22px; color: var(--primary); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  border-radius: var(--radius);
  border: 1px solid rgba(229,231,235,0.9);
  background: white;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 18px 40px rgba(37,99,235,0.16);
}
.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.25);
  color: rgba(15,23,42,0.85);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}
.plan {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.plan h3 {
  margin: 0;
  font-size: 18px;
}
.price {
  margin-top: 10px;
  font-size: 34px;
  letter-spacing: -0.03em;
  font-weight: 950;
}
.price small {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15,23,42,0.70);
}
.ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(15,23,42,0.78);
  font-weight: 650;
  font-size: 14px;
}
.ul svg { width: 18px; height: 18px; color: var(--primary); margin-top: 2px; }

.note {
  margin-top: 14px;
  color: rgba(15,23,42,0.70);
  font-size: 12.5px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: white;
  background: var(--primary);
  margin-bottom: 10px;
}
.step strong { display: block; }
.step p { margin: 8px 0 0; color: rgba(15,23,42,0.72); }

/* Examples */
.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.example {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  display: grid;
  gap: 12px;
}
.example .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.example .tag {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,0.70);
  background: rgba(15,23,42,0.04);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.8);
}
.example a.link {
  color: var(--primary);
  font-weight: 900;
}
.example a.link:hover { text-decoration: underline; }
.example p { margin: 0; color: rgba(15,23,42,0.72); }
.example .cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
details {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  padding: 14px 16px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin: 10px 0 0;
  color: rgba(15,23,42,0.72);
}

/* Footer */
.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(229,231,235,0.85);
  background: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer small { color: rgba(15,23,42,0.65); }
.footer a:hover { text-decoration: underline; }
.footer .muted { color: rgba(15,23,42,0.70); }

/* Mobile */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .examples { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(229,231,235,0.9);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: inline-flex; }
}
