/* Nazra Gaming — white page, black text, borders only (no gray fills) */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #111111;
  --text-muted: #4d4d4d;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.2);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1320px;
  --max-wide: 1480px;
  --header-h: 76px;
  --accent-a: #0e9f9a;
  --accent-b: #0b8e89;
  --accent-c: #15b8b2;
  --accent-warm: #111111;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.28rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-top: 110px;
}

.site-auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.45);
  display: grid;
  place-items: center;
  z-index: 9999;
}

.site-auth-card {
  width: min(92vw, 420px);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  padding: 1.4rem;
}

.site-auth-card h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.site-auth-card p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-auth-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-auth-card input {
  width: 100%;
  min-height: 46px;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.site-auth-card button {
  width: 100%;
  border: none;
  border-radius: 8px;
  min-height: 46px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.site-auth-error {
  min-height: 1.1rem;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: #cc2b2b;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}

body::before {
  background: var(--accent-a);
  top: -8rem;
  left: -8rem;
  opacity: 0.06;
}

body::after {
  background: var(--accent-b);
  bottom: -8rem;
  right: -8rem;
  opacity: 0.05;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.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;
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0.9rem clamp(1.2rem, 3vw, 2.8rem);
  min-height: var(--header-h);
  border-bottom: none;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  justify-content: space-between;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.site-header--hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0;
  justify-self: start;
}

.logo::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-c));
  display: inline-block;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  transition: color 0.15s ease;
  white-space: nowrap;
}

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

.header-cta {
  margin-left: auto;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #ffffff;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.header-cta:hover {
  color: #ffffff;
  filter: brightness(1.04);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
}

.mobile-nav a {
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.35rem 0;
  font-size: 1.05rem;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero — tall, readable */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.6rem, 4vw, 3rem) clamp(3rem, 7vw, 4.8rem);
  min-height: min(78vh, 900px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7vw, 4.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--text);
  max-width: 18ch;
  margin-left: 0;
  margin-right: 0;
}

.hero-lead {
  max-width: 38rem;
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.42rem;
  line-height: 1.65;
}

.hero-sub {
  max-width: 36rem;
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.hero-visual {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}

.placeholder-card {
  border: none;
  border-radius: 0;
  min-height: auto;
  aspect-ratio: 16 / 12;
  background: transparent;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 0;
  animation: none;
  overflow: hidden;
  box-shadow: none;
}

.placeholder-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}

.placeholder-text {
  margin: 0;
  max-width: 28ch;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.1);
}

.hero-badge {
  position: absolute;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-badge--one {
  top: 0.75rem;
  right: 0.75rem;
}

.hero-badge--two {
  bottom: 0.75rem;
  left: 0.75rem;
}

@media (max-width: 900px) {
  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  font-family: inherit;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(14, 159, 154, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-ghost {
  background-color: #ffffff;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--accent-b);
  color: var(--accent-b);
}

.btn--wide {
  width: 100%;
}

/* Stats — white + border only */

.stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.6rem, 4vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stats--after-about {
  padding: 2.2rem 0 0;
  gap: 1rem;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 22px rgba(66, 93, 162, 0.1);
}

.stat-card:nth-child(1) {
  border-top: 3px solid var(--accent-a);
}

.stat-card:nth-child(2) {
  border-top: 3px solid var(--accent-b);
}

.stat-card:nth-child(3) {
  border-top: 3px solid var(--accent-c);
}

.stat-card:nth-child(4) {
  border-top: 3px solid var(--accent-warm);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(66, 93, 162, 0.18);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
  line-height: 1.45;
}

/* Sections */

.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) clamp(1.6rem, 4vw, 3rem);
}

.section--spacious {
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

.section--divider {
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

@media (max-width: 880px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.prose-block h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--text);
  line-height: 1.15;
}

.lead {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.mini-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 159, 154, 0.3);
  background: rgba(14, 159, 154, 0.08);
  color: #0c6a67;
  font-size: 0.82rem;
  font-weight: 600;
}

.prose-block p:not(.lead) {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(66, 93, 162, 0.16);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  color: var(--text);
  position: relative;
  padding-left: 0.85rem;
}

.feature-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 4px;
  height: calc(100% - 0.35rem);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-a), var(--accent-c));
}

.feature-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.feature-list li {
  margin-bottom: 0.65rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.section-title-center {
  text-align: center;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 42rem;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.28rem;
}

.section-intro--wide {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro + .why-grid {
  margin-top: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.why-item {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-strong);
  transition: transform 0.2s ease;
}

.why-item:hover {
  transform: translateY(-2px);
}

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-a);
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .provider-grid {
    grid-template-columns: 1fr;
  }
}

.provider-tile {
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(66, 93, 162, 0.16);
}

.provider-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.provider-tile p {
  margin: 0;
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.provider-strip {
  margin-top: 2rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  background: linear-gradient(120deg, rgba(14, 159, 154, 0.1), rgba(21, 184, 178, 0.08));
}

.provider-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.visual-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.visual-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem;
  background: #ffffff;
}

.visual-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text);
}

.visual-card p,
.visual-card li {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.visual-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.visual-card--image {
  min-height: 180px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(140deg, rgba(14, 159, 154, 0.14), rgba(21, 184, 178, 0.12)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.6) 0 10px, rgba(255, 255, 255, 0.9) 10px 20px);
}

@media (max-width: 900px) {
  .visual-grid {
    grid-template-columns: 1fr;
  }
}

.image-placeholder {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 159, 154, 0.12), rgba(21, 184, 178, 0.1)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.6) 0 12px, rgba(255, 255, 255, 0.94) 12px 24px);
  padding: 1rem;
  display: grid;
  align-content: end;
}

.image-placeholder h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.image-placeholder p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.image-placeholder--tall {
  min-height: 220px;
}

.section--gallery {
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.image-placeholder--wide {
  min-height: 260px;
}

.image-placeholder--square {
  min-height: 260px;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-placeholder--wide,
  .image-placeholder--square {
    min-height: 180px;
  }
}

.provider-pill:nth-child(odd) {
  border-color: rgba(91, 43, 224, 0.35);
}

.provider-pill:nth-child(even) {
  border-color: rgba(0, 120, 215, 0.35);
}

/* Legal pages */

.legal-main {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 4rem) clamp(4rem, 8vw, 6rem);
}

.legal-hero {
  max-width: 900px;
  margin: 0 auto 1.75rem;
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.legal-updated {
  margin: 0.75rem 0 0;
  color: var(--accent-b);
  font-size: 0.95rem;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(66, 93, 162, 0.14);
}

.legal-card h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.25;
}

.legal-card p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

/* Contact */

.section--contact {
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(5rem, 12vw, 9rem);
  border-top: 1px solid var(--line);
}

.contact-layout {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.contact-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.contact-hint {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-form {
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 2.2rem 2.2rem 2.45rem;
  max-width: 520px;
  box-shadow: 0 12px 22px rgba(66, 93, 162, 0.14);
}

@media (min-width: 881px) {
  .contact-form {
    margin-left: auto;
    width: 100%;
  }
}

.field {
  margin-bottom: 1.25rem;
}

.field:last-of-type {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background-color: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: none;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-c);
  box-shadow: 0 0 0 3px rgba(14, 159, 154, 0.14);
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  min-height: 1.25em;
}

/* Footer */

.site-footer {
  background: linear-gradient(145deg, #121212, #1b1b1b);
  color: #f5f5f5;
  margin-top: 0;
  border-top: 2px solid rgba(14, 159, 154, 0.5);
}

.footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 3rem clamp(1.6rem, 4vw, 3rem) 2.2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo:hover {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
}

.footer-tagline {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 22rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 1.35rem clamp(1.6rem, 4vw, 3rem) 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
