:root {
  --bg: #070909;
  --panel: #111617;
  --panel-2: #171d1e;
  --line: #2c3537;
  --text: #f7f8f5;
  --muted: #aab4b5;
  --gold: #f0bf21;
  --cyan: #17c0ca;
  --green: #2db976;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.portal-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-right: 1px solid var(--line);
  background: #050606;
  padding: 28px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
}

.brand-name {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-size: 0.94rem;
  line-height: 1.02;
}

.brand-name span {
  overflow-wrap: normal;
  word-break: normal;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(240, 191, 33, 0.38);
  border-radius: 8px;
}

.nav-list {
  display: grid;
  gap: 8px;
}

.nav-list a {
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 650;
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--panel-2);
  color: var(--text);
}

.sidebar-card {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.sidebar-card span,
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sidebar-card strong {
  display: block;
  margin-top: 10px;
}

.main-panel {
  padding: clamp(22px, 4vw, 54px);
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 10px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 720;
}

h1 {
  max-width: 1080px;
  font-size: clamp(2.25rem, 4.35vw, 4.55rem);
  line-height: 1;
}

.brand-line {
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.15rem;
}

.ghost-link {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--muted);
  font-weight: 650;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.hero-copy,
.download-panel,
.app-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 430px;
  padding: clamp(26px, 5vw, 54px);
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 192, 202, 0.18), transparent 32%),
    radial-gradient(circle at 18% 90%, rgba(240, 191, 33, 0.16), transparent 28%),
    var(--panel);
}

.hero-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.store-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
}

.button.primary,
.store-link {
  background: var(--cyan);
  color: #041215;
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.download-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
}

.download-panel img {
  width: min(240px, 70%);
  height: auto;
  justify-self: center;
  margin-bottom: 6px;
}

.featured-app-icon,
.app-icon {
  border: 1px solid rgba(240, 191, 33, 0.32);
  border-radius: 22%;
  background: #050606;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.featured-app-icon {
  width: min(210px, 68%) !important;
}

.download-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.download-panel p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "";
  width: 7px;
  height: 7px;
  top: 0.58em;
  border-radius: 999px;
  background: currentColor;
}

.feature-list.compact {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-link.muted {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.section {
  padding: clamp(58px, 7vw, 104px) 0;
}

.section-heading {
  margin-bottom: 22px;
}

.app-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-list {
  display: grid;
  gap: 22px;
}

.industry-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(18px, 3vw, 28px);
}

.industry-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.industry-heading h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
}

.industry-heading .eyebrow {
  margin-bottom: 9px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.app-card {
  min-height: 340px;
  padding: 22px;
}

.app-card h3 {
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.app-icon {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: cover;
}

.app-card p {
  min-height: 92px;
  color: var(--muted);
}

.app-card strong {
  display: block;
  color: #dcf7fa;
  font-size: 0.95rem;
}

.app-card.live {
  border-color: rgba(23, 192, 202, 0.55);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.contact-section h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.contact-section p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.card-links a,
.legal-back {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  color: #dcf7fa;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 20px;
  background: var(--panel);
}

.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
}

.legal-document h1 {
  max-width: 820px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.legal-document h2 {
  margin-top: 30px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.legal-document p {
  color: var(--muted);
}

.legal-document a {
  color: #dcf7fa;
  font-weight: 700;
}

.legal-updated {
  margin: 14px 0 22px;
  color: var(--gold) !important;
  font-size: 0.95rem;
  font-weight: 750;
}

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

  .sidebar {
    position: static;
    height: auto;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid,
  .app-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: grid;
  }

  .nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ghost-link,
  .hero-actions,
  .button,
  .store-link {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.7rem);
  }

}
