/* mubarakeg.com — shared styles
   Structural tokens match safelaunchapp.com; accent hue shifted to KeepClip cyan. */

:root {
  --bg:        #0a0f10;
  --bg-alt:    #0e1416;
  --card:      #131c1e;
  --line:      rgba(255,255,255,.08);
  --text:      #e5f0f0;
  --muted:     #8ca4a6;
  --accent:    #3fdcdc;
  --accent-soft: rgba(63,220,220,.10);
  --radius:    16px;
  --maxw:      1040px;
  --measure:   720px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 -apple-system, system-ui, "SF Pro Text", "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------- nav ---------------- */

nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,15,16,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.top .inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
nav.top .brand {
  display: flex; align-items: center; gap: .6rem;
  color: var(--text); font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em;
  margin-right: auto;
}
nav.top .brand:hover { text-decoration: none; }
nav.top .brand img { width: 28px; height: 28px; border-radius: 7px; }
nav.top .links { display: flex; gap: 1.4rem; }
nav.top .links a { color: var(--muted); font-size: .94rem; }
nav.top .links a:hover { color: var(--text); text-decoration: none; }

@media (max-width: 520px) {
  nav.top .inner { padding: .75rem 1.1rem; gap: 1rem; }
  nav.top .links { gap: 1rem; }
  nav.top .links a { font-size: .88rem; }
}

/* ---------------- layout ---------------- */

.section { padding: 5rem 1.5rem; }
.section.alt { background: var(--bg-alt); }
.section .inner { max-width: var(--maxw); margin: 0 auto; }
.narrow { max-width: var(--measure); margin-left: auto; margin-right: auto; }

/* ---------------- hero ---------------- */

header.hero {
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header.hero::before {
  content: "";
  position: absolute; inset: -30% 0 auto 0; height: 70%;
  background: radial-gradient(50rem 26rem at 50% 40%, rgba(63,220,220,.13), transparent 70%);
  pointer-events: none;
}
header.hero > * { position: relative; }

.app-icon {
  width: 108px; height: 108px;
  border-radius: 24px;
  margin: 0 auto 2rem;
  box-shadow: 0 0 60px rgba(63,220,220,.28), 0 10px 40px rgba(0,0,0,.5);
}

h1 {
  font-size: clamp(2.1rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.032em;
  line-height: 1.14;
  margin: 0 0 1.1rem;
}

.lede {
  font-size: 1.19rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

/* ---------------- pills ---------------- */

.pills { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.25rem; }
.pill {
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: .78rem; font-weight: 500;
  padding: 7px 14px;
  letter-spacing: .01em;
}

/* ---------------- buttons ---------------- */

.cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; align-items: center; }

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: .78rem 1.6rem;
  font-size: .97rem; font-weight: 600;
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color .18s ease, background .18s ease;
}
.btn:hover { text-decoration: none; border-color: rgba(63,220,220,.45); }
.btn.primary {
  background: var(--accent-soft);
  border-color: rgba(63,220,220,.35);
  color: var(--accent);
}
.btn.primary:hover { background: rgba(63,220,220,.16); }

.status {
  font-size: .92rem; color: var(--muted);
  margin-top: 1.5rem;
}

/* ---------------- headings ---------------- */

h2 {
  font-size: clamp(1.5rem, 3.6vw, 1.95rem);
  font-weight: 750;
  letter-spacing: -.024em;
  line-height: 1.2;
  margin: 0 0 .9rem;
}
.section > .inner > h2, .section > .inner > .lede { text-align: center; }
.section > .inner > .lede { margin-bottom: 3rem; }

h3 { font-size: 1.06rem; font-weight: 650; margin: 0 0 .7rem; letter-spacing: -.01em; }

/* ---------------- screenshots ---------------- */

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.shot { text-align: center; }
.shot img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 40px rgba(63,220,220,.07);
}
.shot .step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(63,220,220,.3);
  color: var(--accent); font-size: .8rem; font-weight: 700;
  margin: 1.4rem 0 .6rem;
}
.shot p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.shot strong { color: var(--text); display: block; font-weight: 600; margin-bottom: .2rem; }

@media (max-width: 780px) {
  .shots { grid-template-columns: 1fr; gap: 3rem; max-width: 330px; margin: 0 auto; }
}

/* ---------------- cards ---------------- */

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card .emoji { font-size: 1.6rem; line-height: 1; display: block; margin-bottom: 1rem; }
.card ul { margin: 0; padding-left: 1.1rem; }
.card li { color: var(--muted); font-size: .95rem; line-height: 1.55; margin: .5rem 0; }
.card li::marker { color: var(--accent); }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

a.card { display: block; color: inherit; transition: border-color .18s ease, transform .18s ease; }
a.card:hover { text-decoration: none; border-color: rgba(63,220,220,.35); transform: translateY(-2px); }
a.card h3 { color: var(--text); }

/* ---------------- platform chips ---------------- */

.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-size: .92rem;
  color: var(--text);
}

/* ---------------- callout ---------------- */

.callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid rgba(63,220,220,.5);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------------- prose (privacy / support) ---------------- */

.prose { max-width: var(--measure); margin: 0 auto; }
.prose h1 { text-align: left; margin-bottom: .5rem; }
.prose .sub { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.5rem; }
.prose .meta {
  font-size: .875rem; color: var(--muted);
  padding-bottom: 1.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.prose h2 { text-align: left; font-size: 1.3rem; margin: 2.75rem 0 .8rem; }
.prose h3 { font-size: 1.02rem; margin: 1.9rem 0 .5rem; }
.prose p, .prose li { color: #c3d4d4; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin: .45rem 0; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--text); font-weight: 650; }

code {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .12em .4em;
  font-size: .875em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------------- table ---------------- */

.table-scroll { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: .93rem; }
th, td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
td { color: #c3d4d4; }

/* ---------------- footer ---------------- */

footer.site {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem 3.5rem;
  color: #7a9092;
  font-size: .84rem;
}
/* Two centred rows — links, then copyright — matching safelaunchapp.com.
   Previously one row with the copyright pushed right by `margin-left: auto`,
   which read as an afterthought and wrapped awkwardly on narrow screens. */
footer.site .inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center;
}

footer.site .links {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  justify-content: center; align-items: center;
}
footer.site a { color: #7a9092; }
footer.site a:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 560px) {
  footer.site .links { gap: 1rem; }
}

/* ---------------- motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
