:root {
  --navy: #0B1F3A;
  --navy-2: #0a1a30;
  --azure: #0057FF;
  --azure-glow: #2F80FF;
  --ice: #dbeafe;
  --ice-pale: #eff6ff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #94a3b8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Outfit', -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Space Grotesk', 'Outfit', sans-serif; font-weight: 700; }
a { color: inherit; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── Language banner ── */
#cindrus-lang-banner {
  display: none; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: var(--ice-pale); border-bottom: 1px solid var(--ice); padding: 10px 20px;
  font-size: 14px; color: var(--navy); text-align: center;
}
#cindrus-lang-banner button {
  border: none; border-radius: 8px; padding: 6px 14px; font-family: 'Outfit', sans-serif;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
}
#cindrus-lang-banner button[data-banner-switch] { background: var(--azure); color: #fff; }
#cindrus-lang-banner button[data-banner-dismiss] { background: transparent; color: var(--ink-faint); }

/* ── Nav ── */
.nav { background: var(--navy); color: #fff; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; text-decoration: none; color: #fff; }
.logo svg { width: 24px; height: 24px; color: var(--azure-glow); }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14.5px; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.75); }
.nav-links a:hover { color: #fff; }
/* Language switcher: a single compact toggle that opens a dropdown, instead
   of listing all 7 languages inline (which crowded the nav and read as
   clutter next to the waitlist button). */
#cindrus-lang-switcher.lang-switcher { position: relative; display: block; }
.lang-switcher-toggle {
  display: flex; align-items: center; gap: 6px; background: none; border: none;
  color: rgba(255,255,255,.75); font-family: 'Outfit', sans-serif; font-size: 13.5px;
  font-weight: 600; cursor: pointer; padding: 6px 2px;
}
.lang-switcher-toggle:hover,
.lang-switcher-toggle:focus,
.lang-switcher-toggle:focus-visible,
.lang-switcher-toggle:active,
.lang-switcher-toggle[aria-expanded="true"] { color: #fff !important; background: rgba(255,255,255,.08) !important; outline: none !important; border: none !important; box-shadow: none !important; border-radius: 8px; }
.lang-switcher-chevron { transition: transform .15s ease; flex-shrink: 0; }
.lang-switcher-toggle[aria-expanded="true"] .lang-switcher-chevron { transform: rotate(180deg); }
.lang-switcher-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px;
  background: #fff; border-radius: 10px; box-shadow: 0 12px 32px rgba(11,31,58,.18);
  padding: 6px; z-index: 40;
}
.lang-switcher-menu.is-open { display: block; }
.lang-switcher-menu a {
  display: block; padding: 8px 12px; border-radius: 6px; font-size: 14px;
  color: var(--ink); text-decoration: none;
}
/* !important here on purpose: without it, unstyled links/buttons fall back
   to the host theme's own default hover/focus color (an off-brand red on
   this WordPress theme) — these overrides make sure ours always wins. */
.lang-switcher-menu a:hover,
.lang-switcher-menu a:focus,
.lang-switcher-menu a:focus-visible,
.lang-switcher-menu a:active { background: var(--ice-pale) !important; color: var(--navy) !important; outline: none !important; }
.lang-switcher-menu a.is-active { color: var(--azure) !important; font-weight: 600; }
@media (max-width: 780px) {
  #cindrus-lang-switcher.lang-switcher { display: flex; justify-content: center; padding-top: 4px; }
  .lang-switcher-menu { right: auto; left: 50%; transform: translateX(-50%); }
}

/* ── Mobile nav toggle ── */
.nav-toggle { display: none; background: none; border: none; border-radius: 8px; cursor: pointer; padding: 8px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
.nav-toggle:hover, .nav-toggle:focus, .nav-toggle:focus-visible, .nav-toggle:active { background: rgba(255,255,255,.08) !important; outline: none !important; border: none !important; }
.nav-links a:focus-visible { outline: 2px solid rgba(255,255,255,.5) !important; outline-offset: 2px; border-radius: 4px; }
@media (max-width: 780px) {
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 4px; order: 3; padding-top: 12px; }
  .nav-links.is-open { display: flex !important; }
  .nav-links a, .nav-links .btn { width: 100%; box-sizing: border-box; text-align: center; }
  .nav-toggle { display: block; }
  .nav-inner { position: relative; }
}
.btn {
  display: inline-block; background: var(--azure); color: #fff !important; border: none; border-radius: 10px;
  padding: 11px 20px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14.5px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
}
.btn:hover { background: #0048d9; }
.btn-ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }

/* ── Hero ── */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 64px 0 80px; }
.eyebrow { display: inline-block; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; letter-spacing: .02em; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.eyebrow.on-light { background: var(--ice-pale); border-color: var(--ice); color: var(--azure); }
h1 { font-size: clamp(30px, 4.6vw, 44px); line-height: 1.15; letter-spacing: -.01em; max-width: 620px; }
.hero .lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.72); max-width: 540px; margin-top: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

/* ── Sections ── */
.section { padding: 60px 0; }
.section--ice { background: var(--ice-pale); }
.section h2 { font-size: 26px; margin-bottom: 10px; }
.section .sub { color: var(--ink-soft); font-size: 15.5px; max-width: 560px; }
.prose p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 16px; max-width: 680px; }
.prose h2 { margin-top: 36px; margin-bottom: 10px; font-size: 21px; }
.prose h2:first-child { margin-top: 0; }

/* ── Tool grid ── */
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.tool-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1.5px solid #e2e8f0;
  border-radius: 12px; text-decoration: none; color: inherit; transition: border-color .15s, transform .15s;
}
.tool-card:hover { border-color: var(--azure); transform: translateY(-1px); }
.tool-flag { width: 28px; height: 20px; border-radius: 2px; flex-shrink: 0; overflow: hidden; }
.tool-flag svg { width: 100%; height: 100%; display: block; }
.tool-name { font-size: 15px; font-weight: 600; color: var(--navy); display: block; }
.tool-domain { font-size: 12.5px; color: var(--ink-faint); }

/* ── Coming-soon market grid (homepage) ── */
.soon-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.soon-card { cursor: default; opacity: .8; border-style: dashed; padding: 12px 14px; gap: 10px; }
.soon-card:hover { border-color: #e2e8f0; transform: none; }
.soon-card .tool-flag { width: 26px; height: 26px; border-radius: 50%; background: var(--ice-pale); display: flex; align-items: center; justify-content: center; font-size: 14px; line-height: 1; }
.soon-card .tool-name { color: var(--ink-soft); font-size: 14px; }
@media (max-width: 480px) { .soon-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }

/* ── Steps / mission grid ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--azure); margin-bottom: 10px; }
.steps h3 { font-size: 17px; margin-bottom: 8px; }
.steps p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ── Contact form ── */
.contact-card { background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px; padding: 32px; margin-top: 32px; max-width: 560px; }
.form-field { margin-bottom: 18px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--ink); outline: none; background: #fff;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--azure); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 8px;
}
.form-select::-ms-expand { display: none; }
.btn-block { width: 100%; text-align: center; }
.form-success { display: none; font-size: 14.5px; color: #16794d; font-weight: 600; margin-top: 16px; }

/* ── Footer ── */
footer.site-footer, footer.cindrus-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 48px 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-grid a { display: block; text-decoration: none; color: rgba(255,255,255,.7); font-size: 14.5px; padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); }

@media (max-width: 720px) {
  .tool-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
