/* Global reset & base */
* {
  box-sizing: border-box;
}

:root {
  --header-logo-height: clamp(28px, 4.2vw, 45px);
  --header-vertical-padding: clamp(8px, 1.75vw, 14px);
  --site-header-height: calc(var(--header-logo-height) + (var(--header-vertical-padding) * 2));
  --cookie-banner-height: 0px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  color: #f0f0f0;
  background: #000000;
}

.link-teal {
  color: #26d3c5;
  text-decoration: underline;
  text-decoration-color: rgba(38, 211, 197, 0.6);
  transition: color 0.2s ease;
}

.link-teal:visited {
  color: #26d3c5;
}

.link-teal:hover,
.link-teal:focus-visible {
  color: #53f0e3;
  text-decoration-color: rgba(83, 240, 227, 0.85);
}

/* Layout */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  border-bottom: 1px solid #333;
  background: #111;
  position: sticky;
  top: var(--cookie-banner-height, 0px);
  z-index: 10;
}

.announcement-marquee {
  --announcement-marquee-height: 48px;
  background: #0d0d0d;
  border-bottom: 1px solid #222;
  color: #f0f0f0;
}

.announcement-marquee[hidden] {
  display: none !important;
}

.announcement-marquee__viewport {
  position: relative;
  overflow: hidden;
  padding: 12px;
  min-height: var(--announcement-marquee-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.announcement-marquee__badge {
  flex: 0 0 auto;
  width: auto;
  height: calc(var(--announcement-marquee-height) - 16px);
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  background-color: #000;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

.announcement-marquee__track {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  gap: 0;
  position: relative;
  z-index: 1;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  will-change: transform;
}

.announcement-marquee__track.is-user-interacting {
  cursor: grabbing;
}

.announcement-marquee__content {
  display: inline-flex;
  align-items: center;
}

.announcement-marquee__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.announcement-marquee__item a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.announcement-marquee__item a:hover,
.announcement-marquee__item a:focus-visible {
  color: #ff2ebd;
  outline: none;
}

.announcement-marquee__item::after {
  content: '\00a0\00a0\00a0│\00a0';
  color: rgba(240, 240, 240, 0.5);
  margin: 0 12px;
}

.announcement-marquee__item:last-child::after {
  content: '\00a0\00a0\00a0│\00a0';
}

.announcement-marquee__track.is-reduced-motion {
  cursor: default;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--site-header-height);
  padding: var(--header-vertical-padding) 0;
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f0f0f0;
  text-decoration: none;
}

.logo {
  display: block;
  width: auto;
  height: var(--header-logo-height);
}

.logo-text {
  font-weight: 600;
}

.home-page .site-header .logo-link {
  display: inline-flex;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}

.nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #f0f0f0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ff2ebd;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #181818;
  color: #f0f0f0;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-left: auto;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: #ff2ebd;
  background: #222;
  outline: none;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero section */
.hero {
  padding: 80px 0;
  background: #111;
  text-align: center;
}

.hero-about {
  padding: 0;
  background: transparent;
}


.hero-banner {
  position: relative;
  width: 100%;
  display: grid;
  min-height: clamp(420px, 68vh, 680px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-banner-image {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hero-banner-content {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 5vw, 48px) 20px;
  position: relative;
  z-index: 2;
}

.hero-banner-content .container {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 24px);
  align-items: center;
  width: 100%;
  max-width: 620px;
}

.hero-home {
  padding: clamp(16px, 8vw, 48px) 0 0;
}

.hero-home .hero-banner {
  isolation: isolate;
  justify-items: center;
}

.hero-home .hero-banner-content {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(12px, 4vw, 32px);
  padding-bottom: clamp(18px, 5vw, 40px);
}

.hero-home .hero-banner::after {
  inset: 0;
}


.hero-home .hero-banner-content .container {
  gap: clamp(14px, 3.5vw, 22px);
}

.hero-about h1 {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 0;
}

.hero-about p {
  max-width: 760px;
  color: #e5e5e5;
}

.hero-about .btn {
  background: #ff2ebd;
  border-color: #ff2ebd;
  color: #000000;
}

.hero-about .btn:hover {
  background: #ff5bd0;
  border-color: #ff5bd0;
  color: #000000;
}

.hero-coming-soon {
  padding: clamp(36px, 10vw, 120px) 0;
  background: transparent;
}

.hero-coming-soon .hero-banner {
  min-height: clamp(520px, 78vh, 920px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.hero-coming-soon h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.coming-soon-main {
  padding: 0 20px clamp(48px, 12vw, 96px);
}

.coming-soon-kicker {
  font-size: clamp(14px, 1.75vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(240, 240, 240, 0.7);
  margin: 0;
}

.coming-soon-status {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #26d3c5;
  margin: 8px 0 0;
}

.coming-soon-message {
  font-size: clamp(16px, 2.4vw, 20px);
  max-width: 520px;
  color: rgba(240, 240, 240, 0.82);
}

.services-primary {
  padding: clamp(56px, 8vw, 96px) 0;
}

.services-primary-card {
  background: linear-gradient(145deg, rgba(255, 46, 189, 0.16) 0%, rgba(19, 19, 19, 0.96) 62%, rgba(0, 0, 0, 0.96) 100%);
  border: 1px solid rgba(255, 46, 189, 0.35);
  border-radius: 24px;
  padding: clamp(28px, 6vw, 48px);
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.services-primary-card > p {
  margin: 0;
  color: #e6e6e6;
  line-height: 1.6;
}

.services-primary-header {
  display: grid;
  gap: 12px;
}

.services-primary-header h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
}

.services-primary-price {
  margin: 0;
  font-weight: 600;
  color: #ff71d5;
}

.services-primary-price span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #cfcfcf;
}

.services-primary-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #dcdcdc;
  line-height: 1.6;
  list-style: disc;
}

.services-primary-card .btn {
  align-self: start;
  padding: 12px 22px;
  font-weight: 600;
  background: #ff2ebd;
  border-color: #ff2ebd;
  color: #000000;
}

.services-primary-card .btn:hover {
  background: #ff5bd0;
  border-color: #ff5bd0;
  color: #000000;
}

.hero-logo {
  display: block;
  margin: 0 auto clamp(12px, 3.5vw, 20px);
  width: clamp(88px, 18vw, 160px);
  height: auto;
}

.hero-home .hero-logo {
  margin: 0 auto clamp(10px, 3vw, 18px);
}

body.about-page .hero-logo {
  width: clamp(180px, 32vw, 336px);
}

.hero h1 {
  font-size: clamp(32px, calc(4vw + 12px), 52px);
  margin: 0 0 12px;
  color: #ffffff;
  line-height: 1.1;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: clamp(17px, calc(1.2vw + 12px), 20px);
  line-height: 1.6;
  color: #bbbbbb;
}

.hero-strapline {
  margin-bottom: 40px;
}

.hero-intro p:last-of-type {
  margin-bottom: 0;
}

.hero ul {
  display: inline-block;
  margin: 0 auto 20px;
  padding-left: 20px;
  text-align: left;
  color: #bbbbbb;
}

.hero ul li {
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #ff2ebd;
  border-radius: 8px;
  text-decoration: none;
  color: #ff2ebd;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #ff2ebd;
  color: #000;
}

.btn:focus-visible {
  outline: 2px solid #ff2ebd;
  outline-offset: 3px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-banner-content {
    justify-content: flex-start;
    text-align: left;
    padding-inline: clamp(40px, 8vw, 64px);
  }

  .hero-banner-content .container {
    align-items: flex-start;
    text-align: left;
  }

  .hero-banner-content .btn {
    align-self: flex-start;
  }

  .cta-actions {
    justify-content: center;
  }
}

.section-divider {
  display: block;
  width: clamp(140px, 24vw, 220px);
  margin: clamp(28px, 6vw, 56px) auto;
  height: auto;
}

.hero-divider {
  display: block;
  width: clamp(160px, 28vw, 260px);
  margin: clamp(28px, 6vw, 52px) auto;
  height: auto;
}

/* Sections */
.section {
  padding: clamp(48px, 10vw, 112px) 0;
}

.home-page .hero-home {
  padding-bottom: clamp(64px, 12vw, 128px);
  border-bottom: 1px solid #222;
}

.home-page .section {
  padding: clamp(64px, 12vw, 128px) 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.home-page .hero-home + .section,
.home-page .section + .section {
  margin-top: -1px;
}

.section h2 {
  margin-top: 0;
}

.section p {
  color: #d0d0d0;
}

.founder-signature {
  display: block;
  margin: 12px 0 0 auto;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.founder-note p:last-of-type {
  margin-bottom: 8px;
}

.founder-note .founder-signature {
  margin-top: 4px;
}

.founder-note .founder-role {
  margin: 24px 0 4px;
  text-align: right;
  font-weight: 600;
  color: #f5f5f5;
}

.trust-strip {
  background: #0d0d0d;
  border-block: 1px solid #222;
}

.trust-strip h2 {
  margin-bottom: 24px;
  text-align: center;
}

.trust-metrics {
  display: grid;
  gap: clamp(16px, 4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust-metric {
  padding: 24px;
  border: 1px solid #222;
  border-radius: 16px;
  background: #151515;
}

.trust-metric-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.metric-detail {
  margin: 0;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.5;
}

.ais-heading {
  margin-top: 0;
}

.scroll-animate {
  color: #cfcfcf;
  transition: color 0.3s ease;
}

.scroll-animate.is-active {
  color: #ff2ebd;
}

.ais-bridge {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #222;
  border-radius: 16px;
  background: #151515;
}

.ais-bridge h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.ais-bridge p {
  margin: 0;
  color: #dcdcdc;
}

.cta-mid {
  background: linear-gradient(90deg, rgba(255, 46, 189, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
  text-align: center;
}

.cta-mid h2 {
  margin-bottom: 12px;
}

.cta-mid p {
  margin: 0 auto;
  max-width: 520px;
}

.services-grid-section {
  background: #0c0c0c;
  border-block: 1px solid #1d1d1d;
}

.services-grid-section .container,
.services-examples .container {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.service-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: #151515;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 26px);
  display: grid;
  gap: 12px;
  color: #d8d8d8;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 24px);
  color: #ffffff;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
}

.service-price {
  font-weight: 600;
  color: #ff2ebd;
}

.service-detail {
  color: #bcbcbc;
  font-size: 15px;
}

.ais-highlight {
  background: #050505;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 96px);
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  text-align: center;
}

.ais-highlight .section-divider {
  margin-top: 0;
  margin-bottom: clamp(24px, 4vw, 32px);
}

.ais-highlight-content {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  max-width: 760px;
  text-align: center;
}

.ais-highlight-content p {
  margin: 0;
  color: #dcdcdc;
  line-height: 1.6;
}

.ais-price {
  font-weight: 600;
  color: #ff2ebd;
}

.ais-detail {
  color: #b5b5b5;
}

.ais-highlight .btn {
  justify-self: center;
}

.services-addons ul {
  margin: 24px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
  color: #d6d6d6;
  list-style: disc;
}

.services-addons li {
  line-height: 1.6;
}

.services-addons strong {
  color: #ff2ebd;
}

.services-addons-note {
  margin-top: 20px;
  color: #bcbcbc;
  font-size: 15px;
}

.services-examples {
  background: #0c0c0c;
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
}

.services-examples .service-card {
  background: #141414;
}

.services-final-cta {
  border: 1px solid #1f1f1f;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255, 46, 189, 0.16) 0%, rgba(17, 17, 17, 0.95) 100%);
  margin: clamp(40px, 8vw, 72px) 20px 0;
}

.services-final-cta .cta-actions {
  justify-content: center;
}

.final-cta {
  text-align: center;
  background: #111;
  border: 1px solid #222;
  border-radius: 24px;
  padding: 48px 24px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin: 0 auto;
  max-width: 520px;
}

/* Contact page */
.hero-contact {
  background: linear-gradient(160deg, #111111 0%, #050505 55%, #101010 100%);
}

.hero-contact__inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.hero-contact__inner h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0;
}

.hero-contact__inner p {
  max-width: 640px;
  margin: 0 auto;
  color: #e6e6e6;
  font-size: 1.125rem;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.contact-layout {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-details {
  background: linear-gradient(160deg, rgba(255, 46, 189, 0.12) 0%, rgba(14, 14, 14, 0.95) 100%);
  border: 1px solid rgba(255, 46, 189, 0.24);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 18px;
}

.contact-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-details__label {
  display: block;
  font-weight: 600;
  color: #ff2ebd;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  word-break: break-word;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #ff5bd0;
  text-decoration: underline;
}

.contact-details__note {
  margin: 0;
  color: #bbbbbb;
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 46, 189, 0.18);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 18px;
}

.contact-form__intro {
  margin: 0;
  color: #cfcfcf;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #050505;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: #ff2ebd;
  box-shadow: 0 0 0 3px rgba(255, 46, 189, 0.25);
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ff2ebd 50%), linear-gradient(135deg, #ff2ebd 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form__actions {
  display: flex;
  justify-content: flex-start;
}

.contact-form__submit {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #ff2ebd;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #ff5bd0;
  transform: translateY(-1px);
  outline: none;
}

.contact-form__privacy {
  margin: 0;
  color: #bdbdbd;
  font-size: 0.95rem;
}

.contact-form__privacy a {
  color: #ff2ebd;
}

.contact-form__privacy a:hover,
.contact-form__privacy a:focus-visible {
  color: #ff5bd0;
}

.contact-form__error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(229, 57, 53, 0.16);
  border: 1px solid rgba(229, 57, 53, 0.35);
  color: #ffd3d0;
  font-weight: 600;
}

.contact-form__error a {
  color: inherit;
  text-decoration: underline;
}

.contact-form__error a:hover,
.contact-form__error a:focus-visible {
  color: #ffe4e1;
}

.contact-form__confirmation {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(52, 168, 83, 0.16);
  border: 1px solid rgba(52, 168, 83, 0.35);
  color: #c6f9d7;
  font-weight: 600;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__honeypot input,
.contact-form__honeypot label {
  display: block;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  margin: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.individual-services ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.individual-services li {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 16px;
  background: #1a1a1a;
  color: #dddddd;
}

.individual-services li strong {
  display: block;
  margin-bottom: 8px;
  color: #ff2ebd;
}

.workflow-section {
  --workflow-bg: none;
  position: relative;
  padding: clamp(72px, 12vw, 140px) 0;
  margin: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  min-height: clamp(420px, 70vh, 640px);
  isolation: isolate;
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--workflow-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.workflow-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 0;
}

.workflow-section + .workflow-section {
  margin-top: 0;
}

.workflow-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.workflow-content p {
  color: #e2e2e2;
}

.workflow-shortcuts-wrapper {
  position: sticky;
  top: calc(var(--site-header-height) + 16px);
  z-index: 3;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.workflow-shortcuts-wrapper .container {
  display: flex;
  justify-content: center;
}

.workflow-shortcuts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 18px);
  margin: 0 auto;
  font-weight: 600;
  color: #bbbbbb;
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(6px);
}

.workflow-shortcuts a {
  color: #ff2ebd;
  text-decoration: none;
}

.workflow-shortcuts a:hover,
.workflow-shortcuts a:focus-visible {
  text-decoration: underline;
}

.workflow-shortcuts span {
  color: #666666;
}

.workflow-page {
  scroll-padding-top: calc(var(--site-header-height) + 72px);
}

.workflow-shortcuts a,
.workflow-shortcuts span {
  font-size: clamp(15px, 2.4vw, 17px);
}

.workflow-section--audit {
  --workflow-bg: url('../assets/audit.png');
}

.workflow-section--implement {
  --workflow-bg: url('../assets/implement.png');
}

.workflow-section--sustain {
  --workflow-bg: url('../assets/sustain.png');
}

.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 4vw, 24px);
}

.card {
  border: 1px solid #333;
  border-radius: 12px;
  padding: clamp(18px, 3vw, 24px);
  background: #1a1a1a;
  color: #ddd;
}

.card h3 {
  margin-top: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid #333;
  padding: 24px 0;
  margin-top: 40px;
  text-align: center;
  color: #888;
  background: #111;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.footer-social {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-social a {
  color: inherit;
  text-decoration: none;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #ff2ebd;
  transform: translateY(-2px);
  outline: none;
}

.footer-social img {
  display: block;
  width: 1.5em;
  height: auto;
}

/* Algoland page */
.algoland-hero {
  position: relative;
  padding: clamp(56px, 14vw, 120px) 0 clamp(28px, 6vw, 56px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url('../assets/Algoland.jpg') center/cover no-repeat;
}

.algoland-hero__inner {
  position: relative;
  max-width: 840px;
  display: grid;
  gap: clamp(12px, 2.8vw, 24px);
}

.algoland-hero__copy {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 24px;
  padding: clamp(20px, 3.5vw, 30px);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: clamp(14px, 2.8vw, 22px);
}

.algoland-hero__title {
  margin: 0;
  text-align: center;
}

.algoland-hero__copy .cta-actions {
  justify-content: center;
  gap: clamp(8px, 2vw, 14px);
  margin-top: clamp(8px, 2vw, 16px);
}

.algoland-stats-link {
  margin-top: clamp(12px, 3vw, 24px);
}

.algoland-stats-link .btn {
  min-width: clamp(180px, 32vw, 220px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.algoland-social {
  display: grid;
  gap: clamp(6px, 2vw, 12px);
  margin-top: clamp(6px, 2.5vw, 16px);
}

.algoland-social__heading {
  margin: 0;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: left;
}

.algoland-social__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 3vw, 20px);
}

.algoland-social__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.algoland-social__link:focus-visible {
  outline: 2px solid rgba(38, 211, 197, 0.8);
  outline-offset: 4px;
}

.algoland-social__link:hover,
.algoland-social__link:focus-visible {
  transform: translateY(-4px);
  background: rgba(16, 16, 16, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.algoland-social__icon {
  display: block;
  width: clamp(32px, 7vw, 44px);
  height: auto;
}

.algoland-social__preview {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translate(-50%, -6px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: min(340px, 64vw);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 5;
}

.algoland-social__link:hover .algoland-social__preview,
.algoland-social__link:focus-visible .algoland-social__preview,
.algoland-social__link:focus .algoland-social__preview {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.algoland-search-section {
  padding: clamp(20px, 5vw, 36px) 0 clamp(16px, 4vw, 28px);
  margin-top: clamp(12px, 4vw, 24px);
}

.algoland-search-section .container {
  display: flex;
  justify-content: center;
}

.algoland-search-panel {
  width: min(100%, 600px);
}

.algoland-page {
  scroll-padding-top: calc(var(--site-header-height) + 96px);
}

@media (hover: hover) and (pointer: fine) {
  .algoland-page a:hover {
    cursor: grab;
  }

  .algoland-page a:active {
    cursor: grabbing;
  }
}

.algoland-summary,
.algoland-calendar,
.algoland-table-section {
  scroll-margin-top: calc(var(--site-header-height) + 132px);
}

.algoland-page .algoland-search__title {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  color: #ffffff;
  text-align: center;
}

.algoland-page .algoland-search__description {
  margin: 0;
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.algoland-page .section-lede {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.9);
}

.algoland-stats-nav-wrapper {
  position: sticky;
  top: calc(var(--site-header-height) + 12px);
  z-index: 4;
  margin-bottom: clamp(24px, 5vw, 56px);
}

.algoland-stats-nav-wrapper .container {
  display: flex;
  justify-content: center;
}

.algoland-stats-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  width: min(100%, 460px);
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(6px);
}

.algoland-stats-nav a {
  color: #26d3c5;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.algoland-stats-nav a:hover,
.algoland-stats-nav a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 640px) {
  .algoland-stats-nav {
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 12px 18px;
  }
}

.algoland-page .summary-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 5vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.algoland-page .summary-card {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 46, 189, 0.2);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  justify-items: center;
}

.algoland-page .summary-card--headline {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(38, 211, 197, 0.32);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.algoland-page .summary-card h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.72);
}

.algoland-page .summary-count {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 3.1rem);
  font-weight: 700;
  color: #26d3c5;
}

.algoland-page .summary-meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.algoland-page .last-updated {
  margin-top: 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.algoland-page .algoland-summary.section {
  padding-top: clamp(18px, 4vw, 32px);
  padding-bottom: clamp(28px, 5vw, 48px);
}

.algoland-page .algoland-calendar.section {
  padding-top: clamp(20px, 4vw, 36px);
  padding-bottom: clamp(20px, 4vw, 40px);
}

.algoland-page .algoland-search {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 14px);
}

.algoland-page .algoland-search__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 2.5vw, 16px);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(38, 211, 197, 0.25);
  border-radius: 14px;
}

.algoland-page .algoland-search__input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 12px 16px;
  font-size: 1rem;
  color: #f0f0f0;
  background: rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.algoland-page .algoland-search__input::placeholder {
  color: rgba(240, 240, 240, 0.55);
}

.algoland-page .algoland-search__input:focus-visible {
  outline: none;
  border-color: rgba(38, 211, 197, 0.65);
  box-shadow: 0 0 0 3px rgba(38, 211, 197, 0.25);
}

.algoland-page .algoland-search__button {
  background: transparent;
  color: #ff2ebd;
  cursor: pointer;
}

.algoland-page .algoland-search__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.algoland-page .algoland-search__feedback {
  margin: 0 4px;
  min-height: 1.1em;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.algoland-page .algoland-search__feedback.is-error {
  color: #ff8fa3;
}

.algoland-page .algoland-search__feedback.is-success {
  color: #53f0e3;
}

.algoland-page .algoland-calendar {
  padding-top: 0;
}

.algoland-page .section-divider {
  margin: clamp(16px, 4vw, 32px) auto;
}

.algoland-page .algoland-table-section.section {
  padding-top: clamp(16px, 4vw, 28px);
}

.algoland-page .algoland-calendar__title {
  margin-bottom: clamp(20px, 4vw, 32px);
}

.algoland-page .weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 4vw, 28px);
}

@media (min-width: 1024px) {
  .algoland-page .weeks-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.algoland-page .week-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 28px);
  border-radius: 18px;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.algoland-page .week-card.has-rollover {
  overflow: hidden;
}

.algoland-page .week-card.has-rollover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.algoland-page .week-card.has-rollover > * {
  position: relative;
  z-index: 1;
}

.algoland-page .week-card.has-rollover.is-open:hover::before,
.algoland-page .week-card.has-rollover.is-open:focus-within::before,
.algoland-page .week-card.has-rollover.is-catchup:hover::before,
.algoland-page .week-card.has-rollover.is-catchup:focus-within::before {
  opacity: 1;
}

.algoland-page .week-card.has-rollover[data-week="1"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week1.png');
}

.algoland-page .week-card.has-rollover[data-week="2"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week2.png');
}

.algoland-page .week-card.has-rollover[data-week="3"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week3.png');
}

.algoland-page .week-card.has-rollover[data-week="4"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week4.png');
}

.algoland-page .week-card.has-rollover[data-week="5"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week5.png');
}

.algoland-page .week-card.has-rollover[data-week="6"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week6.png');
}

.algoland-page .week-card.has-rollover[data-week="7"]::before {
  background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.85)), url('../assets/week7.png');
}

.algoland-page .week-card.is-open {
  background: rgba(25, 25, 25, 0.9);
  border-color: rgba(38, 211, 197, 0.4);
}

.algoland-page .week-card:not(.is-open) {
  opacity: 0.82;
}

.algoland-page .week-card.has-rollover:hover,
.algoland-page .week-card.has-rollover:focus-within {
  cursor: grab;
}

.algoland-page .week-card:hover,
.algoland-page .week-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 46, 189, 0.35);
}

.algoland-page .week-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.algoland-page .week-card__header h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.algoland-page .week-card__status {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(83, 240, 227, 0.9);
}

.algoland-page .week-card__status.is-catchup {
  color: #ffd85e;
}

.algoland-page .week-card:not(.is-open) .week-card__status {
  color: rgba(255, 255, 255, 0.56);
}

.algoland-page .week-card__count {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.algoland-page .week-card__count-number {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: #ff5bd0;
}

.algoland-page .week-card.is-open .week-card__count-number {
  color: #26d3c5;
}

.algoland-page .week-card.is-upcoming .week-card__count-number {
  color: rgba(255, 255, 255, 0.45);
}

.algoland-page .week-card__count-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.56);
}

.algoland-page .week-card__badge,
.algoland-page .week-card__opens {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.algoland-page .week-card__badge span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.algoland-page .week-card.is-open .week-card__opens {
  color: rgba(255, 255, 255, 0.6);
}

.algoland-page .na-value {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.algoland-table .is-hidden-column {
  display: none;
}

.algoland-alerts {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.algoland-alert {
  border-radius: 14px;
  padding: 14px 18px;
  border-left: 4px solid #ffb347;
  background: rgba(255, 179, 71, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.algoland-alert--info {
  border-left-color: #26d3c5;
  background: rgba(38, 211, 197, 0.08);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.data-table caption {
  text-align: left;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.data-table thead th {
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(17, 17, 17, 0.9);
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table tbody td,
.data-table tbody th {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.data-table tbody th {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.algoland-table td[data-col="links"] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.algoland-table td[data-col="links"] a {
  color: #26d3c5;
  font-weight: 500;
  text-decoration: none;
}

.algoland-table td[data-col="links"] a:hover,
.algoland-table td[data-col="links"] a:focus-visible {
  color: #ff5bd0;
  outline: none;
}

.algoland-table .address-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  line-height: 1.3;
}

.algoland-table .status-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.64);
}

.algoland-table tr.is-syncing {
  position: relative;
}

.algoland-table tr.is-syncing::after {
  content: "Syncing";
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb347;
}

.algoland-table .warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #ffb347;
}

.algoland-table .warning-badge::before {
  content: "⚠";
  font-size: 0.9rem;
}

.algoland-table .na-value {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.algoland-page .table-wrapper {
  background: rgba(0, 0, 0, 0.4);
}

body.prize-modal-open,
body.lookup-modal-open {
  overflow: hidden;
}

.prize-modal[hidden],
.lookup-modal[hidden] {
  display: none !important;
}

.prize-modal,
.lookup-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  background: rgba(5, 9, 20, 0.76);
  backdrop-filter: blur(8px);
  z-index: 1200;
  overflow-y: auto;
}

.prize-modal__overlay,
.lookup-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 20, 0.85);
  z-index: 0;
}

.prize-modal__dialog,
.lookup-modal__dialog {
  position: relative;
  width: min(640px, 96vw);
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(38, 211, 197, 0.4);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 20px);
  z-index: 1;
  max-height: calc(100vh - clamp(72px, 14vw, 136px));
  overflow-y: auto;
}

.prize-modal__close,
.lookup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.prize-modal__close:hover,
.prize-modal__close:focus-visible,
.lookup-modal__close:hover,
.lookup-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  outline: none;
}

.prize-modal__content,
.lookup-modal__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  text-align: center;
}

.prize-modal__content h2,
.lookup-modal__content h2 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.lookup-modal__title {
  text-align: center;
}

.prize-modal__body {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 18px);
}

.lookup-modal__content {
  text-align: left;
}

.lookup-modal__body {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 22px);
}

.lookup-modal__section {
  padding: clamp(16px, 3vw, 20px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 10, 18, 0.72);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.lookup-modal__section-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(83, 240, 227, 0.88);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lookup-modal__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(83, 240, 227, 0.14);
  color: rgba(83, 240, 227, 0.95);
  font-size: 1.1rem;
}

.lookup-modal__section-title-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lookup-modal__section--summary {
  padding: clamp(18px, 3.5vw, 22px);
}

.lookup-modal__stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(12px, 2.5vw, 18px);
}

.lookup-modal__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(12, 20, 32, 0.75);
  border: 1px solid rgba(83, 240, 227, 0.18);
  box-shadow: inset 0 0 0 1px rgba(14, 132, 132, 0.08);
}

.lookup-modal__stat-icon {
  font-size: 1.3rem;
  color: rgba(83, 240, 227, 0.92);
}

.lookup-modal__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  width: 100%;
  word-break: break-word;
}

.lookup-modal__stat-value {
  font-size: clamp(1.05rem, 4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  word-break: break-word;
}

.lookup-modal__section--progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lookup-modal__collapsible {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

.lookup-modal__collapsible summary {
  list-style: none;
}

.lookup-modal__collapsible-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 0;
}

.lookup-modal__collapsible-label {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.lookup-modal__collapsible-summary:focus-visible {
  outline: 2px solid rgba(83, 240, 227, 0.6);
  outline-offset: 4px;
}

.lookup-modal__collapsible-icon {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease;
}

.lookup-modal__collapsible[open] .lookup-modal__collapsible-icon {
  transform: rotate(180deg);
}

.lookup-modal__collapsible .lookup-modal__progress-list,
.lookup-modal__collapsible .lookup-modal__referral-tags {
  margin-top: 12px;
}

.lookup-modal__collapsible summary::-webkit-details-marker {
  display: none;
}

.lookup-modal__progress-note {
  margin: 0;
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lookup-modal__progress-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.lookup-modal__progress-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(14, 24, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lookup-modal__progress-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(83, 240, 227, 0.16);
  color: rgba(83, 240, 227, 0.9);
  font-weight: 600;
}

.lookup-modal__progress-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.lookup-modal__progress-check {
  font-size: 1.1rem;
  color: rgba(119, 255, 186, 0.9);
}

.lookup-modal__section--referrals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lookup-modal__referral-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lookup-modal__referral-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(83, 240, 227, 0.12);
  border: 1px solid rgba(83, 240, 227, 0.24);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.lookup-modal__referral-tag--interactive {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(83, 240, 227, 0.16);
  border-color: rgba(83, 240, 227, 0.38);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  line-height: 1.2;
}

.lookup-modal__referral-tag--interactive:hover,
.lookup-modal__referral-tag--interactive:focus-visible {
  background: rgba(83, 240, 227, 0.24);
  border-color: rgba(83, 240, 227, 0.6);
  color: #ffffff;
}

.lookup-modal__referral-tag--interactive:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 240, 227, 0.35);
}

.lookup-modal__section--highlight {
  background: rgba(22, 30, 48, 0.85);
  border-color: rgba(83, 240, 227, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.lookup-modal__section--highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(83, 240, 227, 0.18), rgba(52, 94, 255, 0.12));
  opacity: 0.4;
  pointer-events: none;
}

.lookup-modal__section--highlight > * {
  position: relative;
  z-index: 1;
}

.lookup-modal__definition-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.lookup-modal__definition-list dt {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lookup-modal__definition-list dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  word-break: break-word;
}

.lookup-modal__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.lookup-modal__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.lookup-modal__empty {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}


.prize-modal__image {
  width: min(260px, 65vw);
  height: auto;
  align-self: center;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.prize-modal__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}

.prize-modal__gallery--inline {
  margin: 16px 0;
  gap: 16px;
}

.prize-modal__gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
}

.prize-modal__gallery-image {
  width: 100%;
  height: auto;
  max-width: 200px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.4);
}

.prize-modal__gallery-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.prize-modal__message {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.prize-modal__asa {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.prize-modal__subheading {
  margin: 12px 0 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(38, 211, 197, 0.9);
}

.prize-modal__winners {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.prize-modal__winners li {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  word-break: break-all;
}

.prize-modal__tabs {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 20px);
}

.prize-modal__tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.prize-modal__tab-button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(38, 211, 197, 0.35);
  background: rgba(38, 211, 197, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.prize-modal__tab-button:hover,
.prize-modal__tab-button:focus-visible {
  background: rgba(38, 211, 197, 0.15);
  border-color: rgba(38, 211, 197, 0.6);
  color: #26d3c5;
  outline: none;
}

.prize-modal__tab-button--active {
  background: rgba(38, 211, 197, 0.22);
  border-color: rgba(38, 211, 197, 0.85);
  color: #26d3c5;
}

.prize-modal__tab-button--disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

.prize-modal__tab-panels {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 24px);
}

.prize-modal__tab-panel[hidden] {
  display: none;
}

.prize-modal__tab-panel-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 26px);
}

.prize-modal__group {
  padding: clamp(18px, 4vw, 24px);
  border-radius: 18px;
  background: rgba(8, 12, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vw, 18px);
}

.prize-modal__group-heading {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(38, 211, 197, 0.92);
}

.prize-modal__section-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.prize-modal__winner-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prize-modal__winner {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.92);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prize-modal__winner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.prize-modal__winner-id {
  border: none;
  border-radius: 999px;
  background: rgba(38, 211, 197, 0.18);
  color: #26d3c5;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.prize-modal__winner-id:hover,
.prize-modal__winner-id:focus-visible {
  background: rgba(38, 211, 197, 0.3);
  color: #1eb4a2;
  outline: none;
}

.prize-modal__winner-status {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prize-modal__winner-status--claimed {
  background: rgba(38, 211, 197, 0.22);
  color: #26d3c5;
}

.prize-modal__winner-status--pending {
  background: rgba(255, 196, 77, 0.2);
  color: #ffc44d;
}

.prize-modal__winner-status--unknown {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.prize-modal__winner-address {
  margin: 0;
  font-family: 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-all;
}

.prize-modal__winner-details {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.prize-modal__claim-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prize-modal__claim-item {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(28, 28, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-all;
}

.prize-modal__empty {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.prize-modal__meta {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .prize-modal,
  .lookup-modal {
    align-items: flex-start;
  }

  .prize-modal__dialog,
  .lookup-modal__dialog {
    margin: auto;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .prize-modal__dialog,
  .lookup-modal__dialog {
    padding: clamp(18px, 7vw, 24px);
    width: 100%;
  }

  .prize-modal__close,
  .lookup-modal__close {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .lookup-modal__section--summary {
    padding: 0;
  }

  .lookup-modal__stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .lookup-modal__stat-card:first-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .lookup-modal__stat-card:nth-child(-n + 3) {
    min-height: 120px;
  }

  .lookup-modal__stat-card:nth-child(-n + 3) .lookup-modal__stat-value {
    font-size: 1.05rem;
  }

  .lookup-modal__stat-card:nth-child(-n + 3) .lookup-modal__stat-label {
    font-size: 0.65rem;
  }
}

@media (min-width: 768px) {
  .site-footer {
    text-align: right;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-meta {
    justify-items: end;
    text-align: right;
  }

  .footer-social {
    justify-content: flex-end;
  }
}

/* Cookie banner */
body.cookie-banner-visible {
  padding-top: var(--cookie-banner-height, 0px);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background: #111111;
  color: #ffffff;
  border-bottom: 1px solid #333333;
  padding: 18px 0;
  display: none;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-banner__message {
  margin: 0;
  flex: 1 1 260px;
  color: #f0f0f0;
}

.cookie-banner__message a {
  color: #ff2ebd;
  text-decoration: underline;
}

.cookie-banner__message a:hover,
.cookie-banner__message a:focus-visible {
  color: #ff5bd0;
}

.cookie-banner__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.cookie-banner__button:focus-visible {
  outline: 2px solid #ff5bd0;
  outline-offset: 3px;
}

.cookie-banner__button--primary {
  background: #ff2ebd;
  color: #ffffff;
  border-color: #ff2ebd;
}

.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus-visible {
  background: #ff5bd0;
  color: #000000;
}

.cookie-banner__button--secondary {
  background: transparent;
  color: #ff2ebd;
  border-color: #ff2ebd;
}

.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus-visible {
  background: rgba(255, 46, 189, 0.15);
  color: #ff5bd0;
  border-color: #ff5bd0;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 16px 0;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner__message {
    flex-basis: auto;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: var(--header-vertical-padding) 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    display: none;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    z-index: 20;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    margin: 0;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: left;
  }

  .hero {
    padding: 56px 0;
  }

  .hero-home {
    --hero-home-offset: clamp(48px, 14vw, 72px);
    --hero-home-visual-height: clamp(360px, 110vw, 560px);
  }

  .hero-logo {
    margin: 0 auto clamp(12px, 4vw, 20px);
  }

  .hero h1 {
    font-size: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-contact__inner {
    justify-items: stretch;
  }

  .contact-form__actions {
    justify-content: stretch;
  }

  .contact-form__submit {
    width: 100%;
  }

  .workflow-section {
    padding: clamp(64px, 14vw, 100px) 0;
    min-height: auto;
  }

  .workflow-shortcuts-wrapper {
    top: calc(var(--site-header-height) + 12px);
  }

  .workflow-shortcuts {
    padding: 10px 18px;
    gap: 6px;
  }

  .final-cta {
    padding: 40px 20px;
  }

  .services-primary {
    padding: 48px 0;
  }

  .services-primary-card {
    padding: 24px;
  }

  .services-final-cta {
    margin-inline: 0;
  }

  .algoland-page .summary-grid {
    grid-template-columns: 1fr;
  }

  .data-table {
    min-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-animate {
    transition: none;
  }
}
