:root {
  --bg: #060b14;
  --bg-alt: #0b1220;
  --panel: rgba(14, 25, 45, 0.84);
  --panel-soft: rgba(15, 31, 52, 0.7);
  --line: rgba(137, 164, 199, 0.24);
  --line-strong: rgba(158, 186, 222, 0.4);
  --ink: #eef3ff;
  --muted: #afbdd8;
  --accent: #53c1ff;
  --accent-alt: #4de2cd;
  --up: #33d07a;
  --down: #ff6575;
  --flat: #ffab4d;
  --shadow: 0 22px 64px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 620px at 18% -12%, rgba(53, 139, 255, 0.2), transparent 66%),
    radial-gradient(900px 500px at 88% 2%, rgba(77, 226, 205, 0.15), transparent 58%),
    linear-gradient(180deg, #060b14, #0a1220 42%, #070d16 100%);
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(transparent 97%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(90deg, transparent 97%, rgba(255, 255, 255, 0.03) 100%);
  background-size: 10px 10px, 10px 10px;
}

.site-header,
main,
.site-footer {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.9rem;
  z-index: 10;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 17, 30, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background-image: url("/site/ticker-logo.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(160, 190, 228, 0.32);
  filter: invert(1);
}

.brand-text {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

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

main {
  padding: 2.2rem 0 2.8rem;
}

.section {
  margin-top: 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: center;
  min-height: min(80vh, 740px);
}

.eyebrow {
  margin: 0;
  color: var(--accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

h1 {
  margin-top: 0.56rem;
  font-size: clamp(2.3rem, 5.3vw, 3.7rem);
  line-height: 1.04;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.03rem;
}

.hero-copy p {
  margin-top: 0.95rem;
  color: var(--muted);
  max-width: 61ch;
}

.hero-actions {
  margin-top: 1.2rem;
}

.support-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.56rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.7rem 1.1rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #04111c;
  background: linear-gradient(120deg, var(--accent), #73ffe6);
  box-shadow: 0 10px 28px rgba(76, 174, 255, 0.25);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mac-frame {
  margin: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.desktop-menu-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.36rem 0.68rem;
  border: 1px solid rgba(151, 173, 206, 0.45);
  border-radius: 11px;
  background: #f9fbff;
  color: #12243e;
  font-size: 0.72rem;
  line-height: 1;
  margin-bottom: 0.38rem;
}

.menu-left,
.menu-right {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  white-space: nowrap;
}

.menu-left span:first-child {
  font-weight: 700;
}

.ticker-track,
.wide-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(162, 187, 217, 0.22);
  border-bottom: 1px solid rgba(162, 187, 217, 0.22);
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.95), rgba(12, 22, 40, 0.95));
}

.wide-ticker {
  margin-top: 1rem;
  border-radius: 12px;
}

.ticker-run {
  display: flex;
  width: max-content;
  animation: scroll 72s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  padding: 0.56rem 0.9rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.82rem;
  color: #e6edfc;
  font-family: "IBM Plex Mono", monospace;
}

.ticker-item b {
  font-weight: 500;
}

.headline {
  color: #b5caef;
}

.up {
  color: var(--up);
}

.down {
  color: var(--down);
}

.flat {
  color: var(--flat);
}

.mac-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

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

.lead {
  margin-top: 0.9rem;
}

.value-grid,
.solution-grid,
.benefit-grid,
.feature-grid,
.appstore-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.82rem;
}

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

.value-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 27, 45, 0.6);
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  color: #04111c;
  background: linear-gradient(160deg, #73ffe6, #53c1ff);
  flex: none;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.shot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 19, 35, 0.75);
}

.shot-card img {
  width: 100%;
  display: block;
}

.shot-card figcaption {
  padding: 0.55rem 0.72rem 0.7rem;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 24, 40, 0.72);
  padding: 0.86rem;
}

.card h3 {
  margin-bottom: 0.35rem;
}

.sample-row {
  margin-top: 0.75rem;
  border: 1px solid rgba(158, 186, 222, 0.27);
  border-radius: 10px;
  background: rgba(6, 13, 23, 0.7);
  padding: 0.42rem 0.56rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

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

.panel-dark {
  background:
    radial-gradient(640px 260px at 8% 0%, rgba(78, 140, 255, 0.14), transparent 60%),
    rgba(7, 14, 26, 0.95);
}

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

.feature-item {
  border: 1px solid rgba(162, 190, 227, 0.3);
  border-radius: 14px;
  padding: 0.82rem;
  background: rgba(13, 29, 50, 0.62);
}

.feature-item h3 {
  margin-bottom: 0.32rem;
}

.shot-grid {
  margin-top: 0.94rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.shot {
  margin: 0;
  border: 1px solid rgba(164, 193, 231, 0.32);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 18, 33, 0.8);
}

.shot img {
  width: 100%;
  display: block;
}

.shot figcaption {
  padding: 0.5rem 0.68rem 0.66rem;
  color: #bbcae7;
  font-size: 0.84rem;
}

.panel-soft {
  background: var(--panel-soft);
}

.clean-list {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: #d7e3fa;
}

.chip-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  background: rgba(12, 24, 42, 0.66);
  font-size: 0.88rem;
  color: #dce7fd;
}

.pricing {
  text-align: center;
}

.price-card {
  margin: 1rem auto 0;
  width: min(520px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 31, 54, 0.84), rgba(10, 20, 34, 0.9));
  padding: 1rem;
}

.price-name {
  color: #d6e4ff;
  font-weight: 600;
}

.price {
  margin-top: 0.2rem;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4.6vw, 2.7rem);
  line-height: 1;
  color: #f4f9ff;
}

.price span {
  font-size: 1rem;
  color: var(--accent-alt);
  margin-left: 0.25rem;
}

.price-card .clean-list {
  text-align: left;
  display: inline-block;
}

.price-card .btn {
  margin-top: 0.9rem;
}

.final-cta {
  display: grid;
  gap: 0.9rem;
  padding-bottom: 1.4rem;
}

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

.cta-shot {
  margin: 0;
  border: 1px solid rgba(164, 193, 231, 0.32);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 18, 33, 0.8);
}

.cta-shot img {
  width: 100%;
  display: block;
}

.full-copy {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 24, 42, 0.62);
  padding: 0.75rem 0.85rem;
}

.full-copy summary {
  cursor: pointer;
  font-weight: 600;
  color: #deebff;
}

.full-copy p {
  margin-top: 0.68rem;
}

.site-footer {
  padding: 0.4rem 0 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

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

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .footer-right {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer .footer-right span {
  color: var(--muted);
}

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

  .hero-visual .mac-frame {
    width: 80%;
  }

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

  .value-grid,
  .benefit-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .menu-left {
    overflow: hidden;
    mask-image: linear-gradient(90deg, #000 75%, transparent 100%);
  }

  .menu-right {
    gap: 0.4rem;
  }

  .value-grid,
  .solution-grid,
  .benefit-grid,
  .feature-grid,
  .shot-grid,
  .appstore-grid {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 1.2rem;
  }

  .panel {
    padding: 1rem;
  }

  .hero-visual .mac-frame {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
