*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1A4A3A;
  --primary-light: #2D6A50;
  --primary-dark: #0F3028;
  --bg: #FAF7F2;
  --card: #FFFDFC;
  --accent: #C08497;
  --gold: #E6C79C;
  --sage: #B6C8A9;
  --text: #1F2937;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --divider: #E5E7EB;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
  background: rgba(250,247,242,0.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--primary); text-decoration: none; letter-spacing: -.3px;
}
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 800;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: color .2s; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); border-bottom-color: var(--primary); }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-ghost {
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 16px; border-radius: 10px;
  border: 1px solid var(--divider); transition: all .2s;
}
.nav-ghost:hover { border-color: var(--primary); color: var(--primary); }
.nav-cta {
  background: var(--primary); color: white; padding: 9px 22px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--primary-dark); }

/* PAGE HERO */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(160deg, #FAF7F2 0%, #EDF4EC 55%, #FAF7F2 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,74,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800; line-height: 1.1; color: var(--text);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p {
  font-size: clamp(15px, 1.8vw, 18px); color: var(--text-mid);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
  position: relative; z-index: 1;
}

/* SHARED */
section { padding: 88px 24px; }
.container { max-width: 1120px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 18px; }
.section-sub { font-size: 17px; color: var(--text-mid); max-width: 560px; line-height: 1.75; }

/* BUTTONS */
.btn-primary {
  background: var(--primary); color: white;
  padding: 15px 34px; border-radius: 14px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all .2s; box-shadow: 0 4px 20px rgba(26,74,58,0.28);
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
  background: white; color: var(--primary);
  border: 2px solid var(--primary);
  padding: 13px 34px; border-radius: 14px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { background: var(--primary); color: white; }

/* QUOTE */
.quote-section { background: linear-gradient(135deg, var(--primary) 0%, #0F3028 100%); padding: 88px 24px; }
.quote-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 80px; color: rgba(255,255,255,0.18); line-height: 1; font-family: Georgia, serif; }
.quote-text { font-family: 'Poppins', sans-serif; font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; color: white; line-height: 1.55; margin: -20px 0 32px; font-style: italic; }
.quote-author { color: rgba(255,255,255,0.65); font-size: 15px; font-weight: 500; }

/* TEAM */
.team-ceo-wrap { margin-top: 60px; margin-bottom: 48px; }
.team-card {
  background: white; border-radius: 22px; padding: 32px 28px;
  border: 1px solid var(--divider); transition: transform .22s, box-shadow .22s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(26,74,58,0.10); }
.team-card.ceo {
  display: flex; align-items: flex-start; gap: 36px;
  background: linear-gradient(135deg, #F0FDF9 0%, #ECFDF5 100%);
  border-color: rgba(26,74,58,0.2);
  max-width: 700px; margin: 0 auto;
}
.team-divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.division-col { display: flex; flex-direction: column; gap: 18px; }
.division-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; border-radius: 16px; border: 1px solid var(--divider);
}
.division-header.biz { background: linear-gradient(135deg,#FFF7ED,#FFFBF0); border-color: rgba(230,199,156,0.4); }
.division-header.tech { background: linear-gradient(135deg,#EFF6FF,#F0F9FF); border-color: rgba(14,165,233,0.2); }
.division-header-icon { font-size: 24px; }
.division-header-text h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.division-header-text p { font-size: 12px; color: var(--text-mid); font-weight: 500; }
.division-members { display: flex; flex-direction: column; gap: 14px; }
.avatar {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 20px; color: white; flex-shrink: 0;
}
.avatar.lg { width: 76px; height: 76px; border-radius: 20px; font-size: 28px; }
.av-teal   { background: linear-gradient(135deg,#1A4A3A,#C9A84C); }
.av-green  { background: linear-gradient(135deg,#059669,#34D399); }
.av-blue   { background: linear-gradient(135deg,#0EA5E9,#38BDF8); }
.av-slate  { background: linear-gradient(135deg,#475569,#94A3B8); }
.av-orange { background: linear-gradient(135deg,#F97316,#FB923C); }
.av-gold   { background: linear-gradient(135deg,#D97706,#F59E0B); }
.av-indigo { background: linear-gradient(135deg,#4F46E5,#818CF8); }
.team-info { flex: 1; }
.team-name { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.team-card.ceo .team-name { font-size: 22px; }
.team-role { font-size: 12px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.team-card.ceo .team-role { font-size: 13px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.team-tag { background: rgba(26,74,58,0.08); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: .4px; padding: 3px 10px; border-radius: 100px; }
.team-bio { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.team-card.ceo .team-bio { font-size: 14px; line-height: 1.7; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.value-card { padding: 32px 26px; border-radius: 22px; background: white; border: 1px solid var(--divider); }
.value-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.value-card h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.service-card {
  background: white; border-radius: 22px; padding: 36px 28px;
  border: 1px solid var(--divider); transition: transform .22s, box-shadow .22s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,74,58,0.11); }
.service-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.service-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.service-tag { display: inline-block; margin-top: 16px; background: rgba(26,74,58,0.08); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 4px 12px; border-radius: 100px; }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.project-card {
  border-radius: 24px; padding: 40px 36px;
  border: 1px solid var(--divider); position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,74,58,0.12); }
.project-card.featured {
  background: linear-gradient(135deg, #F0FDF9 0%, #ECFDF5 100%);
  border-color: rgba(26,74,58,0.22); grid-column: 1 / -1;
}
.project-card.standard { background: white; }
.project-card.coming { background: var(--bg); }
.project-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 22px;
}
.project-status.live { background: rgba(26,74,58,0.1); color: var(--primary); }
.project-status.soon { background: rgba(230,199,156,0.25); color: #92650a; }
.project-status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.project-card h3 { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.project-card.standard h3, .project-card.coming h3 { font-size: 20px; }
.project-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.project-features { display: flex; flex-wrap: wrap; gap: 8px; }
.project-feature-pill { background: rgba(26,74,58,0.08); color: var(--primary); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; }
.project-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; color: var(--primary); font-size: 14px; font-weight: 600; text-decoration: none; transition: gap .2s; }
.project-link:hover { gap: 10px; }

/* JOIN FORM */
.join-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.join-form-wrap { background: white; border-radius: 26px; padding: 44px; border: 1px solid var(--divider); box-shadow: 0 6px 32px rgba(26,74,58,0.07); }
.join-form-wrap h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.join-form-wrap > p { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--divider);
  font-size: 14px; font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: white; }
.form-group textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px; background: var(--primary); color: white;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s;
}
.form-submit:hover { background: var(--primary-dark); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .check { font-size: 52px; margin-bottom: 14px; }
.form-success h4 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.form-success p { color: var(--text-mid); font-size: 14px; line-height: 1.65; }
.join-info h3 { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800; color: var(--text); margin-bottom: 18px; line-height: 1.2; }
.join-info > p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.perks { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.perk { display: flex; align-items: flex-start; gap: 16px; }
.perk-icon { width: 44px; height: 44px; border-radius: 14px; background: rgba(26,74,58,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.perk-text h5 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.perk-text p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* STATS BAR */
.stats-bar { background: white; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: 40px 24px; }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-mid); font-weight: 500; }

/* FOOTER */
footer { background: var(--text); color: rgba(255,255,255,0.45); padding: 52px 24px; text-align: center; }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: white; margin-bottom: 8px; letter-spacing: -.3px; }
.footer-tagline { font-size: 14px; margin-bottom: 28px; }
.footer-links { display: flex; gap: 28px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 12px; }

/* ANNOUNCEMENT CARDS */
.announcements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.announcement-featured {
  grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--divider); background: white;
  transition: box-shadow .22s;
}
.announcement-featured:hover { box-shadow: 0 16px 48px rgba(26,74,58,0.12); }
.ann-featured-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #0F3028 100%);
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.ann-featured-visual h2 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 12px; }
.ann-featured-visual p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; }
.ann-featured-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.ann-category {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.ann-category.product { background: rgba(26,74,58,0.1); color: var(--primary); }
.ann-category.company { background: rgba(79,70,229,0.1); color: #4F46E5; }
.ann-category.team    { background: rgba(217,119,6,0.1); color: #D97706; }
.ann-category.tech    { background: rgba(14,165,233,0.1); color: #0EA5E9; }
.ann-date { font-size: 12px; color: var(--text-light); font-weight: 500; margin-bottom: 12px; }
.ann-featured-body h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.2; }
.ann-featured-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.ann-card {
  background: white; border-radius: 22px; padding: 32px 28px;
  border: 1px solid var(--divider); display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.ann-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(26,74,58,0.10); }
.ann-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.ann-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.ann-read-more { display: inline-flex; align-items: center; gap: 5px; margin-top: 20px; color: var(--primary); font-size: 13px; font-weight: 600; text-decoration: none; transition: gap .2s; }
.ann-read-more:hover { gap: 9px; }
.ann-empty { grid-column: 1 / -1; text-align: center; padding: 64px 24px; color: var(--text-light); }
.ann-empty-icon { font-size: 48px; margin-bottom: 16px; }
.ann-empty h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }
.ann-empty p { font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .announcements-grid { grid-template-columns: 1fr 1fr; }
  .announcement-featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .ann-featured-visual { padding: 36px 32px; }
  .ann-featured-body { padding: 36px 32px; }
}
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: auto; }
  .team-divisions { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .team-card.ceo { flex-direction: column; gap: 22px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .announcements-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid, .values-grid { grid-template-columns: 1fr; }
}

/* ─── DARK MODE ─── */
body.dark {
  --bg: #0F172A;
  --card: #1E293B;
  --text: #F1F5F9;
  --text-mid: #94A3B8;
  --text-light: #64748B;
  --divider: #1E293B;
  background: var(--bg);
  color: var(--text);
}
body.dark nav {
  background: rgba(15,23,42,0.96);
  border-bottom-color: #1E293B;
}
body.dark .nav-ghost { border-color: #334155; color: #94A3B8; }
body.dark .nav-ghost:hover { border-color: var(--primary-light); color: var(--primary-light); }
body.dark .stats-bar { background: #0F172A; border-color: #1E293B; }
body.dark .about-card,
body.dark .home-about-card { background: #1E293B; }
body.dark .spotlight-card { background: linear-gradient(135deg,#0D2B1F,#081A14); border-color: rgba(26,74,58,0.3); }
body.dark .spotlight-stat { background: #1E293B; border-color: #334155; }
body.dark .team-card { background: #1E293B; border-color: #334155; }
body.dark .team-card.ceo { background: linear-gradient(135deg,#0D2B1F,#081A14); border-color: rgba(26,74,58,0.3); }
body.dark .service-card { background: #1E293B; border-color: #334155; }
body.dark .value-card { background: #1E293B; border-color: #334155; }
body.dark .project-card.featured { background: linear-gradient(135deg,#0D2B1F,#081A14); }
body.dark .project-card.standard { background: #1E293B; border-color: #334155; }
body.dark .project-card.coming { background: #1E293B; border-color: #334155; }
body.dark .ann-card { background: #1E293B; border-color: #334155; }
body.dark .announcement-featured { background: #1E293B; border-color: #334155; }
body.dark .ann-featured-body { background: #1E293B; }
body.dark .join-form-wrap { background: #1E293B; border-color: #334155; }
body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea { background: #0F172A; border-color: #334155; color: var(--text); }
body.dark .form-group input:focus,
body.dark .form-group select,
body.dark .form-group textarea:focus { border-color: var(--primary-light); }
body.dark .cta-box { background: #1E293B; border-color: #334155; }
body.dark .home-about { background: #0F172A; }
body.dark .about-story { background: #0F172A; }
body.dark .services-section { background: #0F172A; }
body.dark .values-section { background: #0F172A; }
body.dark .latest-ann { background: #0F172A; }
body.dark .latest-ann-card { background: #1E293B; border-color: #334155; }
body.dark .cta-section { background: #0F172A; }
body.dark .cta-box { background: #1E293B; }
body.dark .division-header.biz { background: #1E293B; border-color: #334155; }
body.dark .division-header.tech { background: #1E293B; border-color: #334155; }
body.dark .page-hero { background: linear-gradient(160deg,#0F172A 0%,#0D2B1F 55%,#0F172A 100%); }
body.dark .hero { background: linear-gradient(160deg,#0F172A 0%,#0D2B1F 55%,#0F172A 100%); }
body.dark .hero-badge { background: #1E293B; border-color: #334155; }
body.dark .hero-badge { color: var(--primary-light); }
body.dark .post-modal { background: #1E293B; }
body.dark .post-modal-close { background: #0F172A; border-color: #334155; color: #94A3B8; }
body.dark .post-modal h2, body.dark .post-modal-body h3 { color: var(--text); }
body.dark .btn-outline { background: transparent; color: var(--primary-light); border-color: var(--primary-light); }
body.dark .btn-outline:hover { background: var(--primary); color: white; }
body.dark .about-story-text p, body.dark .home-about-text p { color: #94A3B8; }
body.dark .team-bio { color: #94A3B8; }
body.dark .section-sub { color: #94A3B8; }
body.dark footer { background: #020617; }
body.dark .app-badge { background: #1E293B; color: white; border: 1px solid #334155; }
body.dark .app-badge:hover { background: #334155; opacity: 1; }

/* DARK TOGGLE BUTTON */
.dark-toggle {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--divider); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 17px; transition: all .2s;
  flex-shrink: 0;
}
.dark-toggle:hover { border-color: var(--primary); }

/* ─── SCROLL REVEAL ─── */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.sr.sr-on { opacity: 1; transform: none; }

/* ─── NAV SCROLLED GLASS ─── */
nav.nav-scrolled {
  background: rgba(250,247,242,0.88);
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  border-bottom-color: rgba(26,74,58,0.12);
}
body.dark nav.nav-scrolled {
  background: rgba(15,23,42,0.88);
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}

/* ─── FLOATING ORB KEYFRAMES ─── */
@keyframes orb-a { 0%,100%{transform:translate(0,0)} 35%{transform:translate(28px,-22px)} 70%{transform:translate(-14px,12px)} }
@keyframes orb-b { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-22px,-30px)} }
@keyframes orb-c { 0%,100%{transform:translate(0,0)} 40%{transform:translate(16px,20px)} 80%{transform:translate(-10px,-12px)} }
.hero-orb { position:absolute; border-radius:50%; pointer-events:none; will-change:transform; }
.hero-orb-a { width:560px;height:560px; top:-170px;right:-180px; background:radial-gradient(circle at 40% 40%,rgba(26,74,58,0.13),transparent 70%); animation:orb-a 14s ease-in-out infinite; }
.hero-orb-b { width:380px;height:380px; bottom:-100px;left:-90px; background:radial-gradient(circle,rgba(182,200,169,0.2),transparent 70%); animation:orb-b 10s ease-in-out infinite; }
.hero-orb-c { width:260px;height:260px; top:38%;left:6%; background:radial-gradient(circle,rgba(201,168,76,0.11),transparent 70%); animation:orb-c 17s ease-in-out infinite; }

/* ─── HERO DOT GRID ─── */
.hero-grid {
  position:absolute; inset:0; pointer-events:none; overflow:hidden;
  background-image: radial-gradient(circle, rgba(26,74,58,0.15) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}
body.dark .hero-grid { background-image: radial-gradient(circle, rgba(45,106,84,0.22) 1.5px, transparent 1.5px); }

/* ─── BUTTON GLOW ─── */
.btn-primary {
  position: relative;
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1) !important;
}
.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 36px rgba(26,74,58,0.38) !important;
}

/* ─── HERO BADGE PULSE ─── */
@keyframes badge-ring { 0%,100%{box-shadow:0 2px 16px rgba(26,74,58,0.10)} 50%{box-shadow:0 2px 28px rgba(26,74,58,0.22)} }
.hero-badge { animation: badge-ring 3.5s ease-in-out infinite; }

/* ─── CARD BORDER GLOW ON HOVER ─── */
.value-card:hover, .service-card:hover, .feature-card:hover, .market-card:hover {
  border-color: rgba(26,74,58,0.28) !important;
  box-shadow: 0 16px 48px rgba(26,74,58,0.12) !important;
}
