:root{
  /* Update these color values to match your logo */
  --brand-1: #1e90ff; /* primary */
  --brand-2: #ff7a59; /* accent */
  --brand-3: #ffd166; /* highlight */

  /* --bg-1: linear-gradient(135deg,#0f172a 0%, #07103a 100%); */
  /* --bg-1: #0f172a; */
  --bg-1: #0c132e;
  --text: #e6eef8;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body {
  /* Remove centering from body */
  display: block;
  justify-content: unset;
  align-items: unset;
  height: 100vh;
  margin: 0;
  background: var(--bg-1);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 3em;
    color: #333;
    text-align: center;
}

h3 {
    font-size: 1.5em;
    color: rgba(230,238,248,0.45);
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* changed from center */
  align-items: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
  overflow: auto;
}

/* Brand block */
.brand {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-1); /* ensures logo never overlaps content */
  padding-top: 12px;
  padding-bottom: 12px;
  /* Optional: add a subtle shadow for separation */
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
}

/* Logo */
.logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(2,6,23,0.6);
  background: rgba(255,255,255,0.02);
  padding: 6px;
  display: block;
  margin: 6% auto 0 auto; /* increased top margin to 24px */
}

/* Small rectangle with logo colors */
.color-chip{
  display:flex;
  gap:6px;
  align-items:center;
}
.chip{
  display:inline-block;
  width:28px;
  height:18px;
  border-radius:4px;
  box-shadow: 0 2px 6px rgba(2,6,23,0.45);
  border: 1px solid rgba(255,255,255,0.06);
}
.swatch-1{ background: var(--brand-1) }
.swatch-2{ background: var(--brand-2) }
.swatch-3{ background: var(--brand-3) }

/* Headline */
.headline{
  font-size: clamp(28px,6vw,56px);
  letter-spacing:6px;
  font-weight:700;
  text-transform:uppercase;
  margin-top:6px;
  color:var(--text);
  text-shadow: 0 12px 30px rgba(2,6,23,0.6);
}

/* Sub text */
.sub{
  color:rgba(230,238,248,0.82);
  font-size:16px;
  max-width:720px;
  text-align: left;
}

/* Footer meta */
.meta{
  color:rgba(230,238,248,0.45);
  font-size:13px;
  margin-top:6px;
}

/* link styles tuned for dark background */
a{
  color: var(--brand-2);
  text-decoration: none;
  transition: color .15s ease, box-shadow .15s ease, text-decoration-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
a:hover,
a:focus{
  color: var(--brand-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* stronger, more readable style for footer/meta links */
.meta a{
  color: var(--brand-1);
  font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(255,255,255,0.03) 100%);
  padding: 2px 4px;
  border-radius: 4px;
}
.meta a:hover,
.meta a:focus{
  color: #fff;
  background: rgba(255,255,255,0.04);
  text-decoration: underline;
}
/* ensure focus is visible for keyboard users */
a:focus{
  box-shadow: 0 0 0 3px rgba(30,144,255,0.12);
}

/* content block to match hero image width and center it */
.content{
  max-width:1000px;    /* match the hero image max-width */
  width:100%;
  margin: 0 auto;      /* center the block inside the .center container */
  text-align: left;    /* keep long footer text left-aligned for readability */
  padding: 8px 12px;   /* small inner spacing so text doesn't touch edges on small screens */
}

/* ensure the hero image follows the content width and remains responsive */
.hero{
  display:block;
  width:100%;
  height:auto;
  margin-bottom:12px;
}

.smallhero {
  display: block;
  margin: 12px auto;   /* centers horizontally */
  max-width: 320px;    /* adjust as needed */
  width: 100%;
  height: auto;
}

/* keep footer style but scoped inside content */
.content .meta{
  color:rgba(230,238,248,0.45);
  font-size:14px;
  line-height:1.45;
  margin-top:0;
}
.content .meta a{ /* reuse link styling but ensure visibility */
  color: var(--brand-2);
  text-decoration: none;
}
.content .meta a:hover{ color: var(--brand-1); }

/* subtle horizontal separator that matches the logo/content width */
.separator{
  width:100%;
  max-width:800px;               /* matches your .logo max-width; adjust if you change logo size */
  height:1px;
  margin:18px auto;
  border-radius:1px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.06) 100%);
  box-shadow: 0 2px 8px rgba(2,6,23,0.45);
}

/* slightly more spacing on larger screens */
@media (min-width:900px){
  .separator{ margin:24px auto; }
}