:root {
  --navy: #1F356C;
  --green: #78AF64;
  --coral: #F45C67;
  --cream: #F8F3EF;
  --paper: #FFFDFC;
  --ink: #1D2E5A;
  --muted: #6E6A67;
  --line: rgba(31, 53, 108, 0.14);
  --talk-amber: #FFC857;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(248, 243, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31,53,108,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.desktop-nav a { opacity: .72; }
.desktop-nav a:hover { opacity: 1; }

.nav-cta {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  padding-bottom: 3px;
}

.section-pad {
  padding: 110px 7vw;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 42px;
}

.section-label.light { color: rgba(255,255,255,.64); }

.hero {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 26px;
}

.brand-stripe {
  display: flex;
  width: 126px;
  height: 5px;
  gap: 4px;
  margin-bottom: 28px;
}
.brand-stripe span {
  flex: 1;
  border-radius: 999px;
}
.brand-stripe span:nth-child(1) { background: var(--navy); }
.brand-stripe span:nth-child(2) { background: var(--green); }
.brand-stripe span:nth-child(3) { background: var(--coral); }

.hero h1,
.about h2,
.what-we-do h2,
.venture-copy h2,
.founder-intro h2,
.next h2,
.contact h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: .98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(64px, 9vw, 142px);
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.hero h1 span {
  font-style: italic;
  color: var(--coral);
}

.hero-copy {
  max-width: 560px;
  font-size: clamp(18px, 2vw, 24px);
  margin: 30px 0 32px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease;
}

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

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

.button-light {
  background: var(--cream);
  color: var(--ink);
  margin-top: 14px;
}

.text-link {
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.hero-orbit {
  position: absolute;
  width: 580px;
  height: 580px;
  right: -110px;
  top: 80px;
  opacity: .85;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23,26,33,.18);
  border-radius: 50%;
}

.orbit-one { inset: 35px; }
.orbit-two { inset: 110px; }

.dot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}


.dot-b { background: var(--green); right: 80px; top: 130px; }
.dot-c { background: var(--coral); right: 112px; bottom: 108px; }

.center-word {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 26px;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  align-items: start;
}

.about h2 {
  font-size: clamp(48px, 6vw, 86px);
}

.about-copy {
  font-size: 19px;
  color: #373A40;
}

.about-copy p:first-child { margin-top: 0; }

.what-we-do { background: var(--cream); }

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading-row h2 {
  font-size: clamp(54px, 7vw, 96px);
}

.section-heading-row p {
  max-width: 500px;
  font-size: 18px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.pillar {
  padding: 30px 30px 20px 0;
  min-height: 260px;
  border-right: 1px solid var(--line);
}

.pillar + .pillar { padding-left: 30px; }

.pillar:last-child { border-right: none; }

.pillar-number {
  display: inline-block;
  font-family: "Playfair Display", serif;
  color: var(--coral);
  margin-bottom: 48px;
}

.pillar h3 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 0 0 12px;
}

.pillar p {
  color: var(--muted);
  max-width: 310px;
}

.ventures {
  background: var(--navy);
  color: white;
}

.venture-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.16);
}

.venture-copy {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venture-kicker {
  color: var(--talk-amber);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  margin-bottom: 18px;
}

.venture-copy h2 {
  font-size: clamp(64px, 8vw, 112px);
}

.venture-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--talk-amber);
  margin: 12px 0 24px;
}

.venture-copy > p:not(.venture-tagline) {
  max-width: 570px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.venture-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(120,175,100,.17), rgba(244,92,103,.14));
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,200,87,.38) 0%, rgba(255,200,87,0) 68%);
  filter: blur(8px);
}

.phone {
  width: min(290px, 62%);
  aspect-ratio: 9/18;
  border: 9px solid #08090d;
  border-radius: 38px;
  padding: 8px;
  background: #111319;
  transform: rotate(5deg);
  box-shadow: 0 34px 80px rgba(0,0,0,.38);
  position: relative;
  z-index: 2;
}

.phone-top {
  width: 90px;
  height: 19px;
  border-radius: 999px;
  background: #050608;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 25px;
  background: #FAF7F0;
  padding: 55px 24px 24px;
  color: var(--ink);
  position: relative;
}

.mini-logo {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 44px;
}

.screen-message {
  height: 14px;
  width: 78%;
  border-radius: 999px;
  background: #DED8CE;
  margin: 13px 0;
}

.screen-message.wide { width: 92%; }
.screen-message.short { width: 56%; }

.bulb {
  position: absolute;
  bottom: 68px;
  right: 34px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: var(--talk-amber);
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 0 45px rgba(255,200,87,.58);
}

.venture-statement {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 58px);
  text-align: center;
  margin: 90px auto 0;
  max-width: 900px;
  line-height: 1.1;
}

.venture-statement em { color: var(--talk-amber); }

.founders {
  background: var(--paper);
}

.founder-intro {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 70px;
}

.founder-intro h2 {
  font-size: clamp(48px, 6vw, 86px);
}

.founder-intro h2 span {
  color: var(--coral);
  font-style: italic;
}

.founder-intro p {
  font-size: 18px;
  max-width: 480px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.photo-placeholder {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(120,175,100,.32), rgba(244,92,103,.18)),
    var(--cream);
  display: grid;
  place-items: center;
  color: rgba(23,26,33,.45);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.founder-meta {
  padding: 18px 2px 0;
}

.founder-meta h3 {
  margin: 0 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.founder-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.next {
  background: var(--navy);
  color: white;
  text-align: center;
}

.next-inner { max-width: 1000px; margin: auto; }

.next h2 {
  font-size: clamp(58px, 8vw, 116px);
}

.next p {
  font-size: 20px;
  margin: 24px 0 46px;
}

.next-words {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.next-words span {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  gap: 9vw;
  align-items: end;
}

.contact h2 {
  font-size: clamp(48px, 6vw, 84px);
  max-width: 900px;
}

.contact-grid > div p {
  font-size: 18px;
  margin: 0 0 24px;
}

.contact-note {
  margin-top: 16px !important;
  font-size: 12px !important;
  color: var(--muted);
}

footer {
  padding: 40px 5vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

footer > p { margin: 0; color: var(--muted); }
.copyright { justify-self: end; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .section-pad { padding: 82px 6vw; }
  .hero { min-height: 82vh; }
  .hero-orbit { opacity: .28; right: -300px; top: 130px; }
  .about-grid,
  .section-heading-row,
  .venture-card,
  .founder-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 0 !important;
    min-height: auto;
  }
  .venture-copy { padding: 45px 28px; }
  .venture-visual { min-height: 520px; }
  .founder-grid { grid-template-columns: 1fr; }
  .photo-placeholder { aspect-ratio: 4/3; }
  footer { grid-template-columns: 1fr; text-align: left; }
  .copyright { justify-self: start; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 5vw; }
  .nav-cta { font-size: 12px; }
  .hero h1 { font-size: 58px; }
  .hero-copy { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .section-label { margin-bottom: 28px; }
  .venture-visual { min-height: 430px; }
  .founder-grid { gap: 40px; }
}

.pillar-navy .pillar-number, .pillar-navy h3 { color: var(--navy); }
.pillar-green .pillar-number, .pillar-green h3 { color: var(--green); }
.pillar-coral .pillar-number, .pillar-coral h3 { color: var(--coral); }

.next-words span:nth-child(1) { border-color: rgba(120,175,100,.8); color: #C8E0BD; }
.next-words span:nth-child(2) { border-color: rgba(244,92,103,.8); color: #FFC3C8; }
.next-words span:nth-child(3) { border-color: rgba(255,255,255,.55); color: white; }

.button-dark { background: var(--navy); color: white; }
.button-dark:hover { background: #294681; }
.nav-cta:hover, .text-link:hover { color: var(--coral); border-color: var(--coral); }

@media (max-width: 560px) {
  }


.brand-image {
  display: inline-flex;
  align-items: center;
}

.actual-logo {
  display: block;
  width: 285px;
  max-width: 100%;
  height: auto;
}

.footer-brand .actual-logo {
  width: 250px;
}

@media (max-width: 900px) {
  .actual-logo {
    width: 230px;
  }
  .footer-brand .actual-logo {
    width: 220px;
  }
}

@media (max-width: 560px) {
  .actual-logo {
    width: 185px;
  }
  .footer-brand .actual-logo {
    width: 175px;
  }
}


/* ---- Talk-Light venture alignment ---- */
.ventures {
  background: var(--cream);
  color: var(--navy);
}

.ventures .section-label {
  color: var(--navy);
}

.talklight-card {
  border: none;
  border-radius: 34px;
  overflow: hidden;
  background: #1B1B2F;
  box-shadow: 0 30px 80px rgba(31,53,108,.12);
}

.talklight-card .venture-copy {
  background:
    radial-gradient(circle at 20% 15%, rgba(58,12,163,.20), transparent 32%),
    #1B1B2F;
  color: white;
}

.talklight-card .venture-kicker {
  color: #FFC857;
}

.talklight-wordmark {
  display: inline-block;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  padding: 8px 14px;
  border: 1px solid rgba(255,200,87,.55);
  border-radius: 999px;
  color: #FFC857;
  margin-bottom: 24px;
}

.talklight-card .venture-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 6vw, 84px);
  line-height: 1.02;
  max-width: 640px;
  color: #FFF8EC;
  margin: 0 0 24px;
}

.talklight-card .venture-copy > p {
  max-width: 590px;
  color: rgba(255,255,255,.75);
  font-size: 17px;
}

.talklight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}

.talklight-pills span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
}

.talklight-button {
  margin-top: 28px;
  background: #FFC857;
  color: #1B1B2F;
}

.talklight-button:hover {
  background: #FFD574;
}

.talklight-visual {
  background:
    radial-gradient(circle at 65% 20%, rgba(255,107,107,.18), transparent 28%),
    radial-gradient(circle at 35% 70%, rgba(58,12,163,.26), transparent 34%),
    linear-gradient(145deg, #F9F2E7, #F4E7D0);
}

.talklight-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.glow-one {
  width: 360px;
  height: 360px;
  background: rgba(255,200,87,.48);
  right: 12%;
  top: 18%;
}

.glow-two {
  width: 240px;
  height: 240px;
  background: rgba(255,107,107,.18);
  left: 8%;
  bottom: 10%;
}

.talklight-phone {
  border-color: #1B1B2F;
  background: #1B1B2F;
  transform: rotate(0deg);
  box-shadow: 0 34px 80px rgba(27,27,47,.32);
}

.talklight-phone .phone-screen {
  background:
    radial-gradient(circle at 88% 8%, rgba(255,200,87,.20), transparent 26%),
    #FFF9F1;
}

.talklight-phone .mini-logo {
  color: #1B1B2F;
}

.screen-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 34px;
  max-width: 190px;
  color: #1B1B2F;
}

.talklight-phone .screen-message {
  background: rgba(58,12,163,.11);
}

.talklight-phone .bulb {
  background: #FFC857;
  color: #1B1B2F;
  box-shadow: 0 0 45px rgba(255,200,87,.60);
}

.venture-statement {
  color: var(--navy);
}

.venture-statement em {
  color: var(--coral);
}

@media (max-width: 900px) {
  .talklight-card {
    border-radius: 26px;
  }
}


/* ---- Final header/footer logo treatment ---- */
.logo-only {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.site-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-site-logo {
  width: 64px;
  height: 64px;
}

.brand-name,
.brand-text,
.brand-mark,
.actual-logo,
.brand-logo {
  display: none !important;
}

@media (max-width: 900px) {
  .site-logo {
    width: 62px;
    height: 62px;
  }
  .footer-site-logo {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 560px) {
  .site-logo {
    width: 54px;
    height: 54px;
  }
  .footer-site-logo {
    width: 50px;
    height: 50px;
  }
}


/* ---- Refined real 3Minds logo placement ---- */
.site-header {
  min-height: 88px;
}

.logo-only {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 66px !important;
  height: 66px !important;
  object-fit: contain;
}

.footer-site-logo {
  width: 72px !important;
  height: 72px !important;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
  }
  .site-logo {
    width: 58px !important;
    height: 58px !important;
  }
  .footer-site-logo {
    width: 64px !important;
    height: 64px !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
  }
  .site-logo {
    width: 52px !important;
    height: 52px !important;
  }
  .footer-site-logo {
    width: 58px !important;
    height: 58px !important;
  }
}





/* ---- Clean hero alignment fix ---- */
.hero-orbit {
  position: absolute;
  width: 580px;
  height: 580px;
  right: -110px;
  top: 80px;
  opacity: .85;
  display: block !important;
}

.dot-a {
  background: var(--navy);
  width: 74px;
  height: 74px;
  left: 72px;
  top: 122px;
}

@media (max-width: 900px) {
  .hero-orbit {
    opacity: .28;
    right: -300px;
    top: 130px;
  }

  .dot-a {
    width: 62px;
    height: 62px;
    left: 86px;
    top: 138px;
  }
}

@media (max-width: 560px) {
  .dot-a {
    width: 54px;
    height: 54px;
    left: 98px;
    top: 154px;
  }
}


/* ---- Actual Talk-Light logo ---- */
.talklight-logo-link {
  display: inline-block;
  width: fit-content;
  margin: 0 0 26px;
  border-radius: 22px;
  transition: transform .2s ease, opacity .2s ease;
}

.talklight-logo-link:hover {
  transform: translateY(-2px);
  opacity: .96;
}

.talklight-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(0,0,0,.12);
}

.talklight-wordmark {
  display: none !important;
}

@media (max-width: 900px) {
  .talklight-logo {
    width: 160px;
  }
}

@media (max-width: 560px) {
  .talklight-logo {
    width: 145px;
  }
}


/* ---- Talk-Light feature labels: aligned in one row ---- */
.talklight-pills {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 620px;
  margin: 28px 0 10px;
  align-items: stretch;
}

.talklight-pills span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  text-align: center;
  white-space: nowrap;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .talklight-pills {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .talklight-pills span {
    white-space: normal;
  }
}


/* ---- What We Do headline: one aligned row ---- */
.section-heading-row {
  display: block;
}

.what-we-do-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: none;
  margin: 0 0 36px !important;
  align-items: baseline;
}

.what-we-do-row span {
  display: block;
  white-space: nowrap;
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1;
}

.section-heading-row > p {
  max-width: 720px;
  margin-left: auto;
  margin-top: 0;
}

@media (max-width: 1050px) {
  .what-we-do-row {
    gap: 20px;
  }

  .what-we-do-row span {
    font-size: clamp(38px, 5vw, 62px);
  }
}

@media (max-width: 760px) {
  .what-we-do-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .what-we-do-row span {
    white-space: normal;
    font-size: clamp(46px, 12vw, 64px);
  }

  .section-heading-row > p {
    margin-left: 0;
  }
}


/* ---- Final cleanup ---- */
.center-word,
.talklight-phone .bulb {
  display: none !important;
}
