
/* === Local Lato font (drop files in /fonts/lato) === */
@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root{
  --font-sans: 'Lato', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
}


/* === Aureabox Modern Styles (Flexbox) === */
:root{
  --bg-start: #ffffff;
  --bg-end:   #dddddd;
  --text:     #666666;
  --text-strong: #333333;
  --accent:   #aaaaaa;
  --accent-hover: #666666;
}

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans), -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: radial-gradient(circle, var(--bg-start), var(--bg-end));
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 80px;
  max-width: min(90%, 90vw);
}

.hero .logo {
  width: min(520px, 80vw);
  height: auto;
}

h1 {
  position: absolute;
  /* keep for accessibility only; visually hidden */
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.tagline {
  font-weight: 500;
  line-height: 1.4;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--text);
}

.footer-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(24px, 6vh, 50px);
  font-size: clamp(28px, 4vw, 40px);
}

.footer-cta a {
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-cta a:hover {
  color: var(--accent-hover);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive tweaks for very small devices */
@media (max-width: 360px) {
  .tagline { font-size: 16px; }
}


.tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.tagline-primary {
  margin: 0;
  font-weight: 200;
  line-height: 1.15;
  font-size: clamp(26px, 4.2vw, 40px);
  background: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: #333;

  span {
    white-space: nowrap;
    background: linear-gradient(300deg,    #0B9DA1 0%,    #0096A8 16%,    #0085B4 48%,    #0375B9 72%,    #2F61AB 100%);
    color: transparent;
    background-clip: text;
  }
}

.tagline-secondary {
  margin: 0;
  font-weight: 400;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.5;
  color: var(--text);
  opacity: 0.9;
  max-width: 90%;
  
  span {
    white-space: nowrap;
  }
}
