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

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --gray: #5f6368;
  --light-gray: #f8f9fa;
  --blue: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --premium-blue: #003afa;
}

body {
  font-family: Calibri, "Segoe UI", Candara, Segoe, Optima, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  cursor: none !important;
}

h1, h2, h3, h4, h5, h6, 
.hero-title, .hero-title-multi, .section-title, 
.hero-sub, .sub-title, .manifesto-label, 
.manifesto-heading, .use-case-title, 
.step-title, .feature-title {
  font-family: "Century Gothic", AppleGothic, sans-serif !important;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}


/* ── Custom cursor ── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  outline: 1.5px solid var(--white);
  transform: translate(-50%, -50%);
  transition:
    transform 0.08s ease,
    opacity 0.2s,
    box-shadow 0.3s ease;
  mix-blend-mode: normal;
}

#cursor.breathing {
  animation: cursorPulse 1.5s 3 ease-in-out forwards;
}

@keyframes cursorPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0px rgba(66, 133, 244, 0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.6);
  }
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(66, 133, 244, 0.4);
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

a,
button,
input,
textarea,
select,
.nav-logo,
.btn-primary,
.btn-secondary,
a:active,
button:active,
input:active,
textarea:active,
select:active,
.btn-primary:active,
.btn-secondary:active,
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.btn-primary:focus,
.btn-secondary:focus {
  cursor: none !important;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Move contents to the left */
  padding: 0 40px;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  gap: 32px; /* Space between logo and links */
}

nav.dark {
  background: rgba(13, 13, 13, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

nav.dark .nav-logo,
nav.dark .nav-links a {
  color: white;
}
nav.dark .nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1;
  font-family: "Century Gothic", AppleGothic, sans-serif;
}
.nav-logo span {
  padding-top: 2px;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: 24px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
  margin-left: auto; /* Push CTA to the far right */
  background: var(--black);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

nav.dark .nav-cta {
  background: white;
  color: var(--black);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--black);
  padding: 15px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--light-gray);
}

/* ── FOOTER ── */
footer {
  padding: 80px 40px 40px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  max-width: 300px;
  margin-top: 12px;
}
.footer-links {
  display: flex;
  gap: 60px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.hero-title-multi,
.section-title,
.hero-sub,
.sub-title,
.manifesto-label,
.manifesto-heading,
.use-case-title,
.step-title,
.feature-title,
.nav-logo {
  font-family: "Century Gothic", AppleGothic, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--black);
}

.footer-bottom {
  max-width: 1240px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
}
