/* Cloudless site — shared brand styles */
:root {
  --bg0: #0D2137; --bg1: #081627; --bg2: #050D18;
  --card: #101B2C; --card2: #16233A; --line: rgba(148, 179, 204, .14);
  --text: #F3F7FB; --muted: #8FB3CC; --accent: #38BDF8; --accent-deep: #0284C7;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 45%, var(--bg2) 100%) fixed;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* nav */
.nav { display: flex; align-items: center; gap: 12px; padding: 22px 0; }
.nav img { width: 40px; height: 40px; border-radius: 10px; }
.nav .name { font-weight: 700; font-size: 19px; color: var(--text); }
.nav .links { margin-left: auto; display: flex; gap: 22px; font-size: 15px; }
.nav .links a { color: var(--muted); }

/* hero */
.hero { position: relative; padding: 64px 0 40px; text-align: center; overflow: hidden; }
.hero h1 { font-size: clamp(40px, 7vw, 76px); font-weight: 800; letter-spacing: -2px; line-height: 1.05; }
.hero h1 .accent { color: var(--accent); text-shadow: 0 0 42px rgba(56, 189, 248, .45); }
.hero .sub { color: var(--muted); font-size: clamp(17px, 2.4vw, 22px); margin: 18px auto 0; max-width: 560px; }
.cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px; font-weight: 700;
  font-size: 16px; transition: transform .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: #06121F; box-shadow: 0 8px 30px rgba(56, 189, 248, .35); }
.btn.ghost { border: 1.5px solid var(--line); color: var(--muted); }
.hero .note { color: var(--muted); opacity: .8; font-size: 13.5px; margin-top: 14px; }

/* glow + clouds */
.glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.g1 { width: 640px; height: 480px; background: rgba(56, 189, 248, .16); top: -80px; left: 50%; transform: translateX(-50%); }
.g2 { width: 420px; height: 340px; background: rgba(99, 102, 241, .10); bottom: -120px; left: -120px; }
.cloud { position: absolute; opacity: .09; filter: blur(3px); pointer-events: none; }

/* phone strip */
.phones { display: flex; gap: 28px; justify-content: center; padding: 44px 0 10px; flex-wrap: wrap; }
.phone {
  width: 250px; border-radius: 34px; border: 1.5px solid rgba(163, 184, 208, .35);
  background: #0A1220; padding: 9px; box-shadow: 0 30px 70px rgba(1, 10, 20, .6);
}
.phone img { width: 100%; border-radius: 26px; display: block; }
.phone.tilt-l { transform: rotate(-3deg) translateY(14px); }
.phone.tilt-r { transform: rotate(3deg) translateY(14px); }

/* sections */
section { padding: 72px 0; position: relative; }
.kicker { color: var(--accent); font-weight: 700; font-size: 13.5px; letter-spacing: 1.8px; text-transform: uppercase; }
h2.title { font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; letter-spacing: -1px; margin: 10px 0 14px; }
.lead { color: var(--muted); max-width: 640px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; margin-top: 36px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.card .emoji { font-size: 26px; }
.card h3 { font-size: 18px; margin: 12px 0 6px; }
.card p { color: var(--muted); font-size: 15.5px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 36px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.step .n {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(56, 189, 248, .15);
  color: var(--accent); font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.step h3 { margin: 12px 0 6px; font-size: 18px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 36px 0 56px; margin-top: 40px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
footer .links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14.5px; }
footer .links a { color: var(--muted); }
footer .copy { margin-left: auto; color: var(--muted); opacity: .7; font-size: 13.5px; }

/* legal pages */
.doc { max-width: 760px; margin: 0 auto; padding: 24px 24px 80px; }
.doc h1 { font-size: clamp(30px, 5vw, 42px); font-weight: 800; letter-spacing: -1px; margin: 26px 0 6px; }
.doc .muted { color: var(--muted); opacity: .85; font-size: 14px; }
.doc h2 { font-size: 21px; margin: 34px 0 10px; }
.doc p, .doc li { color: #C7D7E4; }
.doc ul, .doc ol { padding-left: 22px; margin: 10px 0; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--text); }
