/* Suhaili Labs — company site
   Direction: black ground, light-weight headline, one cyan accent, and a
   mosaic of blocks with the logo on a white tile (after the Noname-style
   reference). Palette from the brand kit: ink #00060F, steel #9DB5BC.
   Cyan is lifted from the logo gradient; the purple half stays in the logo
   only, so the site relates to Waypoint without sharing its theme. */

:root {
  --ink: #00060f;
  --ink-2: #0b121b;
  --ink-3: #141c26;
  --line: rgba(255, 255, 255, 0.10);
  --paper: #ffffff;
  --text: #f4f6f8;
  --muted: #b9c6cc;
  --steel: #9db5bc;
  --cyan: #21d4fd;
  --cyan-deep: #0fadcf;
  --purple: #b721ff;
  --grad: linear-gradient(90deg, #b721ff 0%, #21d4fd 100%);
  --max: 1180px;
  --font: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 300; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--grad);
}
.arrow { display: inline-block; margin-left: 8px; transition: transform .15s ease; }
a:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 32px; width: auto; }
.brand-word { height: 12px; width: auto; }
.brand-mark.small { height: 22px; }
.brand-word.small { height: 9px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: 14px; flex: 1; }
.site-nav a { color: var(--text); opacity: .85; }
.site-nav a:hover { opacity: 1; color: var(--cyan); }

.button {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.button.pill {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}
.button.pill:hover { background: var(--cyan); }
.button.ghost {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
}
.button.ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 620px;
}
.hero h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 300;
  letter-spacing: -0.025em;
  max-width: 15ch;
  text-wrap: balance;
}
.h1-sub { display: block; margin-top: 14px; font-size: 0.62em; letter-spacing: -0.01em; }
.h1-sub { color: var(--cyan); }
.lede {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 50ch;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 40px; }

/* Hero screenshot (right column) */
.hero-shot {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-3);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9);
}
.hero-shot::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad);
  z-index: 1;
}
.hero-shot img { width: 100%; height: auto; display: block; }
.hero-shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,6,15,0) 70%, rgba(0,6,15,.7) 100%);
  pointer-events: none;
}

/* Principles */
.principles {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.principle { padding: 40px 28px 40px 0; }
.principle + .principle { padding-left: 28px; border-left: 1px solid var(--line); }
.principle-index {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 20px;
}
.principle h2 { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.principle p { color: var(--muted); font-size: 15px; }

/* Waypoint teaser */
.waypoint { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.waypoint-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.waypoint-shot { max-width: none; margin-left: 0; }
.waypoint h2 { font-size: clamp(44px, 6vw, 84px); font-weight: 300; letter-spacing: -0.03em; }
.waypoint-tagline { margin-top: 18px; font-size: 20px; font-weight: 400; max-width: 34ch; text-wrap: pretty; }
.waypoint-copy { margin-top: 14px; color: var(--muted); max-width: 56ch; }
.soon-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(33, 212, 253, 0.45);
}

/* Free product */
.free { border-bottom: 1px solid var(--line); }
.free-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.free h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; letter-spacing: -0.03em; }
.free-tagline { margin-top: 16px; font-size: 19px; max-width: 36ch; text-wrap: pretty; }
.free-copy { margin-top: 14px; color: var(--muted); max-width: 58ch; }
.free-side { display: flex; flex-direction: column; gap: 28px; order: -1; }
.free-shot { max-width: none; margin-left: 0; }
.free-shot::after { background: none; }
.free-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.free-facts li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.free-facts span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.free-facts code { font-size: 13px; color: var(--cyan); }

/* About + Contact */
.about, .contact { max-width: var(--max); margin: 0 auto; padding: 96px 28px; }
.about-inner, .contact-inner { max-width: 760px; }
.about h2, .contact h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 20px; text-wrap: balance; }
.about p, .contact p { color: var(--muted); font-size: 17px; text-wrap: pretty; }
.contact { padding-top: 0; }
.contact-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 4px;
}
.contact-link:hover { color: var(--cyan); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
}
.site-footer {
  max-width: var(--max); margin: 0 auto; padding: 28px 28px 44px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center;
  font-size: 13px; color: var(--steel);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 32px; min-height: 0; }
  .hero-shot { margin-left: 0; max-width: 100%; }
  .principles { grid-template-columns: 1fr; }
  .free-inner, .waypoint-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 28px; }
  .free-side { order: 0; }
  .principle { padding: 28px 0; }
  .principle + .principle { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .site-header { gap: 16px; padding: 18px 20px; }
  .site-nav { display: none; }
  .site-header .button { margin-left: auto; padding: 10px 16px; font-size: 13px; }
  .hero, .about, .contact, .waypoint-inner { padding-left: 20px; padding-right: 20px; }
  .hero-shot { border-radius: 6px; }
}
