:root {
  color-scheme: light;
  --ink: #15191f;
  --muted: #59616d;
  --line: #dfe4ea;
  --paper: #ffffff;
  --wash: #f5f7fa;
  --teal: #127c7a;
  --teal-dark: #0c5b59;
  --coral: #c64f3d;
  --gold: #b57918;
  --blue: #345f92;
  --shadow: 0 18px 48px rgba(20, 28, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(21, 25, 31, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 760;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(18, 124, 122, 0.96), rgba(52, 95, 146, 0.96)),
    var(--teal);
  font-size: 0.95rem;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text span:first-child {
  font-size: 0.98rem;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: #313944;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-nav a:hover {
  background: rgba(18, 124, 122, 0.09);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.9) 42%, rgba(245, 247, 250, 0.58) 100%),
    url("hero-company.png");
  background-size: cover;
  background-position: center;
}

.hero-inner,
.page-hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 84px 0 56px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.page-hero-inner {
  padding: 74px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 8vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.hero-copy,
.page-copy {
  max-width: 760px;
  color: #2b343f;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 25, 31, 0.16);
  border-radius: 8px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 760;
  box-shadow: 0 8px 20px rgba(21, 25, 31, 0.08);
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

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

.hero-proof,
.venture-grid,
.software-grid,
.policy-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin-top: 58px;
  gap: 12px;
}

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

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

.proof-item,
.venture-card,
.product-card,
.policy-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 25, 31, 0.07);
}

.proof-item {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.proof-item span,
.venture-card p,
.product-card p,
.policy-card p,
.detail-card p,
.section-heading p,
.wide-copy,
.about-grid p {
  color: var(--muted);
}

.section {
  padding: 88px 0;
  background: var(--paper);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p,
.wide-copy,
.about-grid p {
  font-size: 1.06rem;
}

.venture-card,
.product-card,
.policy-card,
.detail-card {
  padding: 24px;
}

.venture-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.venture-card.software {
  border-top: 6px solid var(--teal);
}

.venture-card.music {
  border-top: 6px solid var(--coral);
}

.venture-card.company {
  border-top: 6px solid var(--gold);
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(21, 25, 31, 0.12);
  border-radius: 8px;
  padding: 0 9px;
  background: #f9fafb;
  color: #3e4651;
  font-size: 0.78rem;
  font-weight: 750;
}

.product-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 850;
  background: var(--teal);
}

.product-card:nth-child(2) .product-icon {
  background: var(--coral);
}

.product-card:nth-child(3) .product-icon {
  background: var(--blue);
}

.status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  background: #edf7f6;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 780;
}

.product-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 790;
}

.music-band,
.about-grid,
.contact-band {
  display: grid;
  gap: 36px;
}

.music-band {
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: stretch;
}

.about-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: 48px;
}

.music-copy {
  padding: 32px 0;
}

.music-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.media-panel {
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(21, 25, 31, 0.1);
  background:
    linear-gradient(rgba(21, 25, 31, 0.1), rgba(21, 25, 31, 0.55)),
    url("music-stage.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #ffffff;
}

.media-panel strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.media-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.fact-list,
.policy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.policy-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.fact-list strong,
.policy-list strong {
  display: block;
  margin-bottom: 4px;
}

.fact-list span,
.policy-list span {
  color: var(--muted);
}

.contact-band {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.4fr);
  align-items: center;
  border-radius: 8px;
  padding: 36px;
  background: #15191f;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-actions .button {
  width: 100%;
  box-shadow: none;
}

.policy-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-page {
  max-width: 860px;
}

.text-page h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.text-page p,
.text-page li {
  color: var(--muted);
  font-size: 1.04rem;
}

.text-page a {
  color: var(--teal-dark);
  font-weight: 760;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 74px;
  }

  .hero-proof,
  .venture-grid,
  .software-grid,
  .policy-grid,
  .detail-grid,
  .section-heading,
  .music-band,
  .about-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .site-nav a,
  .footer-nav a {
    padding: 0 9px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.6rem);
  }

  .hero-proof {
    margin-top: 36px;
  }

  .contact-band {
    padding: 24px;
  }
}
