/* ============ BASE ============ */
html, body {
  margin: 0;
  padding: 0;
  background: #FCFBF8;
  color: #17181C;
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a { color: #17181C; text-decoration: none; }
a:hover { color: #44474F; }
::selection { background: #E4DECF; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

/* ============ ANIMATIONS ============ */
@keyframes riseIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sweepIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes floaty2 { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-7px) rotate(-2deg); } }
@keyframes tickPop { 0% { transform: scale(0); } 70% { transform: scale(1.25); } 100% { transform: scale(1); } }
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ============ SHARED BITS ============ */
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-green { background: #567F4B; }
.dot-teal { background: #4CAF87; }
.dot-lightgreen { background: #8FBB6E; width: 8px; height: 8px; }
.dot-skyblue { background: #5B8DEF; width: 8px; height: 8px; }
.dot-violet { background: #8B7BE8; width: 8px; height: 8px; }

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
}
.brand-logo-sm {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.brand-mark {
  display: grid;
  grid-template-columns: 11px 11px;
  grid-template-rows: 11px 11px;
  gap: 3px;
}
.brand-mark .sq { border-radius: 3.5px; }
.brand-mark-sm { grid-template-columns: 7px 7px; grid-template-rows: 7px 7px; gap: 2px; }
.brand-mark-sm .sq { border-radius: 2px; }
.sq-green { background: #567F4B; }
.sq-gold { background: #C9A15E; }
.sq-blue { background: #4B7BE5; }
.sq-purple { background: #6A5AE0; }

/* ============ PROGRESS BAR ============ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 99;
  background: linear-gradient(90deg, #567F4B, #C9A15E, #4B7BE5, #6A5AE0);
  transition: width .12s linear;
}

/* ============ NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 24, 28, 0.07);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 600; }
.nav-link {
  color: #5A5D66;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.nav-link:hover { color: #17181C; }
.nav-link-gold:hover { border-bottom-color: #C9A15E; }
.nav-link-purple:hover { border-bottom-color: #6A5AE0; }
.nav-cta {
  background: #17181C;
  color: #FCFBF8;
  padding: 10px 22px;
  border-radius: 99px;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: #33363E; color: #FCFBF8; transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background-image: radial-gradient(rgba(23, 24, 28, 0.065) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
}
.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 112px 36px 96px;
  box-sizing: border-box;
  position: relative;
}
.orbs { position: absolute; inset: 0; pointer-events: none; transition: transform .3s ease-out; }
.orb { position: absolute; }
.orb-1 { top: 64px; right: 11%; width: 18px; height: 18px; border-radius: 50%; background: #6A5AE0; opacity: .55; animation: floaty 5s ease-in-out infinite; }
.orb-2 { top: 210px; right: 4%; width: 30px; height: 30px; border-radius: 9px; background: #C9A15E; opacity: .42; animation: floaty 6.5s ease-in-out .8s infinite; }
.orb-3 { top: 350px; right: 15%; width: 13px; height: 13px; border-radius: 50%; background: #567F4B; opacity: .5; animation: floaty 5.6s ease-in-out .4s infinite; }
.orb-4 { top: 120px; right: 23%; width: 11px; height: 11px; transform: rotate(45deg); background: #4B7BE5; opacity: .45; animation: floaty2 7s ease-in-out infinite; }
.orb-5 { top: 290px; right: 28%; width: 44px; height: 44px; border: 2.5px dashed rgba(106, 90, 224, 0.35); border-radius: 50%; animation: spinSlow 22s linear infinite; }

.hero-badge {
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #75787F;
  background: #FCFBF8;
  border: 1px solid rgba(23, 24, 28, 0.1);
  padding: 8px 16px;
  border-radius: 99px;
  animation: riseIn .7s cubic-bezier(.2,.6,.2,1) both;
}
.hero-title {
  margin: 0;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 13ch;
  text-wrap: balance;
  animation: riseIn .8s cubic-bezier(.2,.6,.2,1) .08s both;
}
.hl-wrap { position: relative; display: inline-block; white-space: nowrap; }
.hl-text { position: relative; z-index: 1; }
.hl-sweep {
  position: absolute;
  left: -2%; right: -2%; bottom: 7%;
  height: 32%;
  background: #D8E5C8;
  border-radius: 6px;
  transform-origin: left;
  animation: sweepIn .6s cubic-bezier(.3,.7,.3,1) .7s both;
}
.hero-sub {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: #4A4D55;
  max-width: 50ch;
  text-wrap: pretty;
  animation: riseIn .8s cubic-bezier(.2,.6,.2,1) .18s both;
}
.hero-chips {
  margin-top: 52px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: riseIn .8s cubic-bezier(.2,.6,.2,1) .3s both;
}
.chip {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 16px 28px 16px 16px;
  transition: transform .22s cubic-bezier(.2,.6,.2,1), box-shadow .22s ease;
}
.chip-nomademy { background: #F7F1E4; border: 1.5px solid #E7DDC6; }
.chip-nomademy:hover { transform: translateY(-4px) rotate(-0.5deg); box-shadow: 0 16px 34px -12px rgba(90, 70, 40, 0.38); }
.chip-meselem { background: #2B2653; border: 1.5px solid #3D3675; }
.chip-meselem:hover { transform: translateY(-4px) rotate(0.5deg); box-shadow: 0 16px 34px -12px rgba(50, 40, 110, 0.55); }
.chip-logo {
  width: 54px; height: 54px;
  object-fit: cover;
  object-position: left;
  border-radius: 13px;
  image-rendering: pixelated;
  background: #F7F2E8;
}
.chip-m {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: linear-gradient(135deg, #6A5AE0 0%, #4B7BE5 100%);
  display: grid;
  place-items: center;
  color: #FFF;
  font-size: 25px;
  font-weight: 800;
}
.chip-title { display: block; font-size: 17px; font-weight: 800; color: #3B2B1A; }
.chip-title-light { color: #F2F1FA; }
.chip-sub { display: block; font-size: 13.5px; color: #8A7554; font-weight: 500; }
.chip-sub-light { color: #A5A0CC; }
.arrow-green { color: #567F4B; }
.arrow-teal { color: #4CAF87; }

/* ============ DIVIDER ============ */
.divider-wrap { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 36px; box-sizing: border-box; }
.divider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 4px;
  border-radius: 99px;
  overflow: hidden;
}
.d-green { background: #567F4B; }
.d-gold { background: #C9A15E; }
.d-blue { background: #4B7BE5; }
.d-purple { background: #6A5AE0; }

/* ============ PRINCIPLES ============ */
.principles {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 76px 36px 92px;
  box-sizing: border-box;
}
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.principle {
  background: #FFFFFF;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 20px;
  padding: 28px 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.principle:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -20px rgba(23, 24, 28, 0.25); }
.principle-green:hover { border-color: #567F4B; }
.principle-blue:hover { border-color: #4B7BE5; }
.principle-purple:hover { border-color: #6A5AE0; }
.principle-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.tile { width: 13px; height: 13px; border-radius: 4px; }
.tile-green { background: #567F4B; }
.tile-blue { background: #4B7BE5; }
.tile-purple { background: #6A5AE0; }
.principle-num { font-size: 12px; font-weight: 800; color: #B4B6BC; letter-spacing: 0.08em; }
.principle h3 { margin: 0; font-size: 17.5px; font-weight: 800; letter-spacing: -0.01em; }
.principle p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.55; color: #5A5D66; }

/* ============ PRODUCTS ============ */
.products {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 36px 56px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.section-head h2 { margin: 0; font-size: clamp(30px, 3.2vw, 44px); font-weight: 800; letter-spacing: -0.035em; }

.product {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 470px;
  position: relative;
}
.product-nomademy { background: #F7F1E4; border: 1px solid #E7DDC6; }
.product-meselem { background: #2B2653; border: 1px solid #3D3675; }
.product-index { position: absolute; top: 26px; right: 32px; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; }
.product-index-nomademy { color: #C4AE85; }
.product-index-meselem { color: #5A5492; }
.product-copy { padding: 58px 28px 58px 58px; display: flex; flex-direction: column; }
.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow-green { color: #567F4B; }
.eyebrow-blue { color: #8FA8F0; }
.product-title-nomademy, .product-title-meselem {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
.product-title-nomademy { color: #3B2B1A; }
.product-title-meselem { color: #F2F1FA; }
.product-sub { margin: 18px 0 0; font-size: 16.5px; line-height: 1.6; max-width: 44ch; text-wrap: pretty; }
.product-sub-nomademy { color: #5C4A35; }
.product-sub-meselem { color: #BCB8DF; }
.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}
.feature-list-nomademy { color: #3B2B1A; }
.feature-list-meselem { color: #E4E1F5; }
.feature-list li { display: flex; gap: 11px; align-items: baseline; }
.feature-list strong { font-weight: 700; }
.feature-list-meselem strong { color: #F2F1FA; }
.bullet { width: 7px; height: 7px; border-radius: 2px; flex: none; }
.bullet-green { background: #567F4B; }
.bullet-teal { background: #4CAF87; }
.bullet-skyblue { background: #5B8DEF; }
.bullet-violet { background: #8B7BE8; }
.product-cta-row { margin-top: auto; padding-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, gap .2s ease;
}
.btn-arrow { font-size: 17px; line-height: 1; }
.btn-nomademy { background: #3B2B1A; color: #F7F1E4; }
.btn-nomademy:hover { background: #54402A; color: #F7F1E4; transform: translateY(-2px); gap: 16px; }
.btn-meselem { background: #F2F1FA; color: #2B2653; }
.btn-meselem:hover { background: #DDD9F2; color: #2B2653; transform: translateY(-2px); gap: 16px; }

.product-visual {
  position: relative;
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual-nomademy { background: radial-gradient(circle at 50% 45%, #FDF9EF 0%, #F7F1E4 75%); }
.product-visual-meselem { background: radial-gradient(circle at 50% 45%, #332D63 0%, #2B2653 75%); }
.visual-stack { position: relative; width: 100%; max-width: 380px; }

/* Nomademy visual */
.card-daily {
  background: #FFFDF7;
  border: 1.5px solid #E7DDC6;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px -18px rgba(90, 70, 40, 0.35);
  animation: floaty 6s ease-in-out infinite;
}
.card-daily-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.card-daily-label { font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #8A7554; }
.card-daily-due { font-size: 11.5px; font-weight: 700; color: #567F4B; background: #E8F0DE; padding: 4px 10px; border-radius: 99px; }
.card-daily-q { margin: 0; font-size: 16px; font-weight: 700; color: #3B2B1A; line-height: 1.4; }
.card-daily-btns { margin-top: 18px; display: flex; gap: 8px; }
.rate-btn {
  flex: 1;
  height: 38px;
  border-radius: 10px;
  background: #F2EBDA;
  border: 1px solid #E7DDC6;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #8A7554;
}
.rate-btn-good { background: #567F4B; border-color: #567F4B; color: #FFF; }
.float-badge {
  position: absolute;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}
.float-badge-match {
  top: -34px; right: -18px;
  background: #3B2B1A;
  color: #F7F1E4;
  box-shadow: 0 12px 26px -12px rgba(40, 28, 12, 0.5);
  animation: floaty2 5s ease-in-out .6s infinite;
}
.mascot {
  position: absolute;
  bottom: -36px; left: -22px;
  width: 96px; height: 96px;
  object-fit: cover;
  object-position: left;
  border-radius: 20px;
  border: 1.5px solid #E7DDC6;
  image-rendering: pixelated;
  box-shadow: 0 14px 30px -14px rgba(90, 70, 40, 0.4);
  background: #F7F2E8;
  animation: floaty 7s ease-in-out 1s infinite;
}

/* Meselem visual */
.card-week {
  background: #37316B;
  border: 1.5px solid #46408A;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px -18px rgba(15, 10, 50, 0.6);
  animation: floaty 6.4s ease-in-out infinite;
}
.card-week-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.card-week-label { font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #A5A0CC; }
.card-week-status { font-size: 11.5px; font-weight: 700; color: #4CAF87; background: rgba(76, 175, 135, 0.15); padding: 4px 10px; border-radius: 99px; }
.habit-rows { display: flex; flex-direction: column; gap: 13px; }
.habit-row { display: flex; align-items: center; gap: 12px; }
.habit-name { font-size: 13.5px; font-weight: 700; color: #F2F1FA; width: 88px; }
.ticks { display: flex; gap: 6px; }
.tick { width: 16px; height: 16px; border-radius: 50%; }
.tick-teal { background: #4CAF87; }
.tick-blue { background: #5B8DEF; }
.tick-violet { background: #8B7BE8; }
.tick-empty { border: 1.5px dashed #6660A0; box-sizing: border-box; }
.t1 { animation: tickPop .4s ease 1.2s both; }
.t2 { animation: tickPop .4s ease 1.35s both; }
.t3 { animation: tickPop .4s ease 1.5s both; }
.t4 { animation: tickPop .4s ease 1.65s both; }
.t5 { animation: tickPop .4s ease 1.8s both; }
.t6 { animation: tickPop .4s ease 1.95s both; }
.t7 { animation: tickPop .4s ease 2.1s both; }
.t8 { animation: tickPop .4s ease 2.25s both; }
.t9 { animation: tickPop .4s ease 2.4s both; }
.float-badge-mentor {
  top: -34px; right: -16px;
  background: #F2F1FA;
  color: #2B2653;
  box-shadow: 0 12px 26px -12px rgba(10, 6, 40, 0.6);
  animation: floaty2 5.4s ease-in-out .5s infinite;
}
.float-badge-admin {
  bottom: -30px; left: -18px;
  background: #221D45;
  border: 1px solid #3D3675;
  color: #F2F1FA;
  box-shadow: 0 12px 26px -12px rgba(10, 6, 40, 0.6);
  animation: floaty 6.8s ease-in-out 1s infinite;
}

/* ============ TEAM ============ */
.team {
  background: #F4F1E9;
  border-top: 1px solid rgba(23, 24, 28, 0.06);
  border-bottom: 1px solid rgba(23, 24, 28, 0.06);
}
.team-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 36px;
  box-sizing: border-box;
}
.team-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card {
  background: #FFFFFF;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .22s cubic-bezier(.2,.6,.2,1), box-shadow .22s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -22px rgba(23, 24, 28, 0.28); }
.team-id { display: flex; align-items: center; gap: 20px; }
.team-photo {
  width: 92px; height: 92px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}
.team-photo-placeholder {
  display: grid;
  place-items: center;
  background: #EEEAE0;
  border: 1.5px dashed #C9C3B4;
  color: #9A9483;
  font-size: 12px;
  font-weight: 700;
  box-sizing: border-box;
}
.team-id h3 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.team-role { margin: 4px 0 0; font-size: 14px; font-weight: 700; }
.team-role-green { color: #567F4B; }
.team-role-purple { color: #6A5AE0; }
.team-bio { margin: 0; font-size: 15px; line-height: 1.6; color: #5A5D66; }
.team-linkedin { font-size: 14px; font-weight: 700; color: #4B7BE5; margin-top: auto; }
.team-linkedin:hover { color: #2E5BC4; }

/* ============ CONTACT ============ */
.contact {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 88px 36px;
  box-sizing: border-box;
}
.contact-card {
  background: #17181C;
  border-radius: 28px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.deco { position: absolute; }
.deco-1 { top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: #6A5AE0; opacity: .22; }
.deco-2 { bottom: -70px; right: 130px; width: 150px; height: 150px; border-radius: 50%; background: #567F4B; opacity: .22; }
.deco-3 { top: 44px; right: 240px; width: 64px; height: 64px; border-radius: 20px; background: #C9A15E; opacity: .25; transform: rotate(12deg); }
.deco-4 { bottom: 40px; right: 340px; width: 22px; height: 22px; border-radius: 50%; background: #4B7BE5; opacity: .3; }
.contact-content { position: relative; }
.contact-eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8A8D94;
}
.contact-mail {
  display: inline-block;
  font-size: clamp(30px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FCFBF8;
  line-height: 1.05;
  border-bottom: 3px solid transparent;
  transition: border-color .25s ease;
}
.contact-mail:hover { color: #FCFBF8; border-bottom-color: #C9A15E; }
.contact-sub { margin: 22px 0 0; font-size: 16px; color: #B8BAC0; max-width: 46ch; }

/* ============ LEGAL PAGES ============ */
.legal {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 36px 96px;
  box-sizing: border-box;
}
.legal h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.legal-meta {
  margin: 14px 0 36px;
  font-size: 13.5px;
  font-weight: 600;
  color: #83868D;
}
.legal h2 {
  margin: 40px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.legal p, .legal li {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4A4D55;
}
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: #4B7BE5; font-weight: 600; }
.legal a:hover { color: #2E5BC4; }
.legal strong { color: #17181C; font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid rgba(23, 24, 28, 0.07); margin-top: auto; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 36px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #83868D;
}
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-links { display: flex; gap: 26px; font-weight: 600; }
.footer-links a { color: #83868D; }
.footer-links a:hover { color: #17181C; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .principles-grid { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .product-copy { padding: 44px 32px 40px; }
  .product-visual { padding: 56px 40px 64px; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 56px 36px; }
}

@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 18px; }
  .hero-inner, .principles, .products, .team-inner, .contact, .divider-wrap { padding-left: 20px; padding-right: 20px; }
  .hero-inner { padding-top: 72px; padding-bottom: 64px; }
  .orbs { display: none; }
  .footer-inner { padding: 24px 20px; }
  .product-copy { padding: 36px 24px 32px; }
  .product-visual { padding: 48px 28px 56px; }
  .float-badge-match, .float-badge-mentor { right: 0; }
  .mascot { left: -8px; }
  .float-badge-admin { left: -8px; }
}
