@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --color-primary: #000000;
  --color-primary-hover: #333333;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-bg: #fef7f8;
  --color-bg-secondary: #f7f0f2;
  --color-bg-white: #ffffff;
  --color-border: #e5e7eb;
  
  --font-family: 'Instrument Sans', sans-serif;
  --font-family-heading: 'Manrope', sans-serif;
  
  --font-size-base: 16px;
  --line-height: 1.5;
  --spacing-unit: 1rem;
  
  --container-width: min(100%, 1200px);
  --container-max-width: 1400px;
  --container-padding: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--wide {
  max-width: var(--container-max-width);
}

/* Button variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Shine sweep pseudo-element — default (white shine for dark buttons) */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::after {
  left: 160%;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
}

/* Black shine for white buttons */
.btn--white::after,
.btn--outline::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 50%,
    transparent 100%
  );
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-white);
}

.btn--white {
  background-color: #fff;
  color: #000;
}

.btn--white:hover {
  background-color: #f3f4f6;
  color: #000;
}

/* Utils */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.space-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* --- Reveal Animations --- */
[class*="reveal-"] {
  opacity: 0;
  transition-duration: 1.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-property: opacity, transform, clip-path;
  will-change: opacity, transform, clip-path;
}

@media (max-width: 768px) {
  .container--mobile-edge {
    padding-inline: 0 !important;
  }
}

.reveal-left {
  transform: translateX(-20px);
  clip-path: inset(0 100% 0 0);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left.is-visible,
.reveal-up.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  clip-path: inset(0 0 0 0);
}