:root {
  --bg: #070a0f;
  --bg-elevated: #0f1419;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf4;
  --text-muted: #8b9aaf;
  --accent: #2dd4bf;
  --accent-dim: #0d9488;
  --accent-glow: rgba(45, 212, 191, 0.35);
  --purple: #a78bfa;
  --radius: 14px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --font-display: "Syne", var(--font);
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 10, 15, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

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

.brand:hover .brand-name {
  color: var(--accent);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.12rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.38rem;
  letter-spacing: -0.06em;
  color: var(--text);
  transition: color 0.2s ease;
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem;
  cursor: pointer;
}

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

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.25rem;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.nav-drawer a {
  color: var(--text);
  font-weight: 500;
}

.nav-drawer[hidden] {
  display: none !important;
}

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

  .nav-toggle {
    display: flex;
  }

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

.hero {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: min(78vh, 720px);
}

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

.hero-bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(167, 139, 250, 0.2), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(105deg, #5eead4, #22d3ee, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-dim), #0f766e);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-ghost:hover {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.06);
}

.hero-visual {
  text-align: right;
  padding: 1rem 0;
}

@media (max-width: 900px) {
  .hero-visual {
    text-align: left;
  }
}

.hero-wordmark {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

@media (max-width: 900px) {
  .hero-wordmark {
    align-items: flex-start;
  }
}

.hero-wordmark-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.25rem, 11vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  background: linear-gradient(108deg, #5eead4 0%, #22d3ee 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-wordmark-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-tagline {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.section {
  padding: 4rem 1.5rem;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent, rgba(15, 20, 25, 0.5) 40%, transparent);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  max-width: 62ch;
  font-size: 1.05rem;
}

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

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(45, 212, 191, 0.25);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.venture-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venture-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.25rem 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  align-items: start;
}

@media (min-width: 560px) {
  .venture-list li {
    grid-template-columns: auto 1fr 2fr;
    grid-template-rows: auto;
    align-items: center;
  }
}

.venture-badge {
  grid-column: 1;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(45, 212, 191, 0.15);
  color: var(--accent);
}

.venture-badge-alt {
  background: rgba(167, 139, 250, 0.15);
  color: var(--purple);
}

.venture-list strong {
  grid-column: 2;
  font-size: 1.05rem;
}

.venture-desc {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 560px) {
  .venture-desc {
    grid-column: 3;
  }
}

.contact-inner {
  text-align: center;
}

.contact .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-note code {
  font-family: var(--mono);
  font-size: 0.85em;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  background: var(--surface);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-company {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
}

.footer-wyse {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--text);
}

.footer-holdings {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-muted);
  margin-left: 0.22em;
}

.footer-pty {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.92em;
  color: var(--text-muted);
  margin-left: 0.3em;
}

.footer-tag {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
}

.footer-legal div {
  display: grid;
  gap: 0.25rem;
}

.footer-legal dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

.legal-page-wrap {
  padding: 3rem 1.5rem 4rem;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.legal-back {
  margin: 0 0 1.5rem;
}

.legal-back a {
  font-weight: 500;
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.legal-page p,
.legal-page ul {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-page strong {
  color: var(--text);
}

.support-page h2:first-of-type {
  margin-top: 1.5rem;
}
