
:root {
  --blue:      #2563eb;
  --cyan:      #06b6d4;
  --gold:      #d6a64a;
  --ink:       #0f172a;
  --muted:     #5b6880;
  --line:      rgba(15,23,42,.08);
  --card:      rgba(255,255,255,.82);
  --shadow:    0 20px 40px rgba(37,99,235,.08);
  --shadow-lg: 0 34px 90px rgba(15,23,42,.14);
  --radius:    24px;
  --max:       1160px;
  --bg:        #f7fbff;
}

/* Base */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Inter,sans-serif;color:var(--ink);line-height:1.55;background:#fff;overflow-x:hidden}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}
.section{padding:84px 0}
