/* ================================================
   STARTIQOS.AI — Base Reset & Global Styles
================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (hover: none) and (pointer: coarse) { body { cursor: auto; } }

::-webkit-scrollbar         { width: 2px; }
::-webkit-scrollbar-track   { background: transparent; }
::-webkit-scrollbar-thumb   { background: var(--rose); border-radius: 1px; }
::selection { background: var(--rose); color: var(--white); }

a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: none; font-family: var(--font-body); }
canvas { display: block; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  opacity: 0.030;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: var(--z-content);
}

section { position: relative; overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
p { line-height: 1.85; }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.22em;
  color: var(--rose); text-transform: uppercase; margin-bottom: 24px;
}
.eyebrow-dash { width: 40px; height: 1px; background: var(--rose); flex: none; }

.section-h2 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); margin-bottom: 24px; }
.section-h2 em { font-style: italic; color: var(--rose); }
.section-h2 .ghost { -webkit-text-stroke: 1px rgba(255,255,255,0.18); color: transparent; }

.section-desc {
  font-size: 0.97rem; color: var(--silver);
  max-width: 580px; line-height: 1.9; margin-bottom: var(--space-8);
}

/* Buttons */
.btn-rose {
  position: relative; overflow: hidden; display: inline-block;
  background: var(--rose); color: var(--white);
  padding: 16px 38px; font-family: var(--font-body);
  font-weight: 500; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; clip-path: var(--clip-btn);
  transition: box-shadow var(--trans-base);
}
.btn-rose:hover { box-shadow: var(--glow-rose); }

.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  padding: 15px 38px; font-family: var(--font-body); font-weight: 400;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15); clip-path: var(--clip-btn);
  transition: border-color var(--trans-base), background var(--trans-base);
}
.btn-ghost:hover { border-color: var(--rose); background: var(--rose-fade); }

.divider { width: 100%; height: 1px; background: var(--mist-line); }
.divider-rose { background: linear-gradient(90deg, transparent, var(--rose), transparent); opacity: 0.15; }
