/* Lifestyle Concierge — landing page
   Static stylesheet. No inline styles, no scripts: lets the server enforce a strict CSP. */

/* ---------- Fonts (self-hosted, IBM Plex — SIL OFL 1.1) ---------- */
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/plex-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/plex-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/plex-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/plex-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: "IBM Plex Sans Arabic"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/plex-arabic-400.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }
@font-face { font-family: "IBM Plex Sans Arabic"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/plex-arabic-500.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }
@font-face { font-family: "IBM Plex Sans Arabic"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/plex-arabic-600.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }
@font-face { font-family: "IBM Plex Sans Arabic"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/plex-arabic-700.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }

/* ---------- Tokens (values taken from the design file) ---------- */
:root {
  --paper: #FBFDFB;
  --white: #FFFFFF;
  --ink: #0F1B15;
  --muted: #5F7A6B;
  --line: #E4EFE8;
  --green: #0E6B4B;
  --green-2: #17916A;
  --mint: #EAF4EE;
  --mint-text: #E8FBF1;
  --mint-soft: #9BDCC0;
  --pill-bg: #EEF3D9;
  --pill-line: #DCE5C0;
  --pill-text: #4F6614;
  --butter: #FFDE7A;
  --butter-ink: #33280A;
  --cream: #FFF6DE;
  --cream-ink: #5A4408;
  --gutter: 72px;
  --font: "IBM Plex Sans", "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
:lang(en) body, body:lang(en) { line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p { margin: 0; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-2); }
a:focus-visible, .btn:focus-visible { outline: 3px solid var(--green-2); outline-offset: 3px; border-radius: 6px; }

.page { max-width: 1440px; margin-inline: auto; background: var(--paper); }

.skip {
  position: absolute; inset-inline-start: 16px; top: -60px;
  background: var(--green); color: var(--mint-text);
  padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; z-index: 10;
}
.skip:focus { top: 12px; color: var(--mint-text); }

/* ---------- Top bar ---------- */
.topbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px 32px;
  padding: 18px var(--gutter); background: var(--paper);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand img { width: 64px; height: 64px; }
.wordmark { font-family: "IBM Plex Sans", sans-serif; font-weight: 700; font-size: 19px; direction: ltr; unicode-bidi: isolate; }
.nav {
  display: flex; align-items: center; gap: 30px; margin-inline-start: auto;
  font-size: 15px; font-weight: 500;
}
.nav a { color: var(--muted); }
.nav a:hover { color: var(--green); }
.nav .lang {
  color: var(--green); border: 1px solid var(--line); background: var(--white);
  padding: 4px 16px; border-radius: 999px; font-weight: 600; font-size: 14px;
}
.nav .lang:hover { border-color: var(--green-2); }

/* ---------- Hero ---------- */
.hero {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  padding: 96px var(--gutter) 88px;
  background: linear-gradient(180deg, var(--mint) 0%, var(--paper) 100%);
  text-align: center;
}
.hero-logo { width: 225px; height: 225px; }
.pill {
  border: 1px solid var(--pill-line); background: var(--pill-bg); color: var(--pill-text);
  font-size: 13.5px; font-weight: 600; padding: 6px 20px; border-radius: 999px;
}
.hero h1 { font-size: 46px; font-weight: 700; line-height: 1.4; max-width: 20em; }
:lang(en) .hero h1 { line-height: 1.25; max-width: 17em; letter-spacing: -0.01em; }
.hero .lead { font-size: 19px; color: var(--muted); max-width: 36em; }

/* ---------- Platform paragraph ---------- */
.about { padding: 72px var(--gutter) 64px; display: flex; justify-content: center; }
.about p { max-width: 46em; text-align: center; font-size: 18px; }

/* ---------- Values ---------- */
.values {
  padding: 72px var(--gutter); background: var(--white); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.values h2 { font-size: 28px; font-weight: 700; text-align: center; line-height: 1.5; }
.cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
  margin-top: 24px; width: 100%;
}
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 26px; display: flex; flex-direction: column; gap: 8px;
  align-items: center; text-align: center;
}
.card h3 { font-weight: 700; font-size: 17.5px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Teaser ---------- */
.teaser {
  padding: 56px var(--gutter); background: var(--cream); color: var(--cream-ink);
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.teaser h2 { font-size: 24px; font-weight: 700; }
.teaser p { font-size: 16px; max-width: 38em; }

/* ---------- Saudi-made band ---------- */
.saudi {
  padding: 72px var(--gutter);
  background: linear-gradient(155deg, var(--green) 0%, var(--green-2) 100%);
  color: var(--mint-text);
  display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center;
}
.saudi img { width: 68px; height: 68px; }
.saudi h2 { font-size: 36px; font-weight: 700; line-height: 1.45; }
:lang(en) .saudi h2 { line-height: 1.3; }
.saudi p { font-size: 17.5px; color: var(--mint-soft); max-width: 42em; }

/* ---------- Closing CTA ---------- */
.closing {
  padding: 72px var(--gutter);
  display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center;
}
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15.5px; padding: 14px 34px; border-radius: 999px; line-height: 1.6;
}
.btn-primary { background: var(--butter); color: var(--butter-ink); font-weight: 700; }
.btn-secondary { border: 1px solid var(--line); background: var(--white); color: var(--green); font-weight: 600; }
.btn.is-soon { cursor: default; }
.soon-tag {
  font-size: 11.5px; font-weight: 700; line-height: 1.6;
  padding: 1px 10px; border-radius: 999px;
  background: var(--cream); color: var(--cream-ink);
}
.btn-primary .soon-tag { background: rgba(255, 255, 255, 0.6); color: var(--butter-ink); }

/* ---------- Footer ---------- */
.footer {
  padding: 24px var(--gutter) 32px; border-top: 1px solid var(--line);
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px;
  color: var(--muted); font-size: 13.5px;
}
.footer .brand { gap: 10px; color: var(--muted); }
.footer .brand img { width: 28px; height: 28px; }
.footer .wordmark { font-weight: 600; font-size: 13.5px; }
.footer-links { margin-inline-start: auto; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--green); }
.ltr { direction: ltr; unicode-bidi: isolate; }

/* ---------- Error page ---------- */
.error {
  min-height: 70vh; padding: 96px var(--gutter);
  display: flex; flex-direction: column; gap: 18px; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(180deg, var(--mint) 0%, var(--paper) 100%);
}
.error img { width: 120px; height: 120px; }
.error h1 { font-size: 32px; line-height: 1.5; }
.error p { color: var(--muted); font-size: 17px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .hero h1 { font-size: 40px; }
  .saudi h2 { font-size: 31px; }
}
@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .topbar { padding-block: 14px; justify-content: center; }
  .brand img { width: 48px; height: 48px; }
  .wordmark { font-size: 17px; }
  .nav { margin-inline-start: 0; width: 100%; justify-content: center; gap: 18px; font-size: 14px; }
  .hero { padding-block: 56px 56px; gap: 18px; }
  .hero-logo { width: 168px; height: 168px; }
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16.5px; }
  .about { padding-block: 48px 44px; }
  .about p { font-size: 16.5px; }
  .values, .saudi, .closing { padding-block: 52px; }
  .values h2 { font-size: 23px; }
  .teaser { padding-block: 44px; }
  .teaser h2 { font-size: 21px; }
  .saudi h2 { font-size: 25px; }
  .saudi p { font-size: 16px; }
  .btn { padding: 13px 26px; font-size: 15px; }
  .cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .cta-row .btn { justify-content: center; }
  .footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { margin-inline-start: 0; justify-content: center; }
  .error h1 { font-size: 25px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print { .nav, .skip { display: none; } }
