@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --bg: #f7fbfa;
  --surface: #ffffff;
  --text: #15211f;
  --muted: #687673;
  --line: #dbe8e5;
  --teal: #0f9f8f;
  --teal-dark: #087b70;
  --teal-soft: #e8f7f4;
  --teal-pale: #f2fbf9;
  --shadow: 0 24px 60px rgba(28, 87, 77, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 232, 229, 0.75);
  background: rgba(247, 251, 250, 0.82);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(145deg, #13ad9b, #087b70);
  box-shadow: 0 8px 22px rgba(15, 159, 143, 0.25);
}

.brand-text {
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #53615f;
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  margin-left: 4px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(15, 159, 143, 0.24);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary,
.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
}

.btn-ghost {
  min-height: 42px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,159,143,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,159,143,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 76%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.glow-one {
  width: 360px;
  height: 360px;
  left: -160px;
  top: 10px;
  background: rgba(57, 196, 177, .12);
}

.glow-two {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 40px;
  background: rgba(99, 214, 198, .16);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #cfe5e1;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15,159,143,.10);
}

h1,h2,h3 {
  font-family: "Manrope", sans-serif;
  margin: 0;
}

.hero h1 {
  margin-top: 24px;
  max-width: 680px;
  font-size: clamp(48px, 6.3vw, 78px);
  line-height: .99;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--teal);
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: #7a8986;
  font-size: 13px;
  font-weight: 600;
}

.dot-sep {
  color: #b5c7c3;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-card {
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(186, 220, 213, .9);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.main-card {
  padding: 20px;
  transform: rotate(1.4deg);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 4px 18px;
}

.mini-label {
  color: #92a19f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.visual-title {
  margin-top: 4px;
  font-family: "Manrope";
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.status-pill,
.coming-badge,
.future-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-pill {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.mini-dashboard {
  min-height: 360px;
  display: grid;
  grid-template-columns: 54px 1fr;
  overflow: hidden;
  border: 1px solid #e2ece9;
  border-radius: 20px;
  background: #f9fcfb;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  background: #102724;
}

.side-logo {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--teal);
  font-family: "Manrope";
  font-size: 13px;
  font-weight: 800;
}

.side-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.10);
}

.side-dot.active {
  background: rgba(67, 201, 183, .88);
}

.dash-content {
  padding: 22px;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-head > div {
  display: grid;
  gap: 8px;
}

.skeleton {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dce9e6;
}

.skeleton.wide { width: 126px; height: 12px; }
.skeleton.small { width: 78px; }
.skeleton.mid { width: 58px; }
.skeleton.tiny { width: 36px; height: 6px; }

.mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #cceae4, #9bd8cd);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.stat-card {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e1ece9;
  border-radius: 14px;
  background: #fff;
}

.stat-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 10px;
  font-weight: 800;
}

.chart-card {
  min-height: 160px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #e1ece9;
  border-radius: 14px;
  background: #fff;
}

.bars {
  height: 122px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding-top: 12px;
  border-bottom: 1px solid #edf3f1;
}

.bars i {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(to top, #0d8e80, #56c6b6);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #cfe6e1;
  border-radius: 17px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(31, 92, 82, .14);
}

.school-card {
  right: -22px;
  bottom: 22px;
  width: 325px;
  padding: 14px;
  transform: rotate(-3deg);
}

.school-card small {
  display: block;
  margin-bottom: 2px;
  color: #84918f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.school-card strong {
  display: block;
  font-family: "Manrope";
  font-size: 13px;
}

.school-card .coming-badge {
  margin-left: auto;
}

.product-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(145deg, #12a994, #07776c);
  font-family: "Manrope";
  font-weight: 800;
}

.product-icon.large {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.product-icon.soft {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.coming-badge {
  color: #087b70;
  background: #dff5f0;
}

.future-badge {
  color: #71807d;
  background: #eef3f2;
}

.section {
  padding: 94px 0;
}

.products-section {
  background: #fff;
  border-top: 1px solid #edf3f1;
  border-bottom: 1px solid #edf3f1;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 38px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.section-kicker.light {
  color: #a6e9de;
}

.section-head h2,
.center-head h2,
.about-grid h2,
.cta-box h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.section-head p,
.center-head p,
.about-copy p,
.cta-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.section-head p {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.product-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.product-card.featured {
  background:
    radial-gradient(circle at 95% 10%, rgba(51, 193, 173, .14), transparent 32%),
    linear-gradient(180deg, #fbfffe 0%, #f6fcfa 100%);
}

.muted-card {
  background: #f8fbfa;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card h3 {
  margin-top: 28px;
  font-size: 27px;
  letter-spacing: -.04em;
}

.product-card p {
  max-width: 640px;
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.feature-tags span {
  padding: 7px 10px;
  border: 1px solid #dbe9e6;
  border-radius: 999px;
  color: #5f6e6b;
  background: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 700;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  color: #6c7976;
  font-size: 12px;
  font-weight: 700;
}

.arrow-circle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: 17px;
}

.soft-arrow {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.why-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(61, 201, 180, .08), transparent 28%),
    var(--bg);
}

.center-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.center-head p {
  max-width: 640px;
  margin: 16px auto 0;
}

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

.value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.74);
}

.value-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 800;
}

.value-card h3 {
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-section {
  background: #102724;
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}

.about-copy p {
  color: #b8cbc7;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy strong {
  color: #fff;
}

.cta-section {
  padding: 44px 0 94px;
  background: #102724;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(127, 217, 202, .18);
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, #0b796e, #0c5c55);
}

.cta-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  background: rgba(103, 229, 209, .16);
}

.cta-box > * {
  position: relative;
}

.cta-box h2 {
  max-width: 760px;
}

.cta-box p {
  max-width: 680px;
  margin: 15px 0 0;
  color: #c3dfda;
}

.btn-light {
  color: #0c6e64;
  background: #fff;
  white-space: nowrap;
}

.site-footer {
  padding: 35px 0;
  border-top: 1px solid #dce8e6;
  background: #fff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: #8b9896;
  font-size: 12px;
}

.footer-meta {
  display: flex;
  gap: 8px;
  color: #8b9896;
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .site-header .nav-wrap {
    min-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 58px 0 68px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 390px;
  }

  .main-card {
    padding: 12px;
  }

  .mini-dashboard {
    min-height: 300px;
    grid-template-columns: 42px 1fr;
  }

  .dash-content {
    padding: 14px;
  }

  .stats-grid {
    gap: 7px;
  }

  .stat-card {
    min-height: 80px;
    padding: 10px;
  }

  .chart-card {
    min-height: 130px;
  }

  .bars {
    height: 94px;
  }

  .school-card {
    right: 0;
    bottom: -12px;
    width: min(92%, 330px);
  }

  .section {
    padding: 70px 0;
  }

  .product-card {
    min-height: 360px;
    padding: 22px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 28px;
  }

  .cta-section {
    padding-bottom: 70px;
  }

  .cta-box {
    padding: 30px 24px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    flex-direction: column;
  }
}


/* Uploaded G-Saldio brand assets */
.brand-with-logo {
  gap: 9px;
}

.brand-logo-symbol {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.side-logo {
  overflow: hidden;
  background: #ffffff;
}

.side-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-icon {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.image-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.school-logo-horizontal {
  width: min(100%, 510px);
  height: auto;
  display: block;
  margin-top: 24px;
  object-fit: contain;
  object-position: left center;
}

.school-heading-fallback {
  margin-top: 18px !important;
}

@media (max-width: 640px) {
  .brand-logo-symbol {
    width: 36px;
    height: 36px;
  }

  .school-logo-horizontal {
    width: 100%;
  }
}


/* Final G-Saldio logo update */
.brand-logo-symbol { border-radius: 11px; object-fit: cover; }
.image-icon img, .side-logo img { object-fit: cover; }
