:root {
  --ink: #0b2430;
  --muted: #55717a;
  --teal-950: #06363a;
  --teal-900: #07535a;
  --teal-700: #087f83;
  --teal-500: #10a9a4;
  --teal-300: #75d8cf;
  --teal-100: #dcf7f2;
  --teal-50: #f1fbf9;
  --orange: #ff7a1a;
  --orange-dark: #d95a00;
  --white: #ffffff;
  --line: #d9ece9;
  --shadow: 0 20px 55px rgba(6, 72, 76, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f8fcfb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
section:not(.hero):not(.page-hero) { content-visibility: auto; contain-intrinsic-size: 1px 720px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(105deg, #06363a, #07535a 68%, #08666b);
  border-bottom: 2px solid rgba(255, 122, 26, .72);
  box-shadow: 0 10px 34px rgba(3, 36, 40, .18);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 210px; }
.brand-logo { width: 58px; height: 58px; flex: 0 0 auto; display: block; object-fit: cover; border-radius: 50%; background: white; box-shadow: 0 7px 20px rgba(6, 54, 58, .16); }
.brand-mark { width: 42px; height: 42px; position: relative; display: inline-grid; place-items: center; border-radius: 13px; background: linear-gradient(145deg, var(--teal-500), var(--teal-900)); box-shadow: 0 10px 24px rgba(8, 127, 131, .25); }
.brand-mark::before { content: ""; width: 22px; height: 17px; border-left: 3px solid white; border-bottom: 3px solid white; transform: skewY(-18deg); opacity: .98; }
.brand-mark::after { content: "↗"; position: absolute; right: 5px; top: 1px; color: var(--orange); font-weight: 900; font-size: 19px; }
.brand-name { font-weight: 850; font-size: 1.27rem; letter-spacing: -.045em; color: var(--teal-950); }
.brand-name em { color: var(--teal-500); font-style: normal; }
.site-header .brand-name { color: white; text-shadow: 0 2px 14px rgba(0,0,0,.18); }
.site-header .brand-name em { color: #ff9b55; }
.nav-links { display: flex; align-items: center; gap: 5px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a { display: block; padding: 11px 14px; color: #315963; font-size: .93rem; font-weight: 680; border-radius: 11px; transition: .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal-900); background: var(--teal-100); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 12px; color: var(--teal-950); font-size: 1.35rem; }
.site-header .nav-links a { color: #d7f1ed; }
.site-header .nav-links a:hover, .site-header .nav-links a[aria-current="page"] { color: white; background: rgba(255,255,255,.12); box-shadow: inset 0 -2px 0 var(--orange); }
.site-header .menu-toggle { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.submenu { position: absolute; top: calc(100% + 8px); left: 0; z-index: 120; min-width: 190px; display: grid; gap: 3px; visibility: hidden; opacity: 0; transform: translateY(-6px); margin: 0; padding: 9px; list-style: none; background: var(--teal-950); border: 1px solid rgba(117,216,207,.3); border-radius: 14px; box-shadow: 0 18px 45px rgba(3,36,40,.34); transition: .2s ease; }
.nav-dropdown:hover .submenu, .nav-dropdown:focus-within .submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.site-header .submenu a { padding: 10px 12px; color: #cde9e5; font-size: .84rem; }
.site-header .submenu a:hover { color: white; background: rgba(255,255,255,.1); box-shadow: none; }

.ticker-shell { background: var(--teal-950); color: white; border-bottom: 3px solid var(--orange); }
.ticker { display: flex; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--teal-500) transparent; }
.ticker-item { min-width: 192px; flex: 1; padding: 12px 18px; color: white; border: 0; border-right: 1px solid rgba(255,255,255,.11); background: transparent; text-align: left; display: grid; grid-template-columns: 1fr auto; gap: 1px 12px; transition: background .2s ease; }
.ticker-item:hover { background: rgba(255,255,255,.08); }
.ticker-name { font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-300); }
.ticker-value { font-weight: 780; font-size: .9rem; }
.ticker-change { grid-row: span 2; align-self: center; color: #67e6a8; font-size: .8rem; font-weight: 750; }
.ticker-change.down { color: #ff9e87; }

.hero { position: relative; overflow: hidden; padding: 86px 0 72px; background: linear-gradient(135deg, #f6fffd 0%, #e3f8f4 48%, #fdfaf5 100%); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -290px; top: -320px; border-radius: 50%; border: 90px solid rgba(16,169,164,.09); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 6px 11px; color: var(--teal-900); background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,122,26,.12); }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.045em; }
h1 { max-width: 780px; font-size: clamp(2.6rem, 5.3vw, 5.2rem); font-weight: 880; color: var(--teal-950); }
h1 .accent { color: var(--teal-500); }
.hero-copy { max-width: 630px; margin: 24px 0 30px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.18rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 780; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 14px 28px rgba(255,122,26,.25); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { border-color: #b7dcd7; color: var(--teal-900); background: rgba(255,255,255,.75); }
.microcopy { margin-top: 18px; color: #668188; font-size: .76rem; }

.dashboard { position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.77); border-radius: 28px; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.dashboard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.dashboard-label { color: var(--muted); font-size: .78rem; }
.dashboard-number { font-size: clamp(1.65rem, 4vw, 2.45rem); font-weight: 850; color: var(--teal-950); letter-spacing: -.055em; }
.status-pill { padding: 6px 10px; border-radius: 999px; background: #dff8eb; color: #12734d; font-size: .74rem; font-weight: 800; }
.chart { height: 190px; position: relative; margin: 20px 0; border-radius: 16px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 46px, rgba(8,127,131,.10) 47px), repeating-linear-gradient(to right, transparent 0, transparent 70px, rgba(8,127,131,.08) 71px); overflow: hidden; }
.chart svg { width: 100%; height: 100%; }
.chart path.line { fill: none; stroke: var(--teal-500); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.chart path.area { fill: url(#areaGradient); }
.chart-dot { position: absolute; right: 8%; top: 25%; width: 11px; height: 11px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,122,26,.18); }
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-stat { padding: 12px; border-radius: 14px; background: var(--teal-50); }
.mini-stat strong { display: block; color: var(--teal-900); }
.mini-stat span { color: var(--muted); font-size: .7rem; }

.ad-slot { min-height: 68px; display: grid; place-items: center; margin: 18px auto; border: 1px dashed #9fc9c4; background: #f1f9f7; color: #6e8d93; border-radius: 14px; text-align: center; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.section { padding: 58px 0; }
.ad-slot + .section { padding-top: 42px; }
.section + .ad-slot { margin-top: 12px; }
.section.alt { background: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { max-width: 740px; color: var(--teal-950); font-size: clamp(2rem, 4vw, 3.45rem); }
.section-heading p { max-width: 530px; margin: 12px 0 0; color: var(--muted); }
.kicker { color: var(--orange-dark); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.institutional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.institutional-hero { padding-bottom: 88px; }
.home-page .institutional-hero { padding: 42px 0 34px; }
.home-page .institutional-hero .hero-grid { grid-template-columns: 1fr; gap: 0; }
.home-page .institutional-hero h1 { max-width: 940px; font-size: clamp(2.35rem, 4.4vw, 4.25rem); }
.home-page .institutional-hero .hero-copy { max-width: 1050px; margin: 16px 0 22px; font-size: clamp(.98rem, 1.4vw, 1.08rem); line-height: 1.68; }
.home-page .section { padding: 48px 0; }
.home-page .section-heading { margin-bottom: 28px; }
.home-page .ad-slot { min-height: 64px; margin: 16px auto; }
.home-page .site-footer { margin-top: 24px; }
.portal-visual { min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; padding: 32px; color: white; background: linear-gradient(150deg, var(--teal-950), var(--teal-700)); border: 1px solid rgba(117,216,207,.38); border-radius: 28px; box-shadow: var(--shadow); }
.portal-visual::before { content: ""; position: absolute; width: 350px; height: 350px; right: -150px; top: -160px; border: 60px solid rgba(117,216,207,.1); border-radius: 50%; }
.portal-visual-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; z-index: 1; }
.portal-visual-head span { color: #ffb47d; font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.portal-visual-head strong { font-size: .82rem; }
.portal-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 1; }
.portal-areas span { padding: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; font-weight: 800; }
.portal-line { height: 90px; display: flex; align-items: flex-end; gap: 10px; position: relative; z-index: 1; border-bottom: 2px solid rgba(255,255,255,.18); }
.portal-line span { flex: 1; background: linear-gradient(180deg, var(--orange), #ffb47d); border-radius: 8px 8px 0 0; }
.portal-line span:nth-child(1) { height: 28%; }.portal-line span:nth-child(2) { height: 44%; }.portal-line span:nth-child(3) { height: 38%; }.portal-line span:nth-child(4) { height: 68%; }.portal-line span:nth-child(5) { height: 86%; }
.portal-visual > p { margin: 20px 0 0; color: #c5e8e3; font-size: .88rem; }
.about-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.about-intro h2 { margin-top: 12px; color: var(--teal-950); font-size: clamp(2rem, 4vw, 3.5rem); }
.about-copy p { margin: 0 0 18px; color: var(--muted); font-size: 1.03rem; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card { padding: 26px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 34px rgba(6,72,76,.07); }
.audience-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; color: var(--orange); background: var(--teal-950); border-radius: 14px; font-size: 1.2rem; font-weight: 900; }
.audience-card h3 { color: var(--teal-950); font-size: 1.25rem; }
.audience-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.knowledge-grid article { padding: 28px; background: linear-gradient(155deg, var(--teal-950), var(--teal-900)); border: 1px solid rgba(117,216,207,.3); border-radius: 20px; }
.knowledge-grid article > span { color: var(--orange); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.knowledge-grid h3 { margin: 16px 0 9px; color: white; font-size: 1.2rem; }
.knowledge-grid p { margin: 0; color: #c5e8e3; font-size: .9rem; }
.institutional-commitment { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; padding: 52px; color: white; background: linear-gradient(140deg, var(--teal-950), var(--teal-700)); border-radius: 28px; }
.institutional-commitment h2 { margin-top: 12px; color: white; font-size: clamp(2rem, 4vw, 3.2rem); }
.institutional-commitment p { margin-top: 0; color: #c5e8e3; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.icon-box { width: 44px; height: 44px; display: grid; place-items: center; color: var(--orange-dark); background: #fff2e8; border-radius: 13px; font-size: 1.1rem; font-weight: 900; }
.feature h3 { margin: 2px 0 4px; font-size: 1rem; letter-spacing: -.02em; }
.feature p { margin: 0; color: var(--muted); font-size: .91rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); background: white; border-radius: var(--radius); box-shadow: 0 10px 34px rgba(6,72,76,.07); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-number { color: var(--teal-300); font-size: 3rem; font-weight: 900; line-height: 1; }
.card h3 { margin: 24px 0 11px; color: var(--teal-950); font-size: 1.35rem; }
.card p { color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--orange-dark); font-weight: 800; }
.card-featured { border-color: var(--teal-500); background: linear-gradient(180deg, #fff, var(--teal-50)); }
.tag { position: absolute; top: 18px; right: 18px; padding: 6px 9px; color: white; background: var(--teal-700); border-radius: 999px; font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.products-grid .card { min-height: 265px; display: flex; flex-direction: column; align-items: flex-start; }
.products-grid .card-link { margin-top: auto; }
.product-placeholder { width: 54px; height: 54px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--teal-700), var(--teal-500)); border-radius: 16px; font-weight: 900; }
.product-catalog { padding-top: 58px; }
.product-showcase { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.product-showcase.reverse { grid-template-columns: 1.12fr .88fr; }
.product-showcase.reverse .product-visual { order: 2; }
.product-copy h2 { margin: 10px 0 18px; color: var(--teal-950); font-size: clamp(2rem, 4vw, 3.35rem); }
.product-copy > p { margin: 0 0 18px; color: var(--muted); font-size: 1.02rem; }
.product-benefits { display: grid; gap: 8px; margin: 0 0 25px; padding: 0; list-style: none; }
.product-benefits li { color: #315963; }
.product-benefits li::before { content: "✓"; margin-right: 10px; color: var(--teal-500); font-weight: 900; }
.product-visual { min-height: 365px; display: grid; place-items: center; overflow: hidden; position: relative; padding: 34px; background: linear-gradient(145deg, var(--teal-950), var(--teal-700)); border: 1px solid rgba(117,216,207,.35); border-radius: 28px; box-shadow: var(--shadow); }
.product-visual::before { content: ""; position: absolute; width: 250px; height: 250px; right: -90px; top: -110px; border: 45px solid rgba(117,216,207,.12); border-radius: 50%; }
.book-cover-image { position: relative; z-index: 1; display: block; width: min(100%, 390px); height: auto; max-height: 540px; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 52px rgba(0,0,0,.34); }
.book-object { width: 225px; height: 302px; position: relative; transform: perspective(800px) rotateY(-12deg) rotateZ(-1deg); filter: drop-shadow(24px 24px 20px rgba(0,0,0,.28)); }
.book-object::after { content: ""; position: absolute; inset: 7px -12px 5px 100%; width: 17px; background: linear-gradient(90deg, #d7e5e3, white); transform: skewY(-24deg); transform-origin: left; }
.book-cover, .ebook-cover { height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 28px 22px; color: white; background: linear-gradient(155deg, #06363a, #07535a 58%, #ff7a1a 160%); border: 1px solid rgba(255,255,255,.22); border-radius: 4px 12px 12px 4px; }
.book-cover span, .ebook-cover span { color: #ffb47d; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.book-cover strong, .ebook-cover strong { font-size: 1.75rem; line-height: 1.02; letter-spacing: -.04em; }
.book-cover small, .ebook-cover small { color: var(--teal-300); line-height: 1.3; }
.course-scene { background: linear-gradient(145deg, #06363a, #0a6d70); }
.screen-object { width: min(100%, 360px); min-height: 235px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 14px; position: relative; padding: 28px; color: white; background: #082f33; border: 8px solid #d9ece9; border-bottom-width: 20px; border-radius: 18px; box-shadow: 0 24px 45px rgba(0,0,0,.3); text-align: center; }
.screen-object::after { content: ""; position: absolute; width: 100px; height: 12px; left: 50%; bottom: -37px; background: #c3d8d5; border-radius: 50%; transform: translateX(-50%); }
.screen-top { color: #ffb47d; font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.screen-object strong { font-size: 2rem; line-height: 1.05; }
.play-symbol { width: 44px; height: 44px; display: grid; place-items: center; padding-left: 3px; color: white; background: var(--orange); border-radius: 50%; box-shadow: 0 8px 20px rgba(255,122,26,.3); }
.screen-object small { color: var(--teal-300); }
.ebook-scene { background: linear-gradient(145deg, #07464b, #087f83); }
.tablet-object { width: 230px; height: 310px; padding: 12px; background: #062b2e; border: 3px solid #2b565a; border-radius: 22px; box-shadow: 22px 25px 35px rgba(0,0,0,.28); transform: rotate(3deg); }
.tablet-object .ebook-cover { border-radius: 12px; }
.mentor-scene { align-content: center; gap: 12px; color: white; text-align: center; }
.mentor-product-icon { width: 94px; height: 94px; display: grid; place-items: center; margin-bottom: 10px; color: var(--orange); background: rgba(255,255,255,.08); border: 1px solid rgba(255,180,125,.65); border-radius: 28px; font-size: 2.8rem; }
.mentor-scene > span { color: var(--teal-300); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mentor-scene > strong { max-width: 300px; font-size: 1.65rem; line-height: 1.15; }
.catalog-divider { padding: 56px 0 18px; text-align: center; }
.catalog-divider h2 { margin: 10px 0; color: var(--teal-950); font-size: clamp(2.3rem, 5vw, 4rem); }
.catalog-divider p { color: var(--muted); }
.mentoring-cards .card { color: white; background: linear-gradient(150deg, var(--teal-950), var(--teal-900)); border-color: rgba(117,216,207,.35); box-shadow: 0 16px 38px rgba(6,54,58,.18); }
.mentoring-cards .card:hover { border-color: var(--orange); box-shadow: 0 22px 55px rgba(6,54,58,.26); }
.mentoring-cards .card h3 { color: #ffb47d; font-size: 1.5rem; }
.mentoring-cards .card p { color: #c5e8e3; }
.mentoring-cards .card-link { color: white; }
.mentoring-cards .card-number { position: absolute; right: 22px; bottom: 18px; color: rgba(117,216,207,.14); font-size: 5rem; }
.mentor-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--orange); background: rgba(255,255,255,.09); border: 1px solid rgba(255,180,125,.55); border-radius: 17px; font-size: 1.65rem; font-weight: 900; box-shadow: inset 0 0 24px rgba(255,255,255,.04); }

.page-hero { padding: 36px 0 32px; background: linear-gradient(135deg, var(--teal-950), var(--teal-900)); color: white; }
.page-hero h1 { max-width: 900px; color: white; font-size: clamp(2rem, 3.8vw, 3.35rem); line-height: 1.08; }
.page-hero p { max-width: 760px; margin: 12px 0 0; color: #bfe5df; font-size: 1rem; line-height: 1.55; }
.page-hero + .ad-slot { min-height: 66px; margin-top: 14px; margin-bottom: 14px; }
.detail-card { display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; margin-bottom: 28px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 14px 45px rgba(6,72,76,.08); }
.detail-side { padding: 34px; color: white; background: linear-gradient(155deg, var(--teal-950), var(--teal-700)); }
.detail-side.orange { background: linear-gradient(155deg, var(--teal-950), var(--teal-700)); }
.detail-side h2 { margin: 20px 0; font-size: 2rem; }
.detail-side .mentor-icon { margin-bottom: 20px; }
.detail-body { padding: 34px; }
.detail-body h3 { margin: 20px 0 8px; font-size: 1rem; color: var(--teal-900); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; padding: 0; list-style: none; }
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--teal-500); font-weight: 900; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.risk-card { padding: 24px; border-top: 4px solid var(--orange); background: white; border-radius: 16px; box-shadow: 0 12px 30px rgba(6,72,76,.08); }
.risk-card h3 { margin-bottom: 9px; font-size: 1.1rem; }
.risk-card p { color: var(--muted); }
.cta-band { padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: linear-gradient(130deg, var(--teal-950), var(--teal-700)); border-radius: 26px; }
.cta-band h2 { max-width: 700px; font-size: clamp(1.8rem, 4vw, 3rem); }

.article-browser { padding: 24px 0 76px; }
.article-category-nav { position: sticky; top: 78px; z-index: 25; display: flex; gap: 9px; overflow-x: auto; margin-bottom: 44px; padding: 12px; background: rgba(244,251,250,.94); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 32px rgba(6,74,78,.08); backdrop-filter: blur(12px); scrollbar-width: thin; }
.article-filter { flex: 0 0 auto; padding: 10px 15px; color: var(--teal-800); background: white; border: 1px solid rgba(8,127,131,.2); border-radius: 999px; font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.article-filter:hover { color: white; background: var(--teal-700); border-color: var(--teal-700); }
.article-filter.active { color: white; background: var(--orange); border-color: var(--orange); box-shadow: 0 8px 18px rgba(255,122,26,.24); }
.article-list-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 28px; }
.article-list-head h2 { margin: 8px 0 0; color: var(--teal-950); font-size: clamp(2rem,4vw,3.1rem); }
.article-list-head p { max-width: 430px; margin: 0; color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 20px; align-items: stretch; }
.article-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); background: white; border-radius: 20px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.article-card:hover { border-color: rgba(8,127,131,.35); box-shadow: 0 16px 38px rgba(6,74,78,.12); transform: translateY(-3px); }
.article-cover { min-height: 150px; position: relative; padding: 22px; display: flex; align-items: flex-end; background: linear-gradient(140deg, var(--teal-950), var(--teal-500)); color: white; }
.article-card.featured .article-cover { min-height: 250px; }
.article-cover-label { position: absolute; align-self: flex-start; padding: 6px 10px; color: #073f43; background: #eafaf7; border-radius: 999px; font-size: .67rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.article-cover .line-motif { width: 100%; height: 80px; border-bottom: 4px solid var(--orange); transform: skewY(-8deg); opacity: .75; }
.article-body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.article-meta { color: var(--orange-dark); font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.article-body h2 { margin: 11px 0; font-size: 1.25rem; }
.article-body p { color: var(--muted); }
.article-status { margin-top: auto; padding-top: 12px; color: var(--teal-700); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.article-empty { padding: 40px; color: var(--muted); background: var(--teal-50); border: 1px dashed rgba(8,127,131,.35); border-radius: 18px; text-align: center; }

.contact-grid { width: min(calc(100% - 40px), 760px); display: block; }
.contact-panel { padding: 34px; color: white; background: var(--teal-950); border-radius: 24px; }
.contact-panel a { color: var(--teal-300); }
.form-card { padding: 34px; border: 1px solid var(--line); background: white; border-radius: 24px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-weight: 750; }
.field input, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfefd; border: 1px solid #bad8d4; border-radius: 11px; outline: none; transition: .2s; }
.field input:focus, .field textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(16,169,164,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; margin: 12px 0 0; font-weight: 700; }
.form-status.success { color: #14754e; }
.form-status.error { color: #b63b26; }

.privacy-copy { max-width: 900px; }
.privacy-copy h2 { margin: 38px 0 12px; font-size: 1.45rem; color: var(--teal-900); }
.privacy-copy p, .privacy-copy li { color: var(--muted); }
.privacy-copy ul { display: grid; gap: 9px; padding-left: 22px; }
.privacy-copy a:not(.btn) { color: var(--teal-700); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.privacy-intro { padding: 26px 28px; background: var(--teal-50); border-left: 4px solid var(--orange); border-radius: 0 18px 18px 0; }
.privacy-intro p:last-child { margin-bottom: 0; }
.privacy-table-wrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--line); border-radius: 16px; }
.privacy-table { width: 100%; min-width: 620px; border-collapse: collapse; background: white; }
.privacy-table th, .privacy-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.privacy-table th { color: white; background: var(--teal-900); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
.privacy-table tr:last-child td { border-bottom: 0; }
.privacy-contact-box { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding: 22px; color: white; background: linear-gradient(135deg, var(--teal-900), var(--teal-700)); border-radius: 18px; }
.privacy-contact-box span { color: #c5e8e3; }
.privacy-contact-box .btn { margin-left: auto; }
.site-footer { margin-top: 24px; padding: 48px 0 24px; color: #c3dfdc; background-color: #052e32; background-image: linear-gradient(rgba(3,30,33,.82), rgba(3,30,33,.9)), url("../images/footer-fintech-bg.webp"); background-position: center; background-size: cover; border-top: 1px solid rgba(255,122,26,.35); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.footer-legal-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; }
.footer-legal-grid h2 { color: white; font-size: 1rem; margin-bottom: 16px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-nav a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; color: #d3ebe7; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 11px; font-size: .84rem; }
.footer-nav a:hover { color: white; border-color: var(--orange); }
.footer-nav a::before { width: 22px; height: 22px; display: grid; place-items: center; color: var(--orange); font-size: .9rem; font-weight: 900; }
.footer-nav a:nth-child(1)::before { content: "⌂"; }.footer-nav a:nth-child(2)::before { content: "◫"; }.footer-nav a:nth-child(3)::before { content: "◎"; }.footer-nav a:nth-child(4)::before { content: "◈"; }.footer-nav a:nth-child(5)::before { content: "≡"; }.footer-nav a:nth-child(6)::before { content: "✉"; }
.company-info p { margin: 0 0 9px; color: #a8cfca; }
.company-info strong { color: white; }
.footer-contact-link { display: inline-flex; margin-top: 8px; color: #ffb47d; font-weight: 800; }
.footer-content-grid { display: grid; grid-template-columns: .85fr 1.1fr; gap: 70px; align-items: start; }
.footer-block-title { margin: 0 0 20px; color: #ffb47d; font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-navigation { display: grid; gap: 4px; }
.footer-navigation a { display: flex; align-items: center; gap: 12px; padding: 9px 0; color: #c4d9d6; font-size: .94rem; }
.footer-navigation a:hover { color: white; }
.footer-navigation .footer-nav-icon { width: 28px; height: 28px; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(255,122,26,.32); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.footer-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; }
.footer-social-grid a { display: flex; align-items: center; gap: 12px; color: #c4d9d6; }
.footer-social-grid a:hover { color: white; }
.social-brand-icon, .social-floating a { display: grid; place-items: center; color: #ffb47d; border: 1px solid rgba(255,180,125,.35); border-radius: 50%; font-weight: 900; }
.social-brand-icon { width: 42px; height: 42px; flex: 0 0 auto; font-size: .84rem; }
.footer-legal-line { margin-top: 26px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); color: #809f9b; font-size: .68rem; text-align: center; }
.footer-privacy-link { display: flex; align-items: center; gap: 16px; margin-top: 30px; padding: 16px 18px; color: white; background: rgba(8,127,131,.3); border: 1px solid rgba(255,122,26,.55); border-radius: 16px; transition: .2s ease; }
.footer-privacy-link:hover { color: white; background: rgba(8,127,131,.52); border-color: var(--orange); transform: translateY(-2px); }
.footer-privacy-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--orange); border-radius: 50%; font-size: 1.1rem; }
.footer-privacy-copy { display: grid; gap: 3px; }
.footer-privacy-copy strong { font-size: .95rem; }
.footer-privacy-copy small { color: #a8cfca; font-size: .76rem; }
.footer-privacy-arrow { margin-left: auto; color: #ffb47d; font-size: 1.25rem; }
.social-floating { position: fixed; left: 16px; top: 50%; z-index: 135; display: flex; flex-direction: column; gap: 8px; padding: 10px; background: rgba(5,46,50,.94); border: 1px solid rgba(255,122,26,.38); border-radius: 999px; box-shadow: 0 18px 45px rgba(3,36,40,.3); backdrop-filter: blur(12px); transform: translateY(-50%); }
.social-floating a { width: 42px; height: 42px; font-size: .82rem; transition: .2s ease; }
.social-floating a:hover { color: white; background: var(--orange); border-color: var(--orange); transform: scale(1.06); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 50px; }
.site-footer .brand-name { color: white; }
.site-footer h2 { color: white; font-size: 1rem; margin-bottom: 15px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: #8db7b3; font-size: .78rem; }

.modal { width: min(92vw, 500px); padding: 0; border: 0; border-radius: 22px; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.modal::backdrop { background: rgba(3,36,40,.7); backdrop-filter: blur(4px); }
.modal-content { padding: 30px; }
.modal-close { float: right; width: 38px; height: 38px; border: 0; color: var(--teal-900); background: var(--teal-100); border-radius: 10px; font-size: 1.2rem; }
.modal h2 { margin: 24px 0 8px; color: var(--teal-950); }
.modal-chart { height: 120px; margin: 20px 0; border-radius: 14px; background: linear-gradient(150deg, var(--teal-50), #fff2e8); position: relative; overflow: hidden; }
.modal-chart::after { content: ""; position: absolute; left: 8%; right: 8%; top: 54%; height: 4px; background: var(--teal-500); border-radius: 50%; transform: skewY(-9deg); box-shadow: 60px -20px 0 -1px var(--orange); }
.disclaimer { padding: 14px 16px; color: #5a7379; background: #eef7f5; border-radius: 12px; font-size: .75rem; }

/* Painel lateral de cotações */
.quotes-dock { position: relative; z-index: 140; }
.quotes-tab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 143;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 12px;
  color: var(--orange);
  background: linear-gradient(180deg, var(--teal-950), var(--teal-900));
  border: 1px solid rgba(255, 122, 26, .7);
  border-right: 0;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 14px 38px rgba(6, 54, 58, .28);
  transform: translateY(-50%);
  transition: right .32s ease, background .2s ease;
}
.quotes-tab:hover { background: var(--teal-950); }
.quotes-tab > span:last-child { writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
.quotes-tab-icon { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: rgba(255,255,255,.1); border-radius: 50%; font-size: 1.2rem; }
.quotes-overlay { position: fixed; inset: 0; z-index: 140; visibility: hidden; opacity: 0; background: rgba(3, 36, 40, .48); backdrop-filter: blur(3px); transition: opacity .28s ease, visibility .28s ease; }
.quotes-panel {
  position: fixed;
  z-index: 142;
  top: 96px;
  right: 20px;
  width: min(520px, calc(100vw - 72px));
  max-height: calc(100vh - 122px);
  overflow-y: auto;
  padding: 30px;
  color: white;
  background: linear-gradient(155deg, #06363a, #07535a 70%, #087f83);
  border: 1px solid rgba(117, 216, 207, .38);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(3, 36, 40, .45);
  visibility: hidden;
  opacity: 0;
  transform: translateX(calc(100% + 50px));
  transition: transform .32s ease, opacity .25s ease, visibility .32s ease;
}
.quotes-dock.open .quotes-overlay, .quotes-dock.open .quotes-panel { visibility: visible; opacity: 1; }
.quotes-dock.open .quotes-panel { transform: translateX(0); }
.quotes-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.15); }
.quotes-panel-head h2 { max-width: 330px; margin-top: 5px; color: white; font-size: clamp(1.65rem, 4vw, 2.25rem); }
.quotes-kicker { color: #ffb47d; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quotes-close { width: 46px; height: 46px; flex: 0 0 auto; border: 1px solid rgba(255,122,26,.6); color: var(--orange); background: rgba(255,255,255,.04); border-radius: 50%; font-size: 1.65rem; line-height: 1; }
.quotes-close:hover { background: rgba(255,122,26,.12); }
.quotes-table-head { display: grid; grid-template-columns: 1.25fr .75fr .62fr; gap: 12px; padding: 18px 12px 11px; color: var(--teal-300); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quotes-table-head span:not(:first-child) { text-align: right; }
.quotes-list { border-top: 1px solid rgba(255,255,255,.16); }
.quote-row { width: 100%; display: grid; grid-template-columns: 1.25fr .75fr .62fr; gap: 12px; align-items: center; padding: 15px 12px; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.13); text-align: left; }
.quote-row:hover { background: rgba(255,255,255,.06); }
.quote-identity { min-width: 0; display: flex; align-items: center; gap: 10px; }
.quote-identity strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .94rem; }
.quote-symbol { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: var(--teal-950); background: var(--teal-300); border-radius: 50%; font-size: .64rem; font-weight: 900; }
.quote-symbol-b3 { color: white; background: linear-gradient(145deg, #193c87, #2458c5); }
.quote-symbol-nasdaq { color: white; background: linear-gradient(145deg, #5b36c9, #8c61ee); }
.quote-symbol-sp500 { color: white; background: linear-gradient(145deg, #087f83, #10a9a4); }
.quote-symbol-bitcoin { color: white; background: linear-gradient(145deg, #e97809, #f8a51b); font-size: .95rem; }
.quote-symbol-dow { color: white; background: linear-gradient(145deg, #0086b8, #22b9dd); }
.quote-symbol-dollar { color: white; background: linear-gradient(145deg, #148b54, #32c275); font-size: .9rem; }
.quote-symbol-euro { color: white; background: linear-gradient(145deg, #155bc1, #287eea); font-size: .9rem; }
.quote-value, .quote-change { text-align: right; white-space: nowrap; font-size: .86rem; font-weight: 800; }
.quote-change { color: #67e6a8; }
.quote-change.down { color: #ff9e87; }
.quote-detail { grid-column: 1 / -1; display: none; padding: 3px 0 4px 44px; color: #bfe5df; font-size: .78rem; }
.quote-row[aria-expanded="true"] { background: rgba(255,255,255,.07); }
.quote-row[aria-expanded="true"] .quote-detail { display: block; }
.quotes-disclaimer { margin: 20px 0 0; padding: 13px 15px; color: #bfe5df; background: rgba(255,255,255,.07); border-radius: 13px; font-size: .72rem; }

@media (max-width: 920px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 76px 0 auto 0; display: none; padding: 16px 20px 24px; background: var(--teal-950); border-bottom: 2px solid var(--orange); box-shadow: 0 18px 30px rgba(6,72,76,.24); }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 13px 16px; }
  .nav-links > li { width: 100%; }
  .submenu { position: static; min-width: 0; display: grid; visibility: visible; opacity: 1; transform: none; margin: 2px 0 5px 18px; padding: 4px 8px; background: rgba(255,255,255,.05); border: 0; border-left: 2px solid var(--orange); border-radius: 0 10px 10px 0; box-shadow: none; }
  .site-header .submenu a { padding: 8px 12px; font-size: .8rem; }
  .hero-grid, .institutional-grid, .detail-card, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .dashboard { max-width: 650px; }
  .cards, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .article-card.featured { grid-column: 1 / -1; }
  .product-showcase, .product-showcase.reverse { grid-template-columns: 1fr; gap: 36px; }
  .product-showcase.reverse .product-visual { order: 0; }
  .about-intro, .institutional-commitment { grid-template-columns: 1fr; gap: 32px; }
  .audience-grid, .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-legal-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-content-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  body { padding-bottom: 78px; }
  .social-floating { left: 50%; top: auto; bottom: 12px; flex-direction: row; gap: 6px; padding: 8px 10px; transform: translateX(-50%); }
  .social-floating a { width: 40px; height: 40px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .brand { min-width: 0; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .brand-name { font-size: 1.08rem; }
  .nav-links { inset-block-start: 66px; }
  .ticker-item { min-width: 162px; padding: 10px 14px; }
  .hero { padding: 48px 0; }
  h1 { font-size: 2.65rem; }
  .dashboard-stats, .cards, .benefit-grid, .blog-grid, .check-list, .footer-grid { grid-template-columns: 1fr; }
  .blog-grid .article-card.featured { grid-column: auto; }
  .article-category-nav { top: 72px; margin-inline: -4px; border-radius: 14px; }
  .article-list-head { align-items: flex-start; flex-direction: column; gap: 14px; }
  .section { padding: 44px 0; }
  .ad-slot + .section { padding-top: 32px; }
  .section-heading { align-items: start; flex-direction: column; }
  .detail-side, .detail-body, .contact-panel, .form-card { padding: 25px; }
  .cta-band { padding: 30px 24px; align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .product-showcase { padding: 34px 0; }
  .product-visual { min-height: 320px; padding: 24px; }
  .catalog-divider { padding-top: 44px; }
  .portal-visual { min-height: 360px; padding: 24px; }
  .about-intro, .audience-grid, .knowledge-grid { grid-template-columns: 1fr; }
  .institutional-commitment { padding: 30px 24px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-content-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-social-grid { gap: 16px 20px; }
  .footer-legal-line { margin-top: 24px; }
  .privacy-contact-box { align-items: flex-start; flex-direction: column; }
  .privacy-contact-box .btn { margin-left: 0; }
  .social-floating { width: max-content; max-width: calc(100vw - 24px); }
  .social-floating a { width: 38px; height: 38px; }
  .home-page .institutional-hero { padding: 30px 0 26px; }
  .home-page .institutional-hero .hero-copy { margin: 16px 0 20px; }
  .home-page .section { padding: 36px 0; }
  .home-page .section-heading { margin-bottom: 22px; }
  .home-page .ad-slot { min-height: 60px; margin: 14px auto; }
  .page-hero { padding: 28px 0 25px; }
  .page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.55rem); }
  .page-hero p { margin-top: 10px; font-size: .95rem; }
  body.quotes-open { overflow: hidden; }
  .quotes-tab { min-height: 156px; padding: 15px 9px; border-radius: 17px 0 0 17px; }
  .quotes-tab-icon { width: 32px; height: 32px; }
  .quotes-panel { top: 76px; right: 10px; width: calc(100vw - 58px); max-height: calc(100vh - 96px); padding: 23px 18px; border-radius: 22px; }
  .quotes-panel-head { gap: 12px; }
  .quotes-close { width: 40px; height: 40px; }
  .quotes-table-head, .quote-row { grid-template-columns: 1.12fr .75fr; }
  .quotes-table-head span:last-child, .quote-change { display: none; }
  .quote-identity strong { font-size: .87rem; }
  .quote-value { font-size: .82rem; }
  .quote-detail { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.managed-section { background: linear-gradient(180deg, #f7faf9 0%, #eef5f3 100%); border-top: 1px solid rgba(7,83,90,.09); }
.managed-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.managed-card { position: relative; overflow: hidden; min-height: 260px; padding: 30px; background: #fff; border: 1px solid rgba(7,83,90,.12); border-radius: 20px; box-shadow: 0 16px 45px rgba(4,53,57,.08); transition: transform .22s ease, box-shadow .22s ease; }
.managed-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--teal-700), var(--orange)); }
.managed-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(4,53,57,.13); }
.managed-kicker { display: block; margin-bottom: 16px; color: var(--orange-dark); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.managed-card h2 { margin: 0 0 13px; color: var(--teal-950); font-size: clamp(1.35rem,2vw,1.75rem); }
.managed-card p { margin: 0 0 22px; color: var(--slate-600); line-height: 1.72; white-space: pre-line; }
.managed-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--teal-800); font-weight: 800; text-decoration: none; }
.managed-link span { color: var(--orange); transition: transform .18s ease; }
.managed-link:hover span { transform: translateX(4px); }
@media (max-width: 920px) { .managed-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px) { .managed-grid { grid-template-columns: 1fr; } .managed-card { min-height: 0; padding: 25px; } }
