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

:root {
  --bg-primary: #fff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #eeeef0;
  --bg-card: #fff;
  --accent: #0ccd93;
  --accent-dark: #00875a;
  --accent-darker: #087a52;
  --accent-dim: rgb(12 205 147 / 8%);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #666;
  --accent-secondary: #2563eb;
  --border: #d8d8d8;
  --border-hover: #bbb;
  --border-dark: #333;
  --bg-dark: #141414;
  --bg-dark-2: #1e1e1e;
  --bg-dark-card: #1a1a1a;
  --accent-secondary-light: #60a5fa;
  --shadow-sm: 0 2px 12px rgb(0 0 0 / 6%);
  --shadow-md: 0 4px 16px rgb(0 0 0 / 15%);
  --shadow-lg: 0 12px 32px rgb(0 0 0 / 15%);
  --text-on-accent: #fff;
  --nav-height: 50px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family:
    'Source Sans 3',
    'Source Sans Pro',
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body:not(.ready) footer,
body:not(.ready) nav {
  visibility: hidden;
}

body.no-js footer,
body.no-js nav {
  visibility: visible;
}

.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.noscript-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.noscript-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.noscript-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

::selection {
  background: rgb(12 205 147 / 25%);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-darker);
  outline-offset: 2px;
}

/* Dark surfaces need the bright accent for visible focus */
.section-dark :focus-visible,
.cta-section :focus-visible,
.product-showcase-card:focus-visible,
.deferred-embed:focus-visible {
  outline-color: var(--accent);
}

.card,
.metric-item,
a,
button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  touch-action: manipulation;
}

.skip-link {
  position: absolute;
  top: -100%;
  inset-inline-start: 0;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: var(--space-lg) var(--space-lg);
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px;
}

.skip-link:focus {
  top: 0;
}

nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding-inline: var(--space-xl);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 24px;
  width: auto;
  transition: opacity 0.3s ease;
}

.nav-brand:hover .nav-logo {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-darker);
}

.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: 0 0;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  inset-inline: 0;
  bottom: 0;
  background: rgb(255 255 255 / 98%);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: var(--space-md) var(--space-xl);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

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

.mobile-nav a.active {
  color: var(--accent-darker);
}

.mobile-nav a.mobile-nav-sub {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  border-bottom-style: dashed;
}

.mobile-nav a.mobile-nav-sub.active {
  color: var(--accent-darker);
}

.sub-nav {
  position: fixed;
  top: var(--nav-height);
  inset-inline: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  height: 38px;
  display: flex;
  align-items: center;
}

.sub-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--space-xl);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sub-nav a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.sub-nav a:hover {
  color: var(--text-primary);
}

.sub-nav a.active {
  color: var(--accent-darker);
}

.sub-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

body.has-sub-nav .hero {
  padding-top: 158px;
}

body.has-sub-nav .dk-hero {
  padding-top: 178px;
}

@media (width <= 768px) {
  .sub-nav {
    display: none;
  }

  body.has-sub-nav .hero {
    padding-top: 120px;
  }
}

.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(50vh, 500px);
  background:
    linear-gradient(to right, rgb(12 205 147 / 4%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(12 205 147 / 4%) 1px, transparent 1px),
    linear-gradient(
      135deg,
      var(--bg-primary) 0,
      var(--bg-secondary) 50%,
      var(--bg-primary) 100%
    );
  background-size:
    55px 55px,
    55px 55px,
    100% 100%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-dim) 0, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    transparent 40%,
    var(--bg-primary) 100%
  );
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-compact {
  padding-top: 100px;
  padding-bottom: 40px;
  min-height: auto;
}

.hero-compact h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hero-compact p {
  font-size: 1.1rem;
}

body.has-sub-nav .hero-compact {
  padding-top: 130px;
}

@media (width <= 768px) {
  .hero-compact {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .hero-compact h1 {
    font-size: 2rem;
  }

  body.has-sub-nav .hero-compact {
    padding-top: 90px;
  }
}

section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-body {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  cursor: default;
}

a.card {
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

a.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-tag {
  display: inline-block;
  color: var(--accent-darker);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.investor-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.investor-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.investor-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.investor-logo img {
  max-height: 50px;
  max-width: 220px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.investor-card:hover .investor-logo img {
  opacity: 1;
}

.investor-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

.metric-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: default;
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: var(--accent-dark);
  color: var(--text-on-accent);
}

.btn:hover {
  background: var(--accent-darker);
  transform: translateY(-2px);
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tech-category {
  background: 0 0;
  border: none;
  padding: 0;
}

.tech-category h3,
.tech-category h4 {
  color: var(--accent-darker);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.tech-pill {
  background: 0 0;
  border: none;
  color: var(--text-secondary);
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tech-pill img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.featured-partnerships {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.featured-partnership {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.featured-partnership:nth-child(2n) .featured-partnership-content {
  order: 2;
}

.featured-partnership:nth-child(2n) .featured-partnership-visual {
  order: 1;
}

.featured-partnership-content h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.featured-partnership-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.featured-partnership-content .card-tag {
  display: block;
  margin-bottom: 1.5rem;
}

.source-link {
  color: var(--accent-darker);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.source-link:hover {
  color: var(--text-primary);
}

.featured-partnership-visual {
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.featured-partnership-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-partnership-visual p {
  color: var(--text-tertiary);
  font-style: italic;
  padding: 2rem;
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0,
    var(--bg-primary) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section h2,
.cta-section h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-email {
  color: var(--accent-darker);
  text-decoration: none;
  font-weight: 600;
}

.cta-email:hover {
  text-decoration: underline;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.culture-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 12px 12px;
  padding: 2rem;
}

.culture-item h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.culture-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.life-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.life-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.life-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-smarkets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.why-item h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.why-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.milestones {
  margin-top: 3rem;
}

.milestone {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 2px solid var(--border);
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2rem 2rem 1.5rem;
  margin-top: 2rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: inline-block;
}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-brand:hover .footer-logo {
  opacity: 1;
}

.footer-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-darker);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent-darker);
  border-radius: 6px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.footer-cta:hover {
  background: var(--accent);
  color: var(--text-on-accent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-subheading {
  margin-top: 1.25rem;
}

.footer-status-link {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-app-links {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-app-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-app-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  min-width: 60px;
}

.footer-app-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--text-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.footer-app-group a:hover {
  color: var(--accent-darker);
  border-color: var(--accent);
}

footer .social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
}

footer .social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.footer-contact strong {
  color: var(--text-secondary);
  font-weight: 500;
  margin-right: 0.25rem;
}

.footer-contact a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-address {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
  margin-bottom: 0.15rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  contain: layout style paint;
}

.fade-in.visible {
  animation: fade-in-up 0.6s ease forwards;
  will-change: auto;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.list-styled {
  margin-left: 1.5rem;
  color: var(--text-secondary);
}

.partner-logos-section {
  padding-top: 0;
  padding-bottom: 0;
}

.partner-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.partner-logo-item {
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.partner-logo-item:hover {
  opacity: 0.85;
}

.partner-logo-item img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (width <= 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .featured-partnership {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-partnership:nth-child(2n) .featured-partnership-content {
    order: 1;
  }

  .featured-partnership:nth-child(2n) .featured-partnership-visual {
    order: 2;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .why-smarkets {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestone {
    gap: 1rem;
  }

  .partner-logos-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    justify-items: center;
  }

  .partner-logo-item img {
    height: 40px;
    max-width: 140px;
  }

  .footer-top {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (width <= 480px) {
  nav {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-partnership {
    padding: 1.5rem;
  }

  .card,
  .metric-item,
  .why-item {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h2,
  .cta-section h3 {
    font-size: 1.3rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partner-logo-item img {
    height: 35px;
    max-width: 120px;
  }

  section h2 {
    font-size: 1.5rem;
  }
}

@media (height <= 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.tech-architecture {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tech-arch-layer {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.tech-arch-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-darker);
  margin-bottom: 0.75rem;
}

.tech-arch-items {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tech-arch-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.tech-arch-item.tech-arch-core {
  border-color: var(--accent);
  color: var(--accent-darker);
  background: var(--accent-dim);
}

.tech-arch-connector {
  font-size: 1.5rem;
  color: var(--text-tertiary);
  line-height: 1;
  padding: 0.5rem 0;
}

.press-logos-section {
  padding-top: 0;
  padding-bottom: 0;
}

.press-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.press-logos-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.press-logo-item {
  display: inline-flex;
  align-items: center;
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.press-logo-item:hover {
  opacity: 0.4;
}

.press-logo-item img {
  height: 22px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    will-change: auto;
    contain: none;
  }
}

@media print {
  .btn,
  .cta-section,
  .mobile-nav,
  .skip-link,
  footer,
  nav {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
    background: 0 0;
  }

  .hero::before {
    display: none;
  }

  .card,
  .culture-item,
  .investor-card,
  .metric-item,
  .milestone,
  .why-item {
    break-inside: avoid;
    border-color: #ccc;
    background: #fff;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }

  a[href^='#']::after,
  a[href^='javascript']::after {
    content: '';
  }
}

.dk-green {
  color: var(--accent-darker);
}

.dk-white {
  color: var(--text-primary);
}

.dk-hero {
  padding: 140px 0 80px;
  background: var(--bg-primary);
  position: relative;
  max-width: none;
}

.dk-hero-canvas {
  overflow: hidden;
}

.dk-hero-canvas::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 1;
  pointer-events: none;
}

.dk-hero-canvas canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dk-hero-canvas .dk-hero-inner {
  position: relative;
  z-index: 2;
}

.glitch-wrapper {
  display: inline-block;
  position: relative;
}

.glitch-sizer {
  visibility: hidden;
}

#glitch-word {
  position: absolute;
  left: 0;
  top: 0;
  display: inline;
  font-family: inherit;
  letter-spacing: inherit;
}

.dk-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.dk-hero-text {
  max-width: 720px;
}

.dk-hero h1 {
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0;
}

.dk-hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.dk-section {
  background: var(--bg-primary);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--bg-tertiary);
  max-width: none;
}

.dk-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--space-2xl);
}

.dk-block {
  margin-bottom: var(--space-xl);
}

.dk-block-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.dk-block-text:last-child {
  margin-bottom: 0;
}

.founder-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.founder-photo {
  border-radius: 8px;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.founder-name {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--accent-darker);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.founder-bio {
  min-width: 0;
}

.dk-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2xl);
  margin-top: 0;
}

/* Product showcase - weighted two-up layout */
.product-showcase {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}

.product-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-dark-card);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-showcase-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-showcase-img {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.product-showcase-desktop .product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  min-height: 300px;
}

.product-showcase-mobile .product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 1.5rem 2rem;
  min-height: 300px;
}

.product-showcase-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgb(0 0 0 / 85%);
  backdrop-filter: blur(8px);
  gap: 1rem;
}

.product-showcase-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.product-showcase-meta strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-showcase-meta span {
  color: rgb(255 255 255 / 50%);
  font-size: 0.8rem;
  white-space: nowrap;
}

.product-showcase-meta a {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.product-showcase-meta a:hover {
  text-decoration: underline;
}

.product-showcase-links {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.product-showcase-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgb(255 255 255 / 50%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

/* Accent info bar on both product cards */
.product-showcase-info {
  background: var(--accent-dark);
}

.product-showcase-meta span {
  color: rgb(255 255 255 / 70%);
}

.product-showcase-meta a {
  color: #fff;
}

.product-showcase-links a {
  color: rgb(255 255 255 / 70%);
  border-color: rgb(255 255 255 / 30%);
}

.product-showcase-links a:hover {
  color: #fff;
  border-color: #fff;
  background: rgb(255 255 255 / 15%);
}

@media (width <= 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase-mobile .product-showcase-img img {
    min-height: 250px;
    padding: 1rem;
  }
}

@media (width <= 480px) {
  .product-showcase-meta span {
    display: none;
  }
}

.dk-license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: var(--space-lg);
}

.dk-license-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dk-license-card h3 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-primary);
}

.dk-license-flag {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.dk-license-type {
  font-size: 0.78rem;
  color: var(--accent-darker);
  font-weight: 600;
}

.dk-license-scope {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.dk-license-pending {
  border-style: dashed;
  opacity: 0.7;
}

.dk-license-pending .dk-license-type {
  color: var(--text-secondary);
}

.license-row {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.license-row-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.license-flag {
  font-size: 2.5rem;
  line-height: 1;
}

.license-row-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.license-regulator {
  font-size: 0.9rem;
  color: var(--accent-darker);
  font-weight: 600;
}

.license-row-body {
  display: grid;
  gap: 0.75rem;
}

.license-detail {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.95rem;
}

.license-detail-label {
  flex-shrink: 0;
  width: 130px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}

.license-mono {
  font-family: monospace;
  font-size: 0.9rem;
}

.license-row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.license-entities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.license-entity {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.license-entity h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.license-entity p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.license-entity p:last-child {
  margin-bottom: 0;
}

@media (width <= 768px) {
  .license-row {
    padding: 1.25rem;
  }

  .license-detail {
    flex-direction: column;
    gap: 0.15rem;
  }

  .license-detail-label {
    width: auto;
  }

  .license-row-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.instagram-embed {
  text-align: center;
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.instagram-header a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
}

.instagram-header a:hover {
  color: var(--accent-darker);
}

.instagram-native-embed {
  margin-bottom: 1.5rem;
}

.instagram-native-embed iframe {
  border-radius: 12px !important;
}

.instagram-follow {
  display: inline-block;
}

.btn-outline {
  background: 0 0;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-darker);
}

@media (width <= 768px) {
  .dk-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .dk-inner {
    padding-inline: var(--space-lg);
  }

  .founder-section {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .founder-photo {
    max-width: 240px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .press-kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 480px) {
  .dk-hero {
    padding: 120px 0 40px;
  }

  .dk-section {
    padding: var(--space-2xl) 0;
  }

  .press-kit-grid {
    grid-template-columns: 1fr;
  }
}

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

.section-note {
  color: var(--text-tertiary);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.btn-link {
  color: var(--accent-darker);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
}

.btn-link:hover {
  text-decoration: underline;
}

a.accent-link {
  color: var(--accent-darker);
}

.cta-secondary {
  margin-top: 1rem;
}

.btn-inline {
  margin-top: 1rem;
  display: inline-block;
}

.hero-404 {
  min-height: 60vh;
}

.hero-404 .hero-subtitle {
  margin-bottom: 2rem;
}

.error-links {
  margin-bottom: 2rem;
}

.error-suggestions {
  margin-top: 2rem;
}

.error-suggestions p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.error-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.error-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.error-nav a:hover {
  text-decoration: underline;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.cta-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.cta-card .btn {
  margin-top: auto;
}

.cta-card h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.ashby-embed {
  max-width: 900px;
  margin: 0 auto;
}

.ashby-empty,
.ashby-loading {
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem 0;
}

/* Skeleton loading state */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.ashby-skeleton-dept {
  margin-bottom: 2rem;
}

.ashby-skeleton-dept:last-child {
  margin-bottom: 0;
}

.skeleton-bar {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 25%,
    var(--border) 50%,
    var(--bg-tertiary) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 6px;
}

.skeleton-dept-bar {
  width: 120px;
  height: 14px;
  margin-bottom: 1rem;
}

.ashby-skeleton-role {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.skeleton-title-bar {
  flex: 1;
  height: 18px;
  max-width: 280px;
}

.skeleton-loc-bar {
  width: 80px;
  height: 14px;
}

.ashby-fallback {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-secondary);
}

.ashby-dept {
  margin-bottom: 2rem;
}

.ashby-dept-title {
  color: var(--accent-darker);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.ashby-roles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ashby-role {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s;
}

.ashby-role:hover {
  background: var(--bg-tertiary);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 6px;
}

.ashby-role-title {
  flex: 1;
  font-weight: 600;
}

.ashby-role-loc {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.ashby-role-arrow {
  color: var(--accent-darker);
  font-size: 1.1rem;
}

.press-kit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.press-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.press-kit-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-secondary);
  border-radius: 0 0 12px 12px;
  padding: 1.5rem;
}

.press-kit-card h3 {
  color: var(--accent-darker);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.press-kit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.press-kit-card strong {
  color: var(--text-primary);
}

/* Coverage list (linked article list) */
.coverage-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.coverage-list li {
  border-bottom: 1px solid var(--border);
}

.coverage-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  gap: 1.5rem;
  transition:
    padding 0.15s,
    margin 0.15s;
}

.coverage-list a:hover {
  background: var(--bg-secondary);
  margin: 0 -0.75rem;
  padding: 1rem 0.75rem;
  border-radius: 6px;
}

.coverage-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.coverage-source {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.coverage-list a:hover .coverage-source {
  color: var(--accent-darker);
}

/* Accolades */
.accolades-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.accolade-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

a.accolade-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.accolade-rank {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-darker);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.accolade-list-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.accolade-org {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

@media (width <= 600px) {
  .coverage-list a {
    flex-direction: column;
    gap: 0.25rem;
  }

  .accolades-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.value-card {
  background: var(--bg-card, #fff);
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 2rem 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.value-card .value-section-lead {
  margin-bottom: 0.75rem;
}

.value-card-img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.value-card-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

@media (width <= 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card-img {
    width: 80px;
    height: 80px;
  }
}

.value-section-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-darker);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.value-section-title {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.value-section-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 600px;
}

.should-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.should-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.should-yes {
  border-color: rgb(12 205 147 / 25%);
}

.should-no {
  border-color: rgb(224 80 80 / 25%);
}

.should-card h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.should-card ul {
  list-style: none;
  padding: 0;
}

.should-card li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
}

.should-yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-darker);
  font-weight: 700;
  font-size: 1rem;
}

.should-no li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #d03030;
  font-weight: 700;
  font-size: 1rem;
}

@media (width <= 600px) {
  .value-section-title {
    font-size: 1.4rem;
  }
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.person-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.person-card .social-links {
  margin-top: auto;
  padding-top: 0.75rem;
}

.person-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  margin: 0 auto 1rem;
  display: block;
}

.person-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.person-role {
  color: var(--accent-darker);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.global-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}

.global-stat {
  min-width: 120px;
}

.global-stat-num {
  color: var(--accent-dark);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.global-stat-lbl {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.office-detail {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.office-detail p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.photo-carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 0 0 / 75%);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--accent);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.spotlight-card {
  max-width: 700px;
  margin: 2rem auto;
  display: flex;
  gap: 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.spotlight-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-darker);
}

.spotlight-content h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.spotlight-qa p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.spotlight-qa strong {
  color: var(--text-primary);
}

.office-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.office-card-map {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin: -1.5rem -1.5rem 1.25rem;
}

.office-card-map iframe {
  display: block;
}

.office-location-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.office-location-card h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.office-location-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.benefits-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-category {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.75rem;
}

.benefit-category-title {
  color: var(--accent-darker);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.benefit-category-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.teams-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.team-card-v2 {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.75rem;
}

.team-card-v2 h3 {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-card-v2 p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.team-card-tags span {
  background: var(--accent-dim);
  color: var(--accent-darker);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.team-card-photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/10;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-grid-food {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 1.5rem auto 2rem;
}

.photo-grid-food-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.photo-grid-food-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-grid-food-item:hover img {
  transform: scale(1.03);
}

.play-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 1.5rem auto 0;
}

.play-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.play-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.play-photo:hover img {
  transform: scale(1.03);
}

.founder-quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
}

@media (width <= 768px) {
  .photo-grid-food {
    grid-template-columns: 1fr;
  }

  .play-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 600px) {
  .spotlight-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .teams-grid-v2 {
    grid-template-columns: 1fr;
  }

  .benefits-categories {
    grid-template-columns: 1fr;
  }

  .play-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Annual Reports Grid */
.annual-reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.annual-report-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.annual-report-card:hover {
  transform: translateY(-4px);
}

.annual-report-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.annual-report-card:hover img {
  box-shadow: var(--shadow-md);
}

.annual-report-year {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── IR Sub-pages ────────────────────────────── */

/* Quick-link cards (cross-links on main investors page) */
.ir-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ir-link-card {
  display: block;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.ir-link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.ir-link-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ir-link-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ir-link-card .ir-link-arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-darker);
}

/* Governance: principle cards */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.governance-card {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 1.5rem 0;
}

.governance-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent-secondary);
}

.governance-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Board member cards (reuses investor-rep-card base but with wider layout) */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.board-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.board-card .social-links {
  margin-top: auto;
  padding-top: 0.75rem;
}

.board-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  align-self: center;
}

.board-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.board-card .board-firm {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.board-card p.board-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
}

/* FAQ accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--accent-darker);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* News feed (investor-focused press releases) */
.news-feed-section {
  padding-top: 1rem;
}

.news-feed {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 1.5rem;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item .news-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding-top: 0.15rem;
}

.news-item .news-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.news-item .card-tag {
  margin-bottom: 0;
  font-size: 0.65rem;
}

.news-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.news-item h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

.news-item h3 a:hover {
  color: var(--accent-darker);
}

.news-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  grid-column: 2;
}

@media (width <= 600px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .news-item .news-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .news-item p {
    grid-column: 1;
  }
}

/* Section divider (used between governance sections) */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 200px;
  margin: 3rem auto;
}

/* Responsible betting callout */
.rg-callout {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.rg-callout h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rg-callout p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.rg-callout p:last-child {
  margin-bottom: 0;
}

/* ── Design Uplift ──────────────────────────────── */

/* Tighter tracking on display type */
.section-title {
  letter-spacing: -0.5px;
}

.hero h1 {
  letter-spacing: -1.5px;
}

/* Enhanced standard hero - full-bleed background */
.hero {
  max-width: none;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgb(12 205 147 / 7%) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgb(12 205 147 / 5%) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 15% 80%,
      rgb(12 205 147 / 5%) 0%,
      transparent 40%
    ),
    linear-gradient(to right, rgb(12 205 147 / 3%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(12 205 147 / 3%) 1px, transparent 1px),
    linear-gradient(
      135deg,
      var(--bg-primary) 0,
      var(--bg-secondary) 50%,
      var(--bg-primary) 100%
    );
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    55px 55px,
    55px 55px,
    100% 100%;
  min-height: min(40vh, 360px);
  padding-bottom: 60px;
}

/* Why-item: accent left border for visual variety */
.why-item {
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

/* Person cards: accent top, larger photos */
.person-card {
  border: none;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 12px 12px;
}

.person-photo {
  width: 96px;
  height: 96px;
  border: 3px solid var(--accent);
}

/* Team cards: static (not clickable) */
.team-card-v2 {
  cursor: default;
}

/* Metric items: bottom accent shelf */
.metric-item {
  border: none;
  border-bottom: 3px solid var(--accent);
  border-radius: 0;
  background: transparent;
}

/* Full-bleed tinted section - carries the hero's grid motif, fainter */
.section-tinted {
  background:
    linear-gradient(to right, rgb(12 205 147 / 3%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(12 205 147 / 3%) 1px, transparent 1px),
    var(--bg-secondary);
  background-size:
    55px 55px,
    55px 55px,
    100% 100%;
  max-width: none;
  padding: 3rem max(2rem, calc(50vw - 580px));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Full-bleed dark section - grid motif + green glow from the top edge */
.section-dark {
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 0,
      rgb(12 205 147 / 7%) 0,
      transparent 70%
    ),
    linear-gradient(to right, rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / 3%) 1px, transparent 1px),
    var(--bg-dark);
  background-size:
    100% 100%,
    55px 55px,
    55px 55px,
    100% 100%;
  max-width: none;
  padding: 4rem max(2rem, calc(50vw - 580px));
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-subtitle {
  color: rgb(255 255 255 / 60%);
}

.section-dark .section-note {
  color: rgb(255 255 255 / 40%);
}

.section-dark .why-item {
  background: var(--bg-dark-2);
  border-left-color: var(--accent);
}

.section-dark .why-item h3 {
  color: #fff;
}

.section-dark .why-item p {
  color: rgb(255 255 255 / 65%);
}

.section-dark .tech-arch-layer {
  background: var(--bg-dark-2);
  border-color: var(--border-dark);
}

.section-dark .tech-arch-item {
  background: var(--bg-dark);
  border-color: var(--border-dark);
  color: rgb(255 255 255 / 70%);
}

.section-dark .tech-arch-item.tech-arch-core {
  border-color: var(--accent);
  color: var(--accent);
  background: rgb(12 205 147 / 10%);
}

.section-dark .tech-arch-label {
  color: var(--accent);
}

.section-dark .tech-arch-connector {
  color: rgb(255 255 255 / 30%);
}

/* Dark CTA sections */
.cta-section {
  background:
    linear-gradient(to right, rgb(12 205 147 / 5%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(12 205 147 / 5%) 1px, transparent 1px),
    linear-gradient(135deg, var(--bg-dark) 0%, #1a2e24 100%);
  background-size:
    55px 55px,
    55px 55px,
    100% 100%;
  color: #fff;
  border: none;
}

.cta-section h2,
.cta-section h3 {
  color: #fff;
}

.cta-section p {
  color: rgb(255 255 255 / 70%);
}

.cta-section .btn {
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
}

.cta-section .btn:hover {
  background: #fff;
  color: var(--bg-dark);
}

.cta-section .cta-email {
  color: var(--accent);
}

.cta-section a.accent-link {
  color: var(--accent);
}

.cta-section-light {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section-light h2,
.cta-section-light h3 {
  color: var(--text-primary);
}

.cta-section-light p {
  color: var(--text-secondary);
}

.cta-section-light .btn {
  background: var(--accent-dark);
  color: var(--text-on-accent);
}

.cta-section-light .btn:hover {
  background: var(--accent-darker);
}

/* Stagger animation delays */
.why-smarkets > .fade-in.visible:nth-child(2),
.investor-grid > .fade-in.visible:nth-child(2),
.teams-grid-v2 > .fade-in.visible:nth-child(2),
.values-grid > .fade-in.visible:nth-child(2) {
  animation-delay: 0.08s;
}

.why-smarkets > .fade-in.visible:nth-child(3),
.investor-grid > .fade-in.visible:nth-child(3),
.teams-grid-v2 > .fade-in.visible:nth-child(3),
.values-grid > .fade-in.visible:nth-child(3) {
  animation-delay: 0.15s;
}

.why-smarkets > .fade-in.visible:nth-child(4),
.investor-grid > .fade-in.visible:nth-child(4),
.teams-grid-v2 > .fade-in.visible:nth-child(4),
.values-grid > .fade-in.visible:nth-child(4) {
  animation-delay: 0.22s;
}

.why-smarkets > .fade-in.visible:nth-child(5),
.investor-grid > .fade-in.visible:nth-child(5),
.teams-grid-v2 > .fade-in.visible:nth-child(5),
.values-grid > .fade-in.visible:nth-child(5) {
  animation-delay: 0.28s;
}

.why-smarkets > .fade-in.visible:nth-child(6),
.investor-grid > .fade-in.visible:nth-child(6),
.teams-grid-v2 > .fade-in.visible:nth-child(6) {
  animation-delay: 0.34s;
}

.why-smarkets > .fade-in.visible:nth-child(7),
.teams-grid-v2 > .fade-in.visible:nth-child(7) {
  animation-delay: 0.4s;
}

.teams-grid-v2 > .fade-in.visible:nth-child(8) {
  animation-delay: 0.46s;
}

.metrics-grid > .fade-in.visible:nth-child(2) {
  animation-delay: 0.06s;
}

.metrics-grid > .fade-in.visible:nth-child(3) {
  animation-delay: 0.12s;
}

.metrics-grid > .fade-in.visible:nth-child(4) {
  animation-delay: 0.18s;
}

.metrics-grid > .fade-in.visible:nth-child(5) {
  animation-delay: 0.24s;
}

/* Reduced motion: remove stagger delays */
@media (prefers-reduced-motion: reduce) {
  .why-smarkets > .fade-in.visible,
  .metrics-grid > .fade-in.visible,
  .investor-grid > .fade-in.visible,
  .teams-grid-v2 > .fade-in.visible,
  .values-grid > .fade-in.visible {
    animation-delay: 0s !important;
  }
}

/* ── Spacing rhythm ───────────────────────────── */

/* Tighter spacing between related sections (e.g. within a section group) */
section + section {
  padding-top: 2rem;
}

/* Restore breathing room after dividers and full-bleed sections */
hr.section-divider + section,
.section-tinted + section,
.section-dark + section {
  padding-top: 4rem;
}

/* Hero → first content section gets extra space */
.hero + section {
  padding-top: 3.5rem;
}

/* Compact hero variant gets tighter bottom padding */
.hero.hero-compact {
  padding-bottom: 3rem;
}

/* ── Secondary accent usage ───────────────────── */
.license-regulator {
  color: var(--accent-secondary);
}

.governance-card h3 {
  color: var(--accent-secondary);
}

.value-section-num {
  color: var(--accent-secondary);
}

.section-dark .governance-card {
  border-bottom-color: var(--border-dark);
}

.section-dark .governance-card h3 {
  color: var(--accent-secondary-light);
}

.section-dark .governance-card p {
  color: rgb(255 255 255 / 65%);
}

/* ── Deferred embeds ──────────────────────────── */
.deferred-embed {
  position: relative;
  width: 100%;
  cursor: pointer;
  background: var(--bg-dark-card);
  border-radius: 12px;
  overflow: hidden;
}

.deferred-embed[data-aspect='16/9'] {
  aspect-ratio: 16 / 9;
}

.deferred-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  gap: 0.5rem;
}

.deferred-embed-placeholder svg {
  opacity: 0.7;
}

.deferred-embed-placeholder span {
  font-size: 0.85rem;
  opacity: 0.5;
}

.deferred-embed.loaded .deferred-embed-placeholder {
  display: none;
}

.deferred-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Deferred embed loading pulse */
@keyframes embed-pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }
}

.deferred-embed-placeholder span {
  animation: embed-pulse 2s ease-in-out infinite;
}

/* Map card deferred state */
.office-card-map .deferred-embed {
  border-radius: 8px 8px 0 0;
  height: 200px;
}

/* Mobile adjustments for design uplift */
@media (width <= 768px) {
  .section-dark {
    padding: 3rem max(1.5rem, calc(50vw - 580px));
  }

  .section-tinted {
    padding: 3rem max(1.5rem, calc(50vw - 580px));
  }

  .global-stat-num {
    font-size: 2.5rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  section + section {
    padding-top: 1.5rem;
  }

  hr.section-divider + section,
  .section-tinted + section,
  .section-dark + section {
    padding-top: 3rem;
  }
}

@media (width <= 480px) {
  .global-stat-num {
    font-size: 2rem;
  }

  .metric-value {
    font-size: 1.8rem;
  }
}
