:root {
  color-scheme: light;
  --ink: #14171b;
  --muted: #626a74;
  --soft: #f4f6f8;
  --line: #dfe4ea;
  --white: #ffffff;
  --night: #101418;
  --red: #f0444e;
  --blue: #1d72d8;
  --green: #2ca653;
  --gold: #e8aa17;
  --shadow: 0 24px 70px rgba(16, 20, 24, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--white);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(680px, calc(100svh - 52px));
  padding: 128px 0 66px;
  background:
    linear-gradient(118deg, rgba(240, 68, 78, 0.23), rgba(16, 20, 24, 0) 34%),
    linear-gradient(290deg, rgba(29, 114, 216, 0.22), rgba(16, 20, 24, 0) 41%),
    #101418;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 82%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(20px, calc((100% - 1120px) / 2));
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  right: max(-60px, calc((100vw - 1120px) / 2 - 160px));
  top: 70px;
  width: min(610px, 48vw);
  opacity: 0.2;
  filter: saturate(1.1) contrast(1.08);
}

.phone {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #0a0d10;
  box-shadow: var(--shadow);
  padding: 12px;
}

.phone-primary {
  right: max(46px, calc((100vw - 1120px) / 2 + 54px));
  bottom: 36px;
  width: min(260px, 22vw);
  aspect-ratio: 9 / 18.5;
  transform: rotate(3deg);
}

.phone-secondary {
  right: max(286px, calc((100vw - 1120px) / 2 + 286px));
  bottom: 28px;
  width: min(196px, 17vw);
  aspect-ratio: 9 / 18.5;
  transform: rotate(-7deg);
  opacity: 0.82;
}

.phone-top {
  width: 72px;
  height: 5px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.app-screen {
  height: calc(100% - 15px);
  overflow: hidden;
  border-radius: 24px;
  background: #f7f9fb;
  color: var(--ink);
  padding: 18px;
}

.status-line,
.app-title-row,
.mini-feed {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.status-line span,
.mini-feed span,
.source-row {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #d8dee6;
}

.status-line span:first-child {
  width: 44px;
}

.status-line span:last-child {
  width: 28px;
}

.app-title-row {
  align-items: center;
  margin: 24px 0 14px;
}

.app-title-row strong {
  font-size: 18px;
}

.app-title-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.headline-card {
  margin-top: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #e7ebef;
}

.headline-card span,
.source-pill {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
}

.headline-card.red span {
  background: var(--red);
}

.headline-card.blue span,
.source-pill.blue {
  background: var(--blue);
}

.source-pill.green {
  background: var(--green);
}

.headline-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.headline-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-feed {
  margin-top: 18px;
}

.mini-feed span:nth-child(1) {
  width: 34%;
  background: rgba(240, 68, 78, 0.18);
}

.mini-feed span:nth-child(2) {
  width: 28%;
  background: rgba(29, 114, 216, 0.2);
}

.mini-feed span:nth-child(3) {
  width: 22%;
  background: rgba(44, 166, 83, 0.2);
}

.app-screen.compact {
  padding: 16px;
}

.source-row {
  width: 100%;
  height: 42px;
  margin: 10px 0;
  border-radius: 8px;
  background: #e9edf2;
}

.source-row.short {
  width: 72%;
}

.eyebrow {
  margin: 0 0 18px;
  color: #9be3ae;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button,
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
}

.button {
  padding: 0 20px;
}

.button.primary {
  background: var(--white);
  color: var(--night);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.store-row {
  margin-top: 18px;
}

.store-badge {
  flex-direction: column;
  align-items: flex-start;
  min-width: 156px;
  min-height: 58px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.store-badge span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
}

.store-badge strong {
  font-size: 18px;
}

.signal-strip {
  background: #f4f6f8;
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.signal-grid div {
  min-height: 118px;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.signal-grid div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  font-size: 28px;
  line-height: 1;
}

.signal-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.section-heading p,
.preview-copy p,
.publisher-layout p,
.contact-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.feature-card {
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-mark {
  display: block;
  width: 38px;
  height: 8px;
  margin-bottom: 38px;
  border-radius: 999px;
}

.accent-red .feature-mark {
  background: var(--red);
}

.accent-blue .feature-mark {
  background: var(--blue);
}

.accent-green .feature-mark {
  background: var(--green);
}

.accent-gold .feature-mark {
  background: var(--gold);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.preview-section {
  background: #101418;
  color: var(--white);
}

.preview-layout,
.publisher-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.preview-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.inline-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.inline-stats span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-preview {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #f7f9fb;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid #e0e5ea;
}

.dashboard-nav span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dashboard-nav span:nth-child(1) {
  background: var(--red);
}

.dashboard-nav span:nth-child(2) {
  background: var(--gold);
}

.dashboard-nav span:nth-child(3) {
  background: var(--green);
}

.dashboard-main {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  padding: 24px;
}

.daily-panel,
.news-list div {
  border-radius: 8px;
  border: 1px solid #e0e5ea;
  background: var(--white);
}

.daily-panel {
  min-height: 318px;
  padding: 24px;
  color: var(--ink);
}

.daily-panel span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(44, 166, 83, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.daily-panel strong {
  display: block;
  margin-top: 78px;
  font-size: 34px;
  line-height: 1.06;
}

.daily-panel p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-list div {
  min-height: 96px;
  background:
    linear-gradient(90deg, rgba(29, 114, 216, 0.12), transparent 34%),
    var(--white);
}

.news-list div:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(240, 68, 78, 0.12), transparent 34%),
    var(--white);
}

.news-list div:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(44, 166, 83, 0.12), transparent 34%),
    var(--white);
}

.publisher-section {
  background: var(--soft);
}

.publisher-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel a {
  display: block;
  margin: 14px 0;
  color: var(--blue);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 34px 0;
  background: var(--night);
  color: var(--white);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.7);
}

.legal-shell {
  min-height: 100svh;
  background: var(--soft);
}

.legal-header {
  padding: 24px 0;
  background: var(--night);
  color: var(--white);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-header a {
  font-weight: 800;
}

.legal-doc {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.legal-doc article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-doc h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}

.legal-doc h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-doc p,
.legal-doc li {
  color: #343b44;
  line-height: 1.75;
}

.legal-doc .content {
  margin-top: 24px;
  color: #343b44;
  line-height: 1.75;
  white-space: pre-wrap;
}

.legal-doc .status {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.legal-doc .updated {
  color: var(--muted);
  font-weight: 800;
}

.legal-doc ul {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 120px;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-logo {
    width: 520px;
    right: -180px;
    top: 132px;
  }

  .phone-primary,
  .phone-secondary {
    opacity: 0.26;
  }

  .phone-primary {
    right: -36px;
    width: 264px;
  }

  .phone-secondary {
    display: none;
  }

  .signal-grid,
  .feature-grid,
  .preview-layout,
  .publisher-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-layout,
  .publisher-layout {
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .container,
  .site-header,
  .legal-doc {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding-top: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 102px 0 54px;
  }

  .hero-content {
    margin-left: auto;
  }

  .hero-logo {
    top: 104px;
    right: -170px;
    width: 380px;
    opacity: 0.16;
  }

  .phone {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.58;
  }

  .button {
    width: 100%;
  }

  .store-badge {
    flex: 1 1 138px;
  }

  .signal-grid,
  .feature-grid,
  .preview-layout,
  .publisher-layout,
  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .signal-grid div {
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
  }

  .feature-card {
    min-height: 210px;
  }

  .dashboard-preview {
    min-height: auto;
  }

  .daily-panel {
    min-height: 260px;
  }

  .daily-panel strong {
    margin-top: 54px;
    font-size: 30px;
  }

  .footer-layout,
  .site-footer nav,
  .legal-header .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    gap: 12px;
  }

  .legal-doc article {
    padding: 24px;
  }
}
