:root {
  --bg-dark: #233b45;
  --bg-darker: #172a32;
  --bg-deep: #102027;
  --surface: #294753;
  --surface-2: #315663;
  --surface-3: rgba(255,255,255,0.035);
  --text: #edf4f7;
  --muted: #bfd0d7;
  --muted-2: #9bb3bc;
  --accent: #20ce88;
  --accent-2: #8fc7d1;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --shadow: 0 18px 40px rgba(0,0,0,0.22);
  --shadow-soft: 0 10px 24px rgba(0,0,0,0.16);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1180px;
  --reading: 72ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.narrow { max-width: 900px; }
.center { text-align: center; }
.align-start { align-items: start; }

.section {
  padding: 88px 0;
  position: relative;
}
.section-light {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008)),
    var(--bg-dark);
}
.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.06)),
    var(--bg-darker);
}
.section-title-only {
  padding-top: 72px;
  padding-bottom: 28px;
}
.section-divider {
  padding-top: 78px;
  padding-bottom: 34px;
}

.hero {
  padding-top: 56px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}
.hero-grid,
.two-col,
.three-up {
  display: grid;
  gap: 32px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 96px;
}
.two-col {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gap-large { gap: 40px; }
.content-grid { align-items: start; }

.hero-left {
  max-width: 760px;
}
.hero-right {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}
.accent,
.section-title,
.project-title,
.content-card h4,
.transition-line,
.cta-link {
  color: var(--accent);
}
.hero-title {
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(2.2rem, 3.55vw, 4rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.hero-metrics {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 60ch;
  font-size: 1.03rem;
}
.hero-metrics p {
  margin: 0 0 10px;
  padding: 10px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(32, 206, 136, 0.07);
  border-radius: 0 8px 8px 0;
  color: var(--accent-2);
}
.hero-metrics p:last-child {
  margin-bottom: 0;
}
.hero-stack {
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  text-align: right;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.06em;
  text-shadow: none;
  font-weight: 700;
  user-select: none;
  margin-top: -80px;
}
.hero-stack span {
  display: block;
}
.hero-stack span + span {
  margin-top: 10px;
}
.avatar {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 22px;
  border: 3px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 0 6px rgba(32,206,136,0.15);
}

.section-title,
.project-title {
  margin: 0 0 14px;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.project-title {
  font-size: clamp(2rem, 2.4vw, 2.65rem);
}
.project-subtitle,
.lead-copy,
.tagline {
  margin: 0;
  color: var(--accent-2);
}
.project-subtitle {
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.55rem);
  line-height: 1.3;
}
.lead-copy {
  max-width: var(--reading);
  margin: 14px auto 0;
  font-size: 1.14rem;
  color: var(--muted);
}
.tagline {
  margin-top: 18px;
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.5rem;
  line-height: 1.18;
  color: var(--accent);
}
.transition-line {
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.28;
}
.intro-block {
  max-width: 900px;
  margin: 0 auto 30px;
}

.content-card,
.visual-card,
.center-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}
.content-card {
  padding: 30px;
}
.center-card {
  padding: 34px;
}
.visual-card {
  overflow: hidden;
  align-self: start;
}
.visual-card img,
.visual-wide img {
  width: 100%;
  height: auto;
}
.visual-wide {
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.content-card h4 {
  margin: 0 0 14px;
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.content-card p {
  margin: 0 0 13px;
  color: var(--text);
}
.content-card p:last-child {
  margin-bottom: 0;
}
.content-card ul {
  margin: 0;
  padding-left: 20px;
}
.content-card li {
  margin-bottom: 11px;
  color: var(--text);
}
.content-card li:last-child {
  margin-bottom: 0;
}
.content-block + .content-block {
  margin-top: 24px;
  padding-top: 4px;
}
.content-block h4 {
  margin-bottom: 12px;
}

.center-card,
.center-card .center-text,
.center-card .tagline {
  text-align: center;
}
.logo-lockup {
  position: relative;
  display: inline-block;
  margin: 0 auto 20px;
}
.logo-mark {
  width: min(190px, 46vw);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.logo-tm {
  position: absolute;
  top: 10px;
  right: -18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 700;
}
.center-card .project-subtitle {
  max-width: 28ch;
  margin-inline: auto;
}

.tm-mark {
  display: none;
}
.proprietary-term {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.term-tm {
  font-size: 0.6em;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: super;
  line-height: 0;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(32, 206, 136, 0.35);
  border-radius: 999px;
  background: rgba(32, 206, 136, 0.08);
  font-size: 1.02rem;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.cta-link:hover {
  transform: translateY(-1px);
  background: rgba(32, 206, 136, 0.14);
  border-color: rgba(32, 206, 136, 0.55);
}

.section-dark .content-card,
.section-dark .visual-card,
.section-dark .center-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.site-footer {
  padding: 28px 0 42px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  text-align: center;
}
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.nw-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
}
.nw-row-top,
.nw-row-bottom {
  display: grid;
  gap: 32px;
  align-items: center;
}
.nw-row-top {
  grid-template-columns: 2.5fr 1fr;
}
.nw-row-bottom {
  grid-template-columns: 1fr 2.5fr;
}
.nw-visual-primary {
  align-self: start;
}
.nw-visual-primary img {
  width: 100%;
  height: auto;
}
.nw-card-side {
  align-self: center;
}

@media (max-width: 980px) {
  .nw-row-top,
  .nw-row-bottom {
    grid-template-columns: 1fr;
  }
  .nw-row-bottom .nw-card-side {
    order: 2;
  }
  .nw-row-bottom .nw-visual-primary {
    order: 1;
  }
}

.top-space { margin-top: 34px; }
.top-space-small { margin-top: 22px; }
.bottom-space-small { margin-bottom: 22px; }

.contact-section .section-title {
  margin-bottom: 32px;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  min-width: 200px;
}
.contact-item:hover {
  border-color: rgba(32,206,136,0.45);
  background: rgba(32,206,136,0.07);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact-value {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
}

.footer-trademark {
  margin-top: 8px !important;
  font-size: 0.82rem !important;
  color: var(--muted-2) !important;
  opacity: 0.7;
}

@media (min-width: 981px) {
  .two-col.align-start > .content-card,
  .two-col.align-start > .visual-card {
    align-self: start;
  }

  .section-light .two-col > .visual-card,
  .section-light .two-col > aside.visual-card {
    position: sticky;
    top: 24px;
  }

  .section-light .two-col .visual-card img {
    min-height: 100%;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-stack {
    text-align: left;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }
}

@media (max-width: 980px) {
  .two-col,
  .three-up {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .content-card,
  .center-card {
    padding: 26px;
  }

  .section-title-only {
    padding-top: 62px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 60px;
  }

  .section {
    padding: 56px 0;
  }

  .content-card,
  .center-card {
    padding: 22px;
  }

  .hero-metrics,
  .lead-copy,
  .content-card p,
  .content-card li,
  .project-subtitle {
    font-size: 0.98rem;
  }

  .content-card h4 {
    font-size: 1.2rem;
  }

  .logo-tm {
    top: 6px;
    right: -12px;
  }

  .cta-link {
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    text-align: center;
    padding-inline: 16px;
  }
}
