@font-face {
  font-family: "Poppins";
  src: url("poppins-semibold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  color-scheme: light;
  --navy: #10284a;
  --navy-soft: #38506e;
  --muted: #6e8199;
  --teal: #109fa8;
  --teal-dark: #087f8c;
  --teal-soft: #e7f7f8;
  --blue: #2d76c6;
  --blue-soft: #eaf3ff;
  --canvas: #f6f9fd;
  --surface: #ffffff;
  --surface-soft: #f9fbfe;
  --border: #d9e4ef;
  --border-strong: #c9d8e7;
  --success: #2ea973;
  --warning: #e9a129;
  --shadow: 0 32px 80px rgba(37, 79, 117, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-synthesis: none;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--canvas);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font-family: inherit;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.shell {
  width: min(90vw, 1760px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 96px;
  border-bottom: 1px solid rgba(184, 203, 221, 0.72);
  background: rgba(247, 250, 254, 0.88);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(18, 76, 110, 0.1));
}

.site-header .brand img.brand-wordmark {
  width: 210px;
  height: auto;
  filter: none;
  mix-blend-mode: multiply;
  transform: translateY(5px);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 650;
  letter-spacing: 0.015em;
}

@media (min-width: 1121px) {
  .site-header,
  .header-inner {
    min-height: 126px;
  }

  .site-header .brand {
    gap: 20px;
  }

  .site-header .brand img.brand-mark {
    width: 81px;
    height: 81px;
  }

  .site-header .brand img.brand-wordmark {
    width: 340px;
    height: auto;
  }

  .hero,
  .hero-layout {
    min-height: calc(100vh - 126px);
  }
}

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

.site-header nav a {
  position: relative;
  color: var(--navy-soft);
  font-size: 1.56rem;
  font-weight: 720;
  text-decoration: none;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.header-action {
  position: relative;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  padding-inline: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(42, 81, 116, 0.08);
  font-size: 1rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease,
    background 160ms ease;
}

.header-action::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 3px;
  content: "";
}

.header-action-turnus {
  border-color: rgba(16, 159, 168, 0.24);
  background: linear-gradient(135deg, rgba(231, 247, 248, 0.96), rgba(255, 255, 255, 0.92));
}

.header-action-turnus::before {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(16, 159, 168, 0.1);
}

.header-action-school {
  border-color: rgba(45, 118, 198, 0.22);
  background: linear-gradient(135deg, rgba(234, 243, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.header-action-school::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(45, 118, 198, 0.1);
}

.header-action:hover {
  transform: translateY(-2px);
  border-color: #9cb7cc;
  box-shadow: 0 16px 34px rgba(42, 81, 116, 0.13);
}

.header-action svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(115deg, rgba(239, 247, 255, 0.96), rgba(250, 252, 255, 0.98) 48%, #f7fbfc);
}

.page-grid,
.method-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.64;
  background-image:
    linear-gradient(rgba(33, 88, 132, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 88, 132, 0.052) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 88%, transparent);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.hero-orb-top {
  width: min(31vw, 620px);
  aspect-ratio: 1;
  top: -12%;
  right: -5%;
  background: rgba(132, 224, 225, 0.2);
}

.hero-orb-bottom {
  width: min(25vw, 500px);
  aspect-ratio: 1;
  bottom: -20%;
  left: 24%;
  background: rgba(116, 172, 238, 0.14);
}

.hero-layout {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(570px, 0.92fr) minmax(720px, 1.24fr);
  align-items: center;
  gap: clamp(60px, 6vw, 126px);
  padding-block: clamp(50px, 6.5vh, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 159, 168, 0.1);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.75rem, 4.55vw, 5.8rem);
  line-height: 0.99;
  letter-spacing: -0.064em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--teal);
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--navy-soft);
  font-size: clamp(1rem, 1.12vw, 1.22rem);
  line-height: 1.68;
}

.hero-actions,
.product-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-inline: 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 13px 26px rgba(8, 127, 140, 0.2);
}

.button-primary:hover {
  box-shadow: 0 17px 30px rgba(8, 127, 140, 0.25);
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: #a7bfd3;
  box-shadow: 0 10px 24px rgba(31, 75, 112, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 29px 0 0;
  padding: 0;
  color: var(--navy-soft);
  font-size: 0.75rem;
  font-weight: 690;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #259567;
  background: #e9f8ef;
  font-size: 0.7rem;
}

.portal-preview {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow), 0 9px 28px rgba(37, 79, 117, 0.08);
  backdrop-filter: blur(20px);
}

.portal-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 13px;
  min-height: 53px;
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--border);
}

.portal-title,
.workspace-identity,
.product-name-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.portal-title img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.portal-title span,
.workspace-identity > span:last-child,
.product-name-row > span:last-child {
  display: grid;
}

.portal-title small,
.workspace-identity small,
.product-name-row small,
.next-product-copy small {
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 700;
}

.portal-title strong {
  margin-top: 2px;
  font-size: 0.72rem;
}

.portal-context,
.status-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding-inline: 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--navy-soft);
  font-size: 0.58rem;
  font-weight: 750;
}

.status-badge {
  gap: 7px;
  border-color: transparent;
  color: #258158;
  background: #eaf7ef;
}

.status-badge i,
.product-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #33b879;
  box-shadow: 0 0 0 4px rgba(51, 184, 121, 0.11);
}

.portal-body {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 478px;
}

.portal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 12px 0 2px;
  border-right: 1px solid var(--border);
}

.portal-nav-label {
  margin: 1px 8px 4px;
  color: #9aa9b8;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-nav-item {
  position: relative;
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  padding-inline: 8px;
  border-radius: 7px;
  color: var(--navy-soft);
  font-size: 0.52rem;
  font-weight: 720;
}

.portal-nav-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.portal-nav-item.active {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.portal-nav-item > i {
  width: 5px;
  height: 5px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--success);
}

.portal-nav-item.muted-item,
.portal-nav-item.subtle {
  color: #8494a6;
}

.portal-sidebar-rule {
  height: 1px;
  margin: 9px 6px;
  background: var(--border);
}

.portal-sidebar-spacer {
  flex: 1;
}

.portal-user {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 7px;
  border-top: 1px solid var(--border);
  color: var(--navy-soft);
  font-size: 0.49rem;
}

.portal-user i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 0.43rem;
  font-style: normal;
  font-weight: 800;
}

.portal-content {
  min-width: 0;
  padding: 20px 2px 0 18px;
}

.portal-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.portal-heading > div {
  display: grid;
}

.portal-heading span,
.portal-date {
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 650;
}

.portal-heading strong {
  margin-top: 3px;
  font-size: 0.9rem;
}

.workspace-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.workspace-turnus {
  margin-top: 13px;
  padding: 13px;
  box-shadow: 0 10px 24px rgba(45, 84, 119, 0.055);
}

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

.workspace-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.workspace-icon svg,
.next-product-icon svg,
.principle-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.workspace-identity strong {
  margin-top: 1px;
  font-size: 0.71rem;
}

.workspace-link {
  color: var(--teal-dark);
  font-size: 0.53rem;
  font-weight: 780;
}

.workspace-link b {
  margin-left: 5px;
}

.workspace-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 11px;
}

.workspace-metrics > span {
  display: grid;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdff;
}

.workspace-metrics small,
.workspace-metrics i {
  color: var(--muted);
  font-size: 0.43rem;
  font-style: normal;
  font-weight: 680;
}

.workspace-metrics strong {
  margin-block: 3px 1px;
  font-size: 0.94rem;
}

.workspace-metrics i {
  color: #3a9c70;
}

.workspace-metrics .warning-text {
  color: var(--warning);
}

.workspace-metrics .blue-text {
  color: var(--blue);
}

.workspace-schedule {
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.schedule-head,
.schedule-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(7, minmax(34px, 0.7fr));
  align-items: center;
  gap: 4px;
  padding: 6px 7px;
}

.schedule-head {
  color: var(--muted);
  background: #f6f9fd;
  font-size: 0.38rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-row + .schedule-row {
  border-top: 1px solid #edf2f7;
}

.schedule-row > span:not(.employee) {
  display: grid;
  min-height: 21px;
  place-items: center;
  border-radius: 5px;
  font-size: 0.36rem;
  font-weight: 750;
}

.employee {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.42rem;
}

.employee i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #2675bc;
  background: #e6f2ff;
  font-size: 0.34rem;
  font-style: normal;
}

.schedule-row .day {
  color: #247956;
  background: #e3f4eb;
}

.schedule-row .evening {
  color: #2469a8;
  background: #e3f0fe;
}

.schedule-row .night {
  color: #5d4ca6;
  background: #ece8fb;
}

.schedule-row .weekend {
  color: #9b6a17;
  background: #fff0d5;
}

.schedule-row .off {
  color: #91a0b2;
  background: #f0f3f7;
}

.workspace-secondary-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9px;
  margin-top: 9px;
}

.workspace-school,
.workspace-insight {
  min-height: 73px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.school-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.workspace-school > span:last-child,
.workspace-insight > span:last-child {
  display: grid;
}

.workspace-school small,
.workspace-insight small {
  color: var(--muted);
  font-size: 0.43rem;
  font-weight: 700;
}

.workspace-school strong,
.workspace-insight strong {
  margin-top: 2px;
  font-size: 0.58rem;
}

.workspace-school em {
  width: max-content;
  margin-top: 4px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #7b6a1e;
  background: #fff5cf;
  font-size: 0.37rem;
  font-style: normal;
  font-weight: 750;
}

.workspace-insight {
  background: linear-gradient(135deg, #f7fcfc, #f6f9ff);
}

.insight-icon {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 0.7rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  right: -34px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 218px;
  padding: 12px 14px;
  border: 1px solid #cce5d7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 36px rgba(39, 91, 117, 0.14);
}

.floating-note > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-note div {
  display: grid;
}

.floating-note strong {
  font-size: 0.58rem;
}

.floating-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.42rem;
}

.signal-strip {
  border-block: 1px solid var(--border);
  background: #fff;
}

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

.signal-grid > span {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 24px 38px 24px 0;
}

.signal-grid > span + span {
  padding-left: 38px;
  border-left: 1px solid var(--border);
}

.signal-grid i {
  position: absolute;
  top: 21px;
  right: 22px;
  color: #c4d0dc;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 780;
}

.signal-grid b {
  font-size: 0.9rem;
}

.signal-grid small {
  max-width: 370px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.55;
}

.section {
  padding-block: clamp(100px, 10vw, 170px);
}

.section-heading h2,
.method-intro h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 3.75vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.section-kicker {
  margin-bottom: 18px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  align-items: end;
  gap: 90px;
}

.split-heading > p,
.centered-heading > p:last-child {
  margin: 0 0 7px;
  color: var(--navy-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.product-showcase {
  margin-top: 68px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(470px, 0.77fr) minmax(650px, 1.23fr);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(35, 78, 116, 0.1);
}

.product-copy {
  padding: clamp(48px, 5vw, 84px);
}

.product-status {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  gap: 8px;
  padding-inline: 11px;
  border-radius: 999px;
  color: #27835a;
  background: #eaf7ef;
  font-size: 0.61rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.065em;
}

.product-name-row {
  margin-top: 31px;
}

.product-name-row img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.product-name-row small {
  font-size: 0.68rem;
}

.product-name-row strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.product-copy h3 {
  max-width: 620px;
  margin: 33px 0 0;
  font-size: clamp(2rem, 2.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.048em;
}

.product-copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--navy-soft);
  font-size: 0.91rem;
  line-height: 1.7;
}

.product-copy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--navy-soft);
  font-size: 0.76rem;
  font-weight: 680;
  list-style: none;
}

.product-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-copy li span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #259567;
  background: #e9f8ef;
  font-size: 0.66rem;
}

.text-link {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  margin-left: 5px;
}

.product-visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  padding: clamp(55px, 6vw, 100px) 0 clamp(55px, 6vw, 100px) clamp(45px, 5vw, 80px);
  background:
    radial-gradient(circle at 84% 18%, rgba(122, 214, 218, 0.32), transparent 35%),
    linear-gradient(145deg, #edf7fb, #edf4ff 58%, #f7fbfd);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(33, 88, 132, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 88, 132, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
}

.visual-window {
  position: relative;
  width: min(100%, 880px);
  margin-right: -9%;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px 0 0 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 78, 116, 0.16);
}

.visual-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 52px;
  align-items: center;
  gap: 16px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--border);
  background: #f9fbfd;
}

.visual-window-bar > span {
  display: flex;
  gap: 5px;
}

.visual-window-bar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3dce5;
}

.visual-window-bar b {
  font-size: 0.65rem;
}

.visual-window-bar em {
  justify-self: end;
  padding: 6px 9px;
  border-radius: 7px;
  color: #27835a;
  background: #eaf7ef;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 760;
}

.visual-body {
  padding: 20px;
}

.visual-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visual-summary > span {
  display: grid;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfdff;
}

.visual-summary small {
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 680;
}

.visual-summary strong {
  margin-top: 5px;
  font-size: 1.2rem;
}

.visual-message {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 13px;
  border: 1px solid #f0d9aa;
  border-radius: 10px;
  background: #fffaf0;
}

.visual-message > i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: #9f6a14;
  background: #ffe9ba;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.visual-message > span {
  display: grid;
}

.visual-message strong {
  font-size: 0.58rem;
}

.visual-message small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.46rem;
}

.visual-message b {
  margin-left: auto;
  color: #946313;
  font-size: 0.5rem;
}

.visual-grid {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.visual-grid > div {
  display: grid;
  grid-template-columns: 1.5fr repeat(7, 1fr);
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
}

.visual-grid > div + div {
  border-top: 1px solid #edf2f7;
}

.visual-grid-head {
  color: var(--muted);
  background: #f6f9fd;
  font-size: 0.45rem;
  font-weight: 800;
}

.visual-grid > div:not(.visual-grid-head) span {
  font-size: 0.5rem;
  font-weight: 680;
}

.visual-grid i {
  height: 25px;
  border-radius: 5px;
  background: #f0f3f7;
}

.visual-grid i.g {
  background: #e3f4eb;
}

.visual-grid i.b {
  background: #e3f0fe;
}

.visual-grid i.p {
  background: #ece8fb;
}

.visual-grid i.y {
  background: #fff0d5;
}

.next-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.next-product-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.next-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(34, 76, 113, 0.11);
}

.school-card {
  background:
    radial-gradient(circle at 87% 18%, rgba(102, 168, 235, 0.19), transparent 28%),
    #fff;
}

.future-card {
  background:
    radial-gradient(circle at 87% 18%, rgba(100, 210, 206, 0.18), transparent 28%),
    #fff;
}

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

.next-product-top i {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.future-card .next-product-top i {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.next-product-top b {
  color: #c6d1dc;
  font-size: 0.7rem;
}

.next-product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 33px;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-soft);
}

.next-product-icon svg {
  width: 28px;
  height: 28px;
}

.plus-icon {
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 2rem;
  font-weight: 300;
}

.next-product-copy {
  display: grid;
  margin-top: 24px;
}

.next-product-copy strong {
  margin-top: 4px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.next-product-copy p {
  max-width: 500px;
  margin: 11px 0 0;
  color: var(--navy-soft);
  font-size: 0.78rem;
  line-height: 1.58;
}

.card-link {
  margin-top: auto;
  padding-top: 25px;
  color: var(--teal-dark);
  font-size: 0.69rem;
  font-weight: 750;
}

.card-link b {
  margin-left: 5px;
}

.method-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #eef5fb;
}

.method-grid-bg {
  z-index: -1;
  opacity: 0.46;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(650px, 1.22fr);
  gap: clamp(80px, 9vw, 170px);
}

.method-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.method-intro > p:not(.section-kicker) {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--navy-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.method-quote {
  display: flex;
  gap: 17px;
  margin-top: 44px;
  padding: 24px 25px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.method-quote > span {
  color: var(--teal);
  font-family: inherit;
  font-size: 2.6rem;
  line-height: 0.8;
}

.method-quote p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 0.83rem;
  font-weight: 620;
  line-height: 1.6;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--border-strong);
}

.method-steps li:last-child {
  border-bottom: 1px solid var(--border-strong);
}

.method-steps > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
}

.method-steps small {
  color: var(--teal-dark);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.method-steps h3 {
  margin: 6px 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.method-steps p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--navy-soft);
  font-size: 0.82rem;
  line-height: 1.62;
}

.principles-section {
  background: #fff;
}

.centered-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 680px;
  margin: 25px auto 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 67px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  overflow: hidden;
}

.principles-grid article {
  position: relative;
  min-height: 360px;
  padding: 42px;
  background: #fff;
}

.principles-grid article + article {
  border-left: 1px solid var(--border);
}

.principle-number {
  position: absolute;
  top: 31px;
  right: 32px;
  color: #c8d3dd;
  font-size: 0.66rem;
  font-weight: 800;
}

.principle-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.principle-icon svg {
  width: 28px;
  height: 28px;
}

.principles-grid article:nth-child(2) .principle-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.principles-grid article:nth-child(3) .principle-icon {
  color: #8a661b;
  background: #fff4d9;
}

.principles-grid h3 {
  margin: 76px 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.principles-grid p {
  margin: 14px 0 0;
  color: var(--navy-soft);
  font-size: 0.82rem;
  line-height: 1.68;
}

.cta-section {
  padding: 0 0 clamp(90px, 9vw, 150px);
  background: #fff;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 4vw, 70px);
  min-height: 330px;
  padding: clamp(48px, 5vw, 82px);
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(119, 218, 218, 0.28), transparent 28%),
    linear-gradient(135deg, #10284a, #14395a 58%, #0c6070);
  box-shadow: 0 30px 70px rgba(16, 40, 74, 0.18);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-mark {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.09);
}

.cta-mark img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

.cta-copy .section-kicker {
  color: #71d6d7;
}

.cta-copy h2 {
  max-width: 860px;
}

.cta-copy > p:last-child {
  max-width: 800px;
  margin: 20px 0 0;
  color: #c9d8e6;
  font-size: 0.83rem;
  line-height: 1.65;
}

.cta-actions {
  display: grid;
  justify-items: center;
  gap: 15px;
}

.button-light {
  min-width: 174px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.16);
}

.button-light span {
  margin-left: 5px;
}

.cta-actions > a:last-child {
  color: #b9cfdf;
  font-size: 0.68rem;
  font-weight: 650;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--border);
  background: #f8fbfe;
}

.footer-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-inner > p {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 620;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.footer-links a {
  color: var(--navy-soft);
  font-size: 0.69rem;
  font-weight: 680;
  text-decoration: none;
}

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

@media (min-width: 2200px) {
  .shell {
    width: min(88vw, 2200px);
  }

  .hero-layout {
    grid-template-columns: minmax(760px, 0.92fr) minmax(950px, 1.2fr);
    gap: clamp(120px, 8vw, 220px);
  }

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

  .hero h1 {
    font-size: clamp(5.8rem, 4.4vw, 7rem);
  }

  .portal-body {
    min-height: 570px;
  }

  .portal-sidebar {
    padding-top: 26px;
  }

  .portal-content {
    padding: 28px 8px 8px 26px;
  }

  .featured-product {
    grid-template-columns: minmax(620px, 0.78fr) minmax(850px, 1.22fr);
  }
}

@media (min-width: 3200px) {
  .shell {
    width: min(84vw, 2700px);
  }

  .site-header,
  .header-inner {
    min-height: 126px;
  }

  .hero,
  .hero-layout {
    min-height: calc(100vh - 126px);
  }

  .hero-layout {
    grid-template-columns: minmax(940px, 0.9fr) minmax(1180px, 1.2fr);
  }

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

  .hero h1 {
    font-size: 8rem;
  }

  .hero-lead {
    max-width: 900px;
    font-size: 1.4rem;
  }

  .portal-preview {
    transform: scale(1.08);
    transform-origin: center;
  }

  .featured-product {
    grid-template-columns: 860px minmax(0, 1fr);
  }

  .product-copy h3 {
    font-size: 3.7rem;
  }
}

@media (max-width: 1500px) {
  .site-header nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }
}

@media (max-width: 1320px) {
  .hero-layout {
    grid-template-columns: minmax(480px, 0.82fr) minmax(650px, 1.18fr);
    gap: 55px;
  }

  .floating-note {
    right: -14px;
  }

  .featured-product {
    grid-template-columns: minmax(440px, 0.9fr) minmax(570px, 1.1fr);
  }

  .product-copy {
    padding: 48px;
  }
}

@media (max-width: 1120px) {
  .site-header nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 70px 90px;
  }

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

  .portal-preview {
    width: min(100%, 850px);
  }

  .floating-note {
    right: -24px;
  }

  .split-heading,
  .method-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .method-intro {
    position: static;
  }

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

  .product-visual {
    min-height: 600px;
  }

  .cta-card {
    grid-template-columns: auto 1fr;
  }

  .cta-actions {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

  .site-header,
  .header-inner {
    min-height: 78px;
  }

  .header-inner {
    gap: 10px;
  }

  .site-header .brand {
    gap: 9px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .site-header .brand img.brand-wordmark {
    width: 160px;
    height: auto;
  }

  .header-actions {
    gap: 6px;
  }

  .header-action {
    min-height: 46px;
    padding-inline: 12px;
    border-radius: 13px;
    font-size: 0.72rem;
  }

  .header-action::before,
  .header-action svg {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 58px 68px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 12vw, 4.5rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .hero-points {
    display: grid;
  }

  .portal-preview {
    display: none;
  }

  .signal-grid,
  .next-products,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid > span {
    min-height: 112px;
    padding: 24px 10px;
  }

  .signal-grid > span + span {
    padding-left: 10px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading h2,
  .method-intro h2,
  .cta-copy h2 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .split-heading {
    gap: 26px;
  }

  .product-showcase {
    margin-top: 48px;
  }

  .featured-product {
    border-radius: 21px;
  }

  .product-copy {
    padding: 32px 25px;
  }

  .product-copy h3 {
    font-size: 2rem;
  }

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

  .text-link {
    text-align: center;
  }

  .product-visual {
    min-height: 340px;
    padding: 42px 0 42px 22px;
  }

  .visual-window {
    width: 720px;
    margin-left: 420px;
    transform: scale(0.61);
    transform-origin: left center;
  }

  .next-product-card {
    min-height: 290px;
    padding: 28px;
  }

  .method-steps li {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .principles-grid {
    border-radius: 20px;
  }

  .principles-grid article {
    min-height: 300px;
    padding: 32px;
  }

  .principles-grid article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .principles-grid h3 {
    margin-top: 48px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 38px 28px;
    border-radius: 22px;
  }

  .cta-mark {
    width: 100px;
    height: 100px;
  }

  .cta-mark img {
    width: 86px;
    height: 86px;
  }

  .cta-actions {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    min-height: 110px;
  }

  .footer-inner > p {
    display: none;
  }

  .footer-links a:not(:last-child) {
    display: none;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 24px, 620px);
  }

  .site-header,
  .header-inner {
    min-height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 12px;
  }

  .brand small {
    display: none;
  }

  .site-header .brand {
    gap: 9px;
  }

  .site-header .brand img.brand-mark {
    display: none;
  }

  .site-header .brand img.brand-wordmark {
    width: 150px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    justify-self: stretch;
    width: 100%;
  }

  .header-action {
    min-height: 44px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.65rem);
  }

  .button {
    width: 100%;
  }

  .visual-window {
    margin-left: 500px;
  }

  .method-quote {
    padding: 20px;
  }

  .footer-brand strong {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
