/* Nayuta — site stylesheet (redesign July 2026)
   Tokens:
   purple #6B6CC4 · ink #12123a · indigo #2C2C6B · body #4a4a80
   muted #6C6C99 / #9a9ac0 / #9a9ad0 · on-dark #e4e4fb / #b8b8e0 / #d7d7f5 / #8a8ad0
   green #2ED98A · lavender #F4F4FB · tile #F7F7FC · borders #ECECF6 / #E9E9F6 */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: #2C2C6B;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: #2C2C6B; text-decoration: none; }
a:hover { color: #2ED98A; }
::selection { background: #2ED98A; color: #12123a; }

img { max-width: 100%; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50% { transform: translateY(-26px) rotate(-18deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(22deg); }
  50% { transform: translateY(30px) rotate(22deg); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #ECECF6;
}

.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo img { height: 32px; display: block; }

.site-nav { display: flex; align-items: center; gap: 6px; }

.site-nav .nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #9a9ac0;
}

.site-nav .nav-link.active { color: #2C2C6B; }
.site-nav .nav-link:hover { color: #2ED98A; }

.btn-contact {
  white-space: nowrap;
  margin-left: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 9px;
  background: #2C2C6B;
  color: #fff;
  transition: background .2s;
}

.btn-contact:hover { background: #2ED98A; color: #12123a; }

/* ---------- Shared type & buttons ---------- */

.kicker {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2ED98A;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
  color: #2C2C6B;
}

.dashed {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: #2ED98A;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-green {
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 11px;
  background: #2ED98A;
  color: #12123a;
  font-weight: 700;
}
.btn-green:hover { color: #12123a; filter: brightness(1.06); }

.btn-ghost {
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 11px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-ghost:hover { color: #fff; border-color: #2ED98A; }

.btn-ink {
  font-size: 15px;
  padding: 17px 34px;
  border-radius: 12px;
  background: #2C2C6B;
  color: #fff;
  font-weight: 700;
  transition: background .2s;
}
.btn-ink:hover { background: #2ED98A; color: #12123a; }

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  background: #6B6CC4;
  color: #fff;
  overflow: hidden;
}

.hero-art { position: absolute; inset: 0; pointer-events: none; }
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-ring-a { animation: floatA 11s ease-in-out infinite; transform-origin: 300px 470px; }
.hero-ring-b { animation: floatB 13s ease-in-out infinite; transform-origin: 1230px 300px; }
.hero-ring-c { animation: floatC 9s ease-in-out infinite; transform-origin: 1010px 560px; }
.hero-ring-d { animation: floatC 15s ease-in-out infinite; transform-origin: 560px 120px; }

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 32px 160px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d7d7f5;
  margin-bottom: 30px;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ED98A;
  box-shadow: 0 0 12px #2ED98A;
}

.hero-title {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 28px;
  max-width: 900px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  max-width: 560px;
  color: #e4e4fb;
  margin: 0 0 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Home sections ---------- */

.section { max-width: 1200px; margin: 0 auto; padding: 100px 32px; }
.section-intro { padding: 120px 32px 40px; }
.section-meaning { padding: 60px 32px 40px; }
.section-clients { padding: 100px 32px; }
.section-founder { padding: 40px 32px 110px; }
.section-cta { padding: 0 32px 120px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col .col-text { padding-top: 8px; }

.body-copy {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a80;
  margin: 0 0 22px;
}
.body-copy:last-child { margin-bottom: 0; }
.body-copy strong { color: #2C2C6B; }

.meaning-card {
  background: #F4F4FB;
  border: 1px solid #E9E9F6;
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.meaning-number {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: #2C2C6B;
}
.meaning-number sup { font-size: 0.45em; }

.meaning-reading {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  letter-spacing: 1px;
  color: #6C6C99;
  margin-top: 12px;
}

.section-heading-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.pyramid-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pyramid-figure { display: flex; justify-content: center; }
.pyramid-figure img { width: 100%; max-width: 460px; height: auto; }

.tiers { display: flex; flex-direction: column; gap: 4px; }

.tier { padding: 20px 0; border-bottom: 1px solid #ECECF6; }
.tier:last-child { border-bottom: none; }

.tier-label {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #2ED98A;
  margin-bottom: 6px;
}

.tier-desc { color: #4a4a80; font-size: 16px; line-height: 1.6; }

/* Services band (home) */

.services-band { background: #12123a; color: #fff; }
.services-band .band-inner { max-width: 1200px; margin: 0 auto; padding: 110px 32px; }
.services-band .band-heading { max-width: 640px; margin-bottom: 56px; }
.services-band .section-title { color: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  transition: border-color .25s, background .25s;
}

.service-card:hover {
  border-color: #2ED98A;
  background: rgba(46, 217, 138, 0.06);
}

.service-card .card-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #8a8ad0;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #fff;
}

.service-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #b8b8e0;
  margin: 0;
}

.band-link {
  margin-top: 40px;
}

.band-link a {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  color: #2ED98A;
}

/* Clients */

.clients-heading { text-align: center; margin-bottom: 56px; }
.clients-heading .kicker { margin-bottom: 14px; }
.clients-heading h2 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
  color: #2C2C6B;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.client-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  background: #F7F7FC;
  border: 1px solid #ECECF6;
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
  cursor: default;
}

.client-tile img { max-width: 100%; max-height: 46px; object-fit: contain; }

.client-pop {
  position: absolute;
  inset: 0;
  background: #2C2C6B;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  opacity: 0;
  transition: opacity .22s ease;
}

.client-tile:hover .client-pop { opacity: 1; }

.client-pop .client-name {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: #2ED98A;
}

.client-pop .client-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: #e4e4fb;
}

/* Founder card */

.founder-card {
  background: #6B6CC4;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.founder-photo {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  background: #5657ad;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-body {
  padding: 56px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-quote {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 24px;
}

.founder-name {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 700;
}

.founder-role {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #d7d7f5;
  margin-top: 4px;
}

/* Final CTA */

.cta-final { text-align: center; }

.cta-final h2 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 auto 24px;
  max-width: 760px;
  color: #2C2C6B;
}

.cta-final p {
  font-size: 19px;
  color: #4a4a80;
  margin: 0 auto 36px;
  max-width: 520px;
  line-height: 1.6;
}

/* ---------- Sub-pages (Services / About) ---------- */

.page-hero { background: #6B6CC4; color: #fff; }

.page-hero .page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 32px 90px;
}

.page-hero .kicker { margin-bottom: 20px; }

.page-hero h1 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 22px;
  max-width: 820px;
}

.page-hero .lede {
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
  color: #e4e4fb;
  margin: 0;
}

.section-sub { max-width: 1080px; margin: 0 auto; padding: 90px 32px 40px; }

.service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid #ECECF6;
}

.service-row .row-num {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: #2ED98A;
}

.service-row h3 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 16px;
  color: #2C2C6B;
}

.service-row p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a80;
  margin: 0;
  max-width: 680px;
}

.section-cta-card { max-width: 1080px; margin: 0 auto; padding: 60px 32px 120px; }

.cta-card {
  background: #12123a;
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: #fff;
}

.cta-card h2 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  margin: 0 auto 20px;
  max-width: 600px;
  line-height: 1.2;
}

.cta-card p {
  font-size: 18px;
  color: #b8b8e0;
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.6;
}

.cta-card .btn-green { font-size: 15px; padding: 16px 32px; border-radius: 12px; }

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #F4F4FB;
  border: 1px solid #ECECF6;
  border-radius: 20px;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-grid .kicker { margin-bottom: 16px; }

.section-quote { max-width: 1080px; margin: 0 auto; padding: 70px 32px 120px; }

.quote-card {
  background: #F4F4FB;
  border: 1px solid #E9E9F6;
  border-radius: 24px;
  padding: 56px;
}

.quote-card .quote {
  font-size: 22px;
  line-height: 1.6;
  color: #2C2C6B;
  font-weight: 500;
  max-width: 820px;
}

.quote-card .quote-action { margin-top: 28px; }

.quote-card .btn-ink { font-size: 14px; padding: 14px 28px; border-radius: 11px; }

/* ---------- Footer ---------- */

.site-footer { background: #12123a; color: #fff; }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 32px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-grid .footer-logo img { height: 32px; display: block; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #9a9ad0;
  margin: 22px 0 0;
  max-width: 280px;
}

.footer-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6a6ac0;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.footer-nav a { color: #d7d7f5; width: max-content; }
.footer-nav a:hover { color: #2ED98A; }

.footer-contact { font-size: 15px; line-height: 1.9; color: #d7d7f5; }
.footer-contact a { color: #2ED98A; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px 40px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #5a5aa0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .two-col,
  .pyramid-grid,
  .meaning-card,
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { min-height: 360px; }

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

  .hero-inner { padding: 110px 32px 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .site-header .header-inner { flex-wrap: wrap; padding: 10px 16px; gap: 6px 12px; }
  .site-header .logo img { height: 26px; }
  .site-nav { width: 100%; justify-content: space-between; gap: 0; }
  .site-nav .nav-link { padding: 6px 8px; font-size: 12px; letter-spacing: 0.5px; }
  .btn-contact { margin-left: 0; padding: 8px 12px; font-size: 12px; }

  .hero-inner,
  .page-hero .page-hero-inner,
  .section,
  .section-sub,
  .section-cta-card,
  .section-quote,
  .services-band .band-inner { padding-left: 20px; padding-right: 20px; }

  .meaning-card,
  .quote-card { padding: 32px; }
  .cta-card { padding: 44px 28px; }
  .founder-body { padding: 36px 28px; }

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

  .service-row { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
}
