@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300&family=Barlow+Condensed:wght@700;900&display=swap');

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --yellow: #F5C800;
  --pink: #FF3E8A;
  --green: #4DFF6E;
  --grey: #1a1a1a;
  --mid-grey: #2a2a2a;
  --text-muted: #888888;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  border-color: var(--mid-grey);
  backdrop-filter: blur(8px);
}
.nav-logo img { height: 28px; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #ffd700 !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffd700; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ── SECTION BASE ── */
section { padding: 100px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.05; }

h1 { font-size: clamp(52px, 8vw, 96px); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; text-transform: uppercase; }
h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; text-transform: uppercase; }

/* ── FOOTER ── */
footer {
  padding: 48px;
  border-top: 1px solid var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { height: 22px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  padding-left: 48px;
  padding-right: 48px;
  border-bottom: 1px solid var(--mid-grey);
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--mid-grey);
  margin: 0;
}

/* ── TAG ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}
.tag-yellow { color: var(--yellow); border-color: var(--yellow); }
.tag-pink { color: var(--pink); border-color: var(--pink); }
.tag-green { color: var(--green); border-color: var(--green); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-d1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-d2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-d3 { animation-delay: 0.35s; opacity: 0; }
.fade-up-d4 { animation-delay: 0.5s; opacity: 0; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  section { padding: 72px 24px; }
  .page-hero { padding-left: 24px; padding-right: 24px; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--mid-grey);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
}

/* ── TIDYCAL: hide "Powered by" branding ── */
.branding-ltd,
.branding-ltd-b,
[class*="branding-ltd"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--grey);
  border: 1px solid var(--mid-grey);
  padding: 24px 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
#cookie-banner p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 220px;
}
#cookie-banner p a { color: var(--yellow); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--mid-grey);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn.cookie-accept { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.cookie-btn.cookie-accept:hover { background: #ffd700; }
.cookie-btn.cookie-decline:hover { border-color: var(--white); }

@media (max-width: 600px) {
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}
