:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6b7a;
  --soft: #f6f8fb;
  --line: #d9e1ea;
  --panel: #ffffff;
  --teal: #16a394;
  --blue: #256fd4;
  --green: #2f9d62;
  --gold: #d99a20;
  --shadow: 0 22px 70px rgba(34, 48, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(217, 225, 234, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 15px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(28px, 5vw, 56px);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 760;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 740;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  color: #ffffff;
  background: #17202a;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: min(970px, 62vw);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  transform: translateY(-18px);
}

.trust-strip div {
  min-height: 116px;
  padding: 24px;
  background: #ffffff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 850px;
}

.section-heading p:last-child {
  max-width: 670px;
  margin: 0;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(31, 45, 61, 0.06);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
}

.accent-teal .product-icon {
  background: var(--teal);
}

.accent-blue .product-icon {
  background: var(--blue);
}

.accent-green .product-icon {
  background: var(--green);
}

.product-card p {
  margin: 14px 0 28px;
}

.product-card a {
  align-self: end;
  color: var(--blue);
  font-weight: 700;
}

.spectrum-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid var(--line);
}

.download-product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(31, 45, 61, 0.08);
}

.download-product + .download-product {
  margin-top: 22px;
}

.faice-product {
  border-color: rgba(220, 44, 206, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.96)),
    radial-gradient(circle at 88% 12%, rgba(220, 44, 206, 0.12), transparent 34%);
}

.money-product {
  border-color: rgba(22, 128, 116, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 253, 251, 0.97)),
    radial-gradient(circle at 88% 12%, rgba(22, 163, 148, 0.13), transparent 34%);
}

.hype-product {
  border-color: rgba(37, 111, 212, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.97)),
    radial-gradient(circle at 88% 12%, rgba(37, 111, 212, 0.12), transparent 34%);
}

.download-copy {
  min-width: 0;
}

.release-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(37, 111, 212, 0.22);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(37, 111, 212, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.download-copy h3 {
  margin-top: 22px;
  font-size: clamp(28px, 3vw, 42px);
}

.download-copy p {
  margin: 18px 0 0;
  font-size: 17px;
}

.release-note {
  max-width: 680px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 154, 32, 0.26);
  border-radius: 8px;
  background: rgba(217, 154, 32, 0.08);
  color: #6c521d;
}

.use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.use-list span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.faice-shot {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e92bd7;
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 24px 64px rgba(134, 20, 126, 0.2);
}

.faice-shot img {
  width: 100%;
  aspect-ratio: 1306 / 913;
  object-fit: cover;
  object-position: center;
}

.money-gallery {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.money-gallery img {
  width: 100%;
  border: 1px solid rgba(22, 128, 116, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(22, 52, 44, 0.11);
}

.money-main-shot {
  aspect-ratio: 1266 / 932;
  object-fit: cover;
  object-position: left top;
}

.money-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.money-thumbs img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.hype-mockup {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 111, 212, 0.25);
  border-radius: 8px;
  background: #f6f8fb;
  box-shadow: 0 22px 58px rgba(31, 57, 96, 0.14);
}

.hype-titlebar {
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid #dce3ec;
  background: #f7f8fa;
}

.hype-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hype-dot.red {
  background: #ff6159;
}

.hype-dot.yellow {
  background: #ffbd2e;
}

.hype-dot.green {
  background: #28c840;
}

.hype-titlebar div {
  min-width: 0;
  margin-left: 10px;
}

.hype-titlebar small,
.hype-titlebar strong {
  display: block;
}

.hype-titlebar small {
  color: #667386;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hype-titlebar strong {
  margin-top: 2px;
  color: #1f252d;
  font-size: 20px;
  line-height: 1;
}

.hype-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #d8dee7;
  border-radius: 7px;
  color: #3b4654;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.hype-body {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  min-height: 390px;
}

.hype-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 14px;
  border-right: 1px solid #dce3ec;
  background: #f2f4f7;
}

.hype-sidebar strong {
  color: #1f252d;
  font-size: 14px;
}

.hype-sidebar span {
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #d9dfe7;
  border-radius: 7px;
  color: #7a8796;
  background: #ffffff;
  font-size: 12px;
}

.hype-main {
  min-width: 0;
  background: #fbfcfe;
}

.hype-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 15px 16px 12px;
  border-bottom: 1px solid #dce3ec;
}

.hype-tabs span {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid #d9dfe7;
  border-radius: 7px;
  color: #333b45;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.hype-tabs .active {
  border-color: rgba(37, 111, 212, 0.35);
  box-shadow: 0 0 0 2px rgba(37, 111, 212, 0.12);
}

.hype-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #dce3ec;
}

.hype-metrics span {
  min-height: 60px;
  padding: 12px 16px;
  border-right: 1px solid #dce3ec;
  color: #6d7888;
  font-size: 12px;
}

.hype-metrics span:last-child {
  border-right: 0;
}

.hype-metrics strong {
  display: block;
  color: #1f252d;
  font-size: 24px;
  line-height: 1;
}

.hype-main section {
  padding: 20px 18px;
}

.hype-main h4 {
  margin: 0;
  color: #1f252d;
  font-size: 17px;
}

.hype-main p {
  margin: 6px 0 14px;
  font-size: 13px;
}

.hype-empty {
  display: grid;
  place-items: center;
  min-height: 122px;
  border: 1px dashed #cfd6df;
  border-radius: 8px;
  color: #697687;
  background: #f7f9fc;
  font-size: 13px;
}

.spectrum-mockup {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #9a5eb4;
  border-radius: 8px;
  background: #eeeeee;
  box-shadow: 0 20px 58px rgba(73, 29, 93, 0.16);
}

.mock-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  height: 31px;
  padding: 0 10px;
  color: #ffffff;
  background: #7d008d;
  font-size: 13px;
}

.mock-app-icon,
.mock-logo {
  display: inline-block;
  border-radius: 3px;
  background:
    linear-gradient(180deg, #f54a55 0 25%, #ffd434 25% 50%, #30bd6a 50% 75%, #2e8de5 75%);
}

.mock-app-icon {
  width: 14px;
  height: 14px;
}

.mock-window-actions {
  width: 64px;
  height: 10px;
  background: linear-gradient(90deg, transparent 0 28px, #ffffff 28px 38px, transparent 38px 48px, #ffffff 48px 58px, transparent 58px);
  opacity: 0.92;
}

.mock-body {
  padding: 22px 20px 18px;
}

.mock-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.mock-logo {
  width: 48px;
  height: 34px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.72);
}

.mock-heading strong,
.mock-heading small {
  display: block;
}

.mock-heading strong {
  font-size: 19px;
}

.mock-heading small {
  margin-top: 5px;
  overflow: hidden;
  color: #34465c;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mock-toolbar span,
.mock-toolbar small,
.mock-drop-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border: 1px solid #c7cbd1;
  border-radius: 4px;
  color: #000000;
  background: #ffffff;
  font-size: 12px;
}

.secondary-toolbar {
  margin-top: 10px;
}

.mock-toolbar small {
  background: #f9f9f9;
}

.mock-dropzone {
  margin-top: 22px;
  padding: 20px 14px 14px;
  border: 1px solid #d4d7dc;
  background: #f3f3f3;
}

.mock-drop-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.mock-list {
  height: 180px;
  margin-top: 14px;
  border: 1px solid #b8bdc3;
  background: #ffffff;
}

.mock-dropzone small {
  display: block;
  margin-top: 11px;
  color: #34465c;
  font-size: 12px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.feature-copy {
  max-width: 780px;
}

.feature-copy p:last-child {
  max-width: 680px;
  font-size: 18px;
}

.feature-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 18px 48px rgba(31, 45, 61, 0.08);
}

.panel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 20px;
  padding: 22px;
  background: #ffffff;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 90px);
}

.principles {
  display: grid;
  gap: 26px;
}

.principles article {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.principles article:last-child {
  border-bottom: 0;
}

.principles p {
  margin: 10px 0 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(42px, 6vw, 76px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 163, 148, 0.94), rgba(37, 111, 212, 0.94)),
    linear-gradient(45deg, var(--teal), var(--blue));
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-band h2 {
  max-width: 760px;
}

.contact-band p {
  max-width: 680px;
  margin-bottom: 0;
}

.contact-band .button.primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

  .hero-visual img {
    width: 100%;
  }

  .product-grid,
  .download-product,
  .feature-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    font-size: 13px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    transform: none;
  }

  .panel-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .download-product {
    padding: 20px;
  }

  .download-actions .button {
    width: 100%;
  }

  .mock-list {
    height: 128px;
  }

  .hype-body {
    grid-template-columns: 1fr;
  }

  .hype-sidebar {
    border-right: 0;
    border-bottom: 1px solid #dce3ec;
  }

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

  .hype-metrics span {
    border-right: 0;
    border-bottom: 1px solid #dce3ec;
  }

  .hype-metrics span:last-child {
    border-bottom: 0;
  }

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

  .contact-band .button.primary {
    width: 100%;
  }
}
