:root {
  --ink: #20242b;
  --blue: #2763d8;
  --gold: #f8bd18;
  --star: #ffc928;
  --torch: #d24045;
  --ember: #f1782a;
  --cloud: #f5f8fb;
  --white: #ffffff;
  --rule: #d7e0e8;
  --slate: #667382;
  --muted: #4c5968;
  --soft-blue: #eaf1ff;
  --soft-gold: #fff7df;
  --shadow: 0 20px 70px rgba(32, 36, 43, 0.11);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration-color: rgba(39, 99, 216, 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: absolute;
  top: -4rem;
  z-index: 20;
}

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

.wrap {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 24px;
  width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 232, 0.75);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 188px;
  text-decoration: none;
}

.brand img {
  height: auto;
  width: 188px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

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

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--blue);
}

.btn {
  align-items: center;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

.btn:hover {
  background: #174fb8;
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--rule);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--cloud);
  color: var(--ink);
}

.site-nav .btn {
  color: var(--white);
  min-height: 38px;
  padding: 0.48rem 0.78rem;
}

.hero {
  background:
    linear-gradient(112deg, rgba(245, 248, 251, 0.96) 0%, rgba(245, 248, 251, 0.7) 54%, rgba(255, 255, 255, 1) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 201, 40, 0.18), transparent 30%),
    linear-gradient(180deg, var(--white), var(--cloud));
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 58px 0 0;
}

.hero-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.hero-grid > *,
.section-header > *,
.feature-band > *,
.page-intro > *,
.organizer-strip > *,
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  max-width: 830px;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  margin: 24px 0 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.hero-visual {
  align-self: end;
  min-height: 420px;
  position: relative;
}

.hero-logo-panel {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-left: auto;
  max-width: 650px;
  padding: 28px;
}

.hero-logo-panel img {
  margin: 0 auto;
}

.hero-logo-panel > img {
  max-width: 460px;
  width: 100%;
}

.hero-brand-lockup {
  margin-bottom: 28px;
}

.hero-brand-lockup img {
  max-width: min(470px, 100%);
  width: 100%;
}

.hero-title {
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
}

.hero-label {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 8px 0 0;
}

.hero-copy-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 224, 232, 0.86);
  border-radius: var(--radius);
  margin-top: 26px;
  padding: 22px;
}

.product-proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.product-proof-grid img {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  height: 210px;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

.product-proof-grid img:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  height: 300px;
}

.proof-strip {
  align-items: end;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.proof-strip img {
  aspect-ratio: 1.14 / 1;
  background: var(--cloud);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.status-row {
  background: var(--ink);
  color: var(--white);
  margin-top: 56px;
}

.status-row .wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 20px;
  padding-top: 20px;
}

.status-row p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.status-row strong {
  color: var(--white);
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--cloud);
}

.section-header {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  margin-bottom: 34px;
}

.section-header p,
.section-intro {
  color: var(--muted);
  margin: 0;
}

.page-intro {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
}

.page-intro-logo {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.page-intro-logo img {
  margin: 0 auto;
}

.page-intro h1 {
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
}

.plain-section {
  max-width: 880px;
}

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

.plain-section h2,
.boundary h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.statement-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.pipeline-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.pipeline-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.95fr) minmax(180px, 0.72fr);
  padding: 20px;
}

.pipeline-card img {
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) - 2px);
  height: 210px;
  object-fit: contain;
  width: 100%;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card,
.product-card,
.notice-box,
.contact-block,
.legal-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.card,
.notice-box,
.contact-block,
.legal-card {
  padding: 24px;
}

.card p,
.product-card p,
.notice-box p,
.contact-block p,
.legal-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.card h2,
.product-card h2,
.contact-block h2,
.legal-card h2 {
  font-size: 1.55rem;
}

.legal-card h2:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.spaced-heading {
  margin-top: 24px;
}

.card-kicker {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 1.45 / 1;
  background: var(--cloud);
  border-bottom: 1px solid var(--rule);
  object-fit: cover;
  width: 100%;
}

.product-card.is-real {
  border-color: rgba(39, 99, 216, 0.28);
}

.product-card.is-development {
  background: linear-gradient(180deg, var(--white), #fbfcfd);
}

.product-card.is-development img {
  object-position: top center;
}

.product-note {
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 650;
  margin-top: 14px;
}

.organizer-strip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.72fr);
  margin-top: 28px;
  padding: 22px;
}

.organizer-strip img {
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) - 2px);
  max-height: 330px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.email-link {
  display: inline-block;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.product-card-body {
  padding: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}

.tag-list li {
  background: var(--soft-blue);
  border: 1px solid rgba(39, 99, 216, 0.18);
  border-radius: 999px;
  color: #174fb8;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
  padding: 0.32rem 0.62rem;
}

.feature-band {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
}

.feature-media {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.feature-media img {
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) - 2px);
  width: 100%;
}

.list-check {
  margin: 24px 0 0;
  padding: 0;
}

.list-check li {
  border-top: 1px solid var(--rule);
  list-style: none;
  padding: 13px 0;
}

.list-check li::before {
  color: var(--blue);
  content: ">";
  font-weight: 900;
  margin-right: 10px;
}

.boundary {
  background: var(--ink);
  color: var(--white);
}

.boundary .section-header p,
.boundary p,
.boundary li {
  color: rgba(255, 255, 255, 0.78);
}

.boundary .notice-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.boundary .card-kicker {
  color: var(--star);
}

.contact-strip {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.legal-main {
  margin: 0 auto;
  max-width: 880px;
  padding: 64px 24px 88px;
}

.legal-main h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.legal-main h2 {
  border-top: 1px solid var(--rule);
  font-size: 1.35rem;
  margin-top: 32px;
  padding-top: 28px;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.updated {
  color: var(--slate);
  font-weight: 650;
  margin: 14px 0 28px;
}

.site-footer {
  background: var(--cloud);
  border-top: 1px solid var(--rule);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 0.92fr) minmax(260px, 1.08fr);
}

.footer-logo {
  width: 190px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 18px 0 0;
}

.small {
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .site-header .wrap,
  .hero-grid,
  .section-header,
  .feature-band,
  .page-intro,
  .organizer-strip,
  .contact-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 18px;
    padding-top: 18px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-logo-panel {
    margin-left: 0;
  }

  .status-row .wrap,
  .grid-3,
  .grid-2,
  .statement-list,
  .pipeline-list,
  .pipeline-card {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }

  .brand img {
    width: 164px;
  }

  .site-nav {
    gap: 8px 13px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero,
  .section {
    padding-top: 48px;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-logo-panel {
    max-width: calc(100vw - 36px);
    overflow: hidden;
    padding: 18px;
    width: calc(100vw - 36px);
  }

  .hero-brand-lockup,
  .hero-copy-panel,
  .hero-actions {
    max-width: calc(100vw - 36px);
    width: calc(100vw - 36px);
  }

  .hero-brand-lockup img {
    max-width: 340px;
  }

  .hero-title,
  .page-intro h1 {
    font-size: 1.82rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .product-proof-grid {
    grid-template-columns: 1fr;
  }

  .product-proof-grid img,
  .product-proof-grid img:first-child {
    grid-row: auto;
    height: auto;
  }

  .section {
    padding-bottom: 52px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .contact-strip .btn {
    width: 100%;
  }
}
