/* Brand tokens from live bluecloudit.com (cyan #20BAD1, Jost, black nav, dark hero, logo Bluecloud-Logo.png). Draft — not published. */
:root {
  --cyan: #20BAD1;
  --cyan-dark: #1799ad;
  --black: #111111;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --white: #ffffff;
  --grey: #f2f2f2;
  --hero: #0b2a36;
  --font: Jost, "Segoe UI", sans-serif;
  --max: 1140px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--cyan); text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--cyan); color: #fff; padding: 8px 12px; font-weight: 600;
}
.skip-link:focus { top: 8px; }

.draft-note {
  margin: 0;
  background: #f7f7f7;
  color: #666;
  font-size: 12px;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: 0.02em;
}

.utility {
  background: var(--white);
  padding: 14px 0 12px;
  border-bottom: 1px solid #eee;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-img { height: 64px; width: auto; }
.utility-contacts {
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: var(--ink);
}
.utility-contacts strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}
.utility-contacts a { color: var(--ink); }
.utility-contacts a:hover { color: var(--cyan); }

.nav-band {
  background: var(--black);
}
.nav-band ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 52px;
  align-items: center;
}
.nav-band a {
  color: var(--cyan);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 0 14px;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.nav-band a[aria-current="page"],
.nav-band a:hover {
  border-bottom-color: var(--cyan);
}

.page-hero {
  position: relative;
  background: linear-gradient(120deg, #061820 0%, #0d3a48 45%, #08303c 100%);
  color: var(--white);
  min-height: 280px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 72px;
  background: linear-gradient(to top right, var(--white) 49.5%, transparent 50.5%);
}
.page-hero .wrap { position: relative; z-index: 1; padding: 56px 0 90px; }
.eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #cfeff5;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}
.crumb { color: var(--cyan); font-size: 14px; }
.crumb a { color: var(--cyan); }
.crumb span { color: #9ad7e2; }

.section { padding: 64px 0; }
.section-grey { background: var(--grey); }
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.kicker::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--cyan);
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.lede { font-size: 18px; color: #333; max-width: 720px; }
.lede + .lede { margin-top: 0.8em; }

.video-frame {
  margin-top: 28px;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-frame video { width: 100%; height: 100%; display: block; }
.video-caption { font-size: 13px; color: var(--muted); margin-top: 10px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.card {
  background: var(--white);
  padding: 28px 24px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.card-icon {
  width: 48px; height: 48px;
  color: var(--cyan);
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }
.card .more { color: var(--cyan); font-weight: 600; font-size: 14px; }
.card .more:hover { text-decoration: underline; }

.rules { max-width: 720px; }
.rules ul { padding-left: 1.1em; color: #333; }
.rules li { margin: 8px 0; }

.cta-band {
  background: #041820 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M10 100h180M100 10v180' stroke='%2320BAD133' stroke-width='1'/%3E%3C/svg%3E");
  color: var(--white);
  text-align: center;
  padding: 72px 20px;
}
.cta-band h2 { color: var(--white); max-width: 720px; margin: 0 auto 24px; }
.btn-cyan {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 2px;
}
.btn-cyan:hover { background: var(--cyan-dark); color: var(--white); }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-brand img { height: 56px; margin-bottom: 12px; }
.footer-brand p { color: #ddd; margin: 0; }
.site-footer h3 { margin: 0 0 14px; font-size: 16px; font-weight: 600; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 8px 0; }
.site-footer li a { color: var(--white); }
.site-footer li a::before { content: "→ "; color: var(--cyan); }
.site-footer li a:hover { color: var(--cyan); }
.foot-label { color: var(--cyan); font-weight: 600; display: block; margin-top: 10px; }
.foot-label:first-child { margin-top: 0; }
.site-footer .addr, .site-footer a.plain { color: var(--white); }
.legal {
  border-top: 1px solid var(--cyan);
  text-align: center;
  padding: 16px 0 20px;
  font-size: 13px;
  color: #ddd;
}

@media (max-width: 900px) {
  .utility-inner, .utility-contacts { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-band ul { flex-wrap: wrap; gap: 8px 20px; padding: 8px 0; }
  .card-grid, .footer-grid { grid-template-columns: 1fr; }
}


/* Live homepage pillars (Security / Reliability / Scalability) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  min-width: 48px;
}
.pillar h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.pillar p { margin: 0; color: var(--muted); font-size: 14px; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 28px; }
.feature { background: #fff; border: 1px solid #e8e8e8; padding: 22px 20px; }
.section-grey .feature { background: #fff; }
.feature h3 { margin: 0 0 8px; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }
.compare { margin: 28px 0 0; overflow-x: auto; }
.compare table { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #e5e5e5; vertical-align: top; }
.compare th { background: var(--hero); color: #fff; font-weight: 600; }
.compare tr:nth-child(even) td { background: #fafafa; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill { display: inline-block; background: #e8f8fb; color: #0b2a36; border-radius: 2px; padding: 8px 14px; font-size: 13px; font-weight: 600; }
.domain-note { font-size: 14px; color: var(--muted); margin-top: 12px; }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}


.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.example {
  margin: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.example img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  background: #f4f4f4;
}
.example figcaption {
  padding: 14px 16px 16px;
  font-size: 14px;
  color: var(--muted);
}
.example figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .example-grid { grid-template-columns: 1fr; }
}

.xai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.xai-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 18px;
  background: #fff;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.xai-card:hover {
  border-color: #1a73e8;
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.08);
}
.xai-card-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a73e8;
  font-weight: 600;
}
.xai-card strong {
  font-size: 18px;
  color: var(--ink);
}
.xai-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}
.xai-card-go {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a73e8;
}
@media (max-width: 900px) {
  .xai-grid { grid-template-columns: 1fr; }
}


.section-lede {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}


.page-hero--bots {
  min-height: 420px;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(32,186,209,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(32,186,209,0.18) 0%, transparent 50%),
    linear-gradient(125deg, #04141c 0%, #0a3340 42%, #062830 100%);
}
.page-hero--bots .wrap { padding: 72px 0 110px; }
.page-hero--bots .eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
}
.page-hero--bots h1 {
  font-size: clamp(42px, 6.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.page-hero--bots h1 .accent {
  color: var(--cyan);
  display: inline;
}
.hero-tagline {
  margin: 18px 0 28px;
  max-width: 36em;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: #d7eef3;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--cyan);
  color: #062830;
  border: 2px solid var(--cyan);
}
.btn-primary:hover { background: #3ec8db; border-color: #3ec8db; color: #04141c; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.page-hero--bots .crumb { margin: 0; opacity: 0.9; }

/* Live review: softer draft note */
.draft-note--soft {
  background: #e8f1fb;
  color: #1a4a7a;
  border-bottom: 1px solid #b7d0ea;
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
  padding: 0.4rem 1rem;
}
