/* MaybeSitter public site — one shared stylesheet.
   No third-party fonts, no CDNs, no trackers, no cookies.
   System font stack chosen to cover Latin, Arabic and Hebrew. */

:root {
  --ink: #1b1b1f;
  --ink-soft: #4a4a55;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --rule: #dcdce2;
  --link: #1a4fd6;
  --link-visited: #5a3bb5;
  --maxw: 44rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ececf1;
    --ink-soft: #b4b4c0;
    --bg: #131317;
    --bg-soft: #1d1d23;
    --rule: #35353f;
    --link: #8fb0ff;
    --link-visited: #c3aaff;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  padding: 2rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Noto Sans Arabic", "Noto Sans Hebrew",
    "Geeza Pro", "Arial Hebrew", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

main,
header,
footer {
  max-width: var(--maxw);
  margin-inline: auto;
}

header {
  padding-bottom: 1.5rem;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 2rem 0 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}

h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.35rem;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-inline-start: 1.5rem;
}

li {
  margin-bottom: 0.35rem;
}

a {
  color: var(--link);
}

a:visited {
  color: var(--link-visited);
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
}

.muted {
  color: var(--ink-soft);
}

.badge {
  display: inline-block;
  margin: 0.5rem 0 1.25rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.meta {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.callout {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg-soft);
}

.verbatim {
  margin: 0;
  font-style: italic;
}

footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

footer nav {
  margin-bottom: 0.75rem;
}

footer nav a {
  display: inline-block;
  margin-inline-end: 1rem;
  margin-bottom: 0.35rem;
}

.langs {
  margin-bottom: 0.75rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
}

th,
td {
  border: 1px solid var(--rule);
  padding: 0.5rem 0.65rem;
  text-align: start;
  vertical-align: top;
}

th {
  background: var(--bg-soft);
}

/* Public launch page ------------------------------------------------------ */

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-medium.ttf") format("truetype");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-semibold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

.launch-page {
  --launch-ink: #14181b;
  --launch-muted: #5f6b70;
  --launch-bg: #f5f7f8;
  --launch-surface: #ffffff;
  --launch-accent: #1f7a8c;
  --launch-accent-soft: #dfeff3;
  --launch-warm: #f3ecdd;
  margin: 0;
  padding: 0;
  min-width: 320px;
  background: var(--launch-bg);
  color: var(--launch-ink);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

.launch-page a:visited {
  color: inherit;
}

.launch-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 24px 0;
}

.launch-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--launch-ink);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.launch-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--launch-accent);
  border-radius: 999px;
  background: var(--launch-accent);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(31, 122, 140, 0.19);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.launch-button:hover {
  transform: translateY(-2px);
  background: #186b7b;
  box-shadow: 0 18px 40px rgba(31, 122, 140, 0.25);
}

.launch-button:focus-visible {
  outline: 3px solid rgba(31, 122, 140, 0.28);
  outline-offset: 4px;
}

.launch-button--small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 14px;
  box-shadow: none;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100svh - 90px);
  max-width: none;
  margin: 0 auto;
  padding: 42px 0 96px;
}

.launch-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--launch-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--launch-accent);
  box-shadow: 0 0 0 6px var(--launch-accent-soft);
}

.launch-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--launch-ink);
  font-size: clamp(56px, 7.3vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.launch-hero h1 em {
  color: var(--launch-accent);
  font-style: normal;
}

.launch-hero__lede {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--launch-muted);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.45;
}

.launch-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.launch-actions > span {
  max-width: 170px;
  color: var(--launch-muted);
  font-size: 13px;
  line-height: 1.35;
}

.launch-proof {
  margin: 28px 0 0;
  color: var(--launch-muted);
  font-size: 13px;
}

.launch-proof::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 10px 4px 0;
  background: rgba(20, 24, 27, 0.22);
  content: "";
}

.launch-visual {
  position: relative;
  display: grid;
  min-height: 710px;
  place-items: center;
}

.launch-visual::before {
  position: absolute;
  inset: 6% 0 4%;
  border-radius: 54px;
  background: linear-gradient(145deg, rgba(223, 239, 243, 0.88), rgba(255, 255, 255, 0.3) 65%, rgba(243, 236, 221, 0.62));
  content: "";
  transform: rotate(3deg);
}

.launch-orbit {
  position: absolute;
  border: 1px solid rgba(31, 122, 140, 0.16);
  border-radius: 50%;
}

.launch-orbit--one {
  width: 590px;
  height: 590px;
}

.launch-orbit--two {
  width: 430px;
  height: 430px;
}

.launch-phone {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 635px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 27, 0.14);
  border-radius: 52px;
  background: #101416;
  box-shadow: 0 36px 80px rgba(20, 24, 27, 0.18), 0 6px 18px rgba(20, 24, 27, 0.12);
  transform: rotate(-2deg);
}

.launch-phone img {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  object-fit: cover;
}

.launch-phone__speaker {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #050607;
  transform: translateX(-50%);
}

.launch-float {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(20, 24, 27, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(20, 24, 27, 0.11);
  backdrop-filter: blur(12px);
}

.launch-float small {
  display: block;
  color: var(--launch-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.launch-float strong {
  display: block;
  color: var(--launch-ink);
  font-size: 14px;
}

.launch-float--focus {
  top: 18%;
  right: -6%;
  display: block;
}

.launch-float--adapt {
  bottom: 17%;
  left: -6%;
  align-items: center;
}

.launch-float--adapt > span {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--launch-accent-soft);
  color: var(--launch-accent);
  font-weight: 600;
  place-items: center;
}

.launch-placeholder {
  display: grid;
  min-height: 220px;
  max-width: none;
  margin: 0;
  background: #101416;
  color: #fff;
  place-items: center;
}

@media (max-width: 900px) {
  .launch-hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
    text-align: center;
  }

  .launch-hero__copy {
    position: relative;
    z-index: 4;
  }

  .launch-eyebrow,
  .launch-actions {
    justify-content: center;
  }

  .launch-hero__lede {
    margin-inline: auto;
  }

  .launch-visual {
    min-height: 660px;
  }

  .launch-proof::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .launch-nav {
    width: min(100% - 32px, 1180px);
    padding-top: 18px;
  }

  .launch-brand span {
    font-size: 18px;
  }

  .launch-button--small {
    display: none;
  }

  .launch-hero {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 48px 0 64px;
  }

  .launch-hero h1 {
    font-size: clamp(53px, 17vw, 78px);
  }

  .launch-hero__lede {
    margin-top: 24px;
    font-size: 19px;
  }

  .launch-actions {
    flex-direction: column;
  }

  .launch-actions .launch-button {
    width: 100%;
  }

  .launch-actions > span {
    max-width: none;
  }

  .launch-visual {
    min-height: 590px;
    margin-inline: -10px;
  }

  .launch-visual::before {
    inset-inline: -20px;
  }

  .launch-phone {
    width: 264px;
    height: 542px;
    border-radius: 45px;
  }

  .launch-phone img {
    border-radius: 37px;
  }

  .launch-float--focus {
    top: 15%;
    right: -3%;
  }

  .launch-float--adapt {
    bottom: 12%;
    left: -3%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-button {
    transition: none;
  }
}
