:root {
  --ink: #10233a;
  --navy: #08283f;
  --navy-deep: #051c2e;
  --ocean: #0e5274;
  --teal: #17a6a1;
  --teal-soft: #dff5f2;
  --orange: #f59e46;
  --cream: #f7f7f2;
  --paper: #ffffff;
  --muted: #66778a;
  --line: #dce6e9;
  --shadow: 0 22px 55px rgba(7, 38, 58, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  background: rgba(5, 28, 46, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
  transition: background .2s, box-shadow .2s;
}
.site-header.scrolled { background: rgba(5, 28, 46, .97); box-shadow: 0 12px 28px rgba(0, 0, 0, .13); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.site-mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 14px 14px 14px 5px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  box-shadow: inset 0 1px rgba(255,255,255,.2);
}
.site-mark::after { content: ""; position: absolute; right: -11px; bottom: -11px; width: 31px; height: 31px; border-radius: 50%; background: var(--teal); }
.site-mark span { position: relative; z-index: 1; font-size: 22px; line-height: 1; font-weight: 900; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: 19px; line-height: 1.05; letter-spacing: .045em; }
.brand-copy strong span { color: #59d4cb; }
.brand-copy small { margin-top: 5px; color: #aec4cf; font-size: 10px; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a { color: #d5e0e6; font-size: 13px; font-weight: 700; text-decoration: none; transition: color .2s; }
.site-nav > a:hover, .site-nav > a:focus-visible { color: #fff; }
.site-nav .nav-login { display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 11px; color: #fff; }
.site-nav .nav-login:hover { border-color: #69ded4; background: rgba(23,166,161,.13); }
.site-nav .nav-login span { color: #69ded4; font-size: 18px; }
.nav-toggle { display: none; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.22); border-radius: 11px; background: rgba(255,255,255,.05); padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: #fff; }

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 154px 0 0;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 30, 48, .98), rgba(8, 47, 70, .96)),
    radial-gradient(circle at 20% 20%, #0f7592, transparent 45%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -180px; top: 30px; border: 1px solid rgba(70, 205, 198, .20); box-shadow: 0 0 0 70px rgba(70,205,198,.025), 0 0 0 140px rgba(70,205,198,.018); }
.hero-glow-two { width: 190px; height: 190px; left: 46%; bottom: 10px; background: rgba(14, 117, 146, .18); filter: blur(60px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .78fr); align-items: center; gap: 75px; padding-bottom: 74px; }
.overline { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; color: #91ddd7; font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.overline span { width: 21px; height: 2px; background: var(--teal); }
.hero-copy h1 { margin: 0; font-size: clamp(42px, 5.2vw, 67px); line-height: 1.06; letter-spacing: -.045em; font-weight: 760; }
.hero-copy h1 em { color: #7be0d8; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 660px; margin: 25px 0 0; color: #bed0da; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 13px; margin-top: 33px; }
.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 11px 19px; border: 1px solid transparent; border-radius: 12px; font-size: 13px; font-weight: 820; line-height: 1; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s, border .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #fff; box-shadow: 0 13px 27px rgba(23,166,161,.25); }
.button-primary:hover { background: #13938f; box-shadow: 0 16px 31px rgba(23,166,161,.32); }
.button-icon { font-size: 19px; font-weight: 400; }
.button-ghost { border-color: rgba(255,255,255,.20); color: #e8f0f3; background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.sso-note { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; color: #86a2b2; font-size: 11px; }
.sso-note span { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: rgba(123,224,216,.12); color: #7be0d8; }

.hero-panel { position: relative; padding: 29px; border: 1px solid rgba(255,255,255,.18); border-radius: 25px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); box-shadow: 0 28px 70px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.hero-panel::before { content: ""; position: absolute; inset: 11px; z-index: -1; border: 1px solid rgba(255,255,255,.05); border-radius: 18px; }
.panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.11); }
.panel-kicker { color: #72d7cf; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.panel-top h2 { margin: 6px 0 0; font-size: 21px; letter-spacing: -.02em; }
.panel-status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; background: rgba(22,163,74,.14); color: #a7e8bc; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.panel-status i, .accepted-badge i, .active-dot i { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.12); }
.flow-list { list-style: none; margin: 0; padding: 8px 0 5px; }
.flow-list li { position: relative; display: grid; grid-template-columns: 37px 1fr; align-items: center; gap: 14px; padding: 13px 0; }
.flow-list li:not(:last-child)::after { content: ""; position: absolute; left: 18px; top: 49px; width: 1px; height: 17px; background: rgba(111,214,206,.28); }
.flow-list li > span { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(111,214,206,.24); border-radius: 11px; background: rgba(23,166,161,.08); color: #72d7cf; font-size: 10px; font-weight: 900; }
.flow-list strong, .flow-list small { display: block; }
.flow-list strong { font-size: 13px; }
.flow-list small { margin-top: 2px; color: #95abb7; font-size: 10px; }
.approval-card { display: flex; align-items: center; gap: 11px; padding: 13px; border-radius: 14px; background: rgba(1,16,28,.36); border: 1px solid rgba(255,255,255,.07); }
.approval-icon { flex: 0 0 32px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: #dff8ee; color: #168351; font-weight: 900; }
.approval-card div { min-width: 0; }
.approval-card small, .approval-card strong { display: block; }
.approval-card small { color: #839aa7; font-size: 9px; }
.approval-card strong { overflow: hidden; margin-top: 1px; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.approval-pill { margin-left: auto; padding: 5px 8px; border-radius: 999px; background: rgba(23,166,161,.12); color: #7be0d8; font-size: 8px; font-weight: 850; text-transform: uppercase; }

.stat-strip { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr .72fr .72fr 1.55fr; min-height: 105px; border-radius: 20px 20px 0 0; background: #fff; color: var(--ink); box-shadow: 0 -8px 34px rgba(1,18,30,.10); }
.stat-item, .stat-message { display: flex; align-items: center; }
.stat-item { flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.stat-item strong { color: var(--navy); font-family: Georgia, serif; font-size: 30px; line-height: 1; }
.stat-item span { margin-top: 8px; color: var(--muted); font-size: 10px; font-weight: 780; letter-spacing: .04em; text-transform: uppercase; }
.stat-message { gap: 14px; padding: 20px 30px; }
.stat-message > span { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--teal-soft); color: #07837f; }
.stat-message p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.section { padding: 92px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 36px; }
.section-heading > div { max-width: 720px; }
.section-label { margin: 0 0 9px; color: #138d88; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section-heading h2, .cta-card h2 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(31px, 4vw, 43px); font-weight: 500; line-height: 1.15; letter-spacing: -.025em; }
.section-heading > div > p:last-child { max-width: 680px; margin: 13px 0 0; color: var(--muted); font-size: 14px; }
.privacy-note { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: #edf5f6; color: #527079; font-size: 10px; font-weight: 750; white-space: nowrap; }
.privacy-note span { color: var(--teal); font-size: 15px; }

.accepted-section { background: var(--cream); }
.accepted-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.accepted-card { display: grid; grid-template-columns: 66px 1fr; min-height: 148px; overflow: hidden; border: 1px solid #e0e6e3; border-radius: 16px; background: #fff; transition: transform .2s, border-color .2s, box-shadow .2s; }
.accepted-card:hover { transform: translateY(-3px); border-color: #b9dcd8; box-shadow: 0 15px 34px rgba(11,52,67,.07); }
.accepted-number { display: flex; align-items: flex-start; justify-content: center; padding-top: 24px; border-right: 1px solid #e6ece9; background: #f8faf8; color: #a4b1b1; font-family: Georgia, serif; font-size: 18px; }
.accepted-content { padding: 21px 23px; }
.accepted-badge { display: inline-flex; align-items: center; gap: 7px; color: #13804a; font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.accepted-content h3 { margin: 10px 0 11px; color: #19344a; font-size: 14px; line-height: 1.55; }
.accepted-content p { margin: 0; color: #849097; font-size: 10px; }

.offer-section { position: relative; overflow: hidden; background: var(--navy); }
.offer-section::before { content: ""; position: absolute; width: 460px; height: 460px; right: -240px; top: -260px; border-radius: 50%; border: 1px solid rgba(77,209,199,.13); box-shadow: 0 0 0 80px rgba(77,209,199,.025), 0 0 0 160px rgba(77,209,199,.018); }
.light-heading { position: relative; color: #fff; }
.light-heading h2 { color: #fff; }
.light-heading > div > p:last-child { color: #9eb4c0; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: #7bded6; font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.text-link span { font-size: 18px; }
.offer-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.public-offer-card { display: flex; flex-direction: column; min-height: 385px; padding: 23px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(150deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); color: #fff; transition: transform .2s, border-color .2s; }
.public-offer-card:hover { transform: translateY(-4px); border-color: rgba(93,218,208,.36); }
.offer-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.offer-meta span { color: #65d2ca; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.offer-meta small { color: #758f9c; font-size: 9px; }
.public-offer-card h3 { margin: 17px 0 11px; font-size: 16px; line-height: 1.48; }
.public-offer-card > p { margin: 0; color: #a7bac4; font-size: 12px; line-height: 1.72; }
.offer-field { display: flex; align-items: center; gap: 7px; margin-top: 15px; color: #a9d9d5; font-size: 10px; font-weight: 750; }
.offer-field span { color: #58ccc3; font-size: 16px; }
.offer-owner { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 23px; }
.mini-avatar { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: #e7f8f5; color: #087d77; font-size: 10px; font-weight: 900; }
.offer-owner div { min-width: 0; }
.offer-owner small, .offer-owner strong { display: block; }
.offer-owner small { color: #6f8c99; font-size: 8px; text-transform: uppercase; }
.offer-owner strong { overflow: hidden; margin-top: 2px; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.quota-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 17px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.09); }
.quota-row span { color: #76ddd5; font-size: 10px; font-weight: 800; }
.quota-row small { color: #728b98; font-size: 9px; }

.expertise-section { background: #fff; }
.centered-heading { justify-content: center; text-align: center; }
.centered-heading > div { max-width: 690px; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 15px; }
.public-expert-card { position: relative; min-height: 350px; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 35px rgba(16,53,70,.045); transition: transform .2s, box-shadow .2s; }
.public-expert-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--teal), #56d6cc); opacity: 0; transition: opacity .2s; }
.public-expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.public-expert-card:hover::before { opacity: 1; }
.expert-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.expert-avatar { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 16px 16px 16px 5px; background: linear-gradient(140deg, var(--navy), var(--ocean)); color: #fff; font-family: Georgia, serif; font-size: 17px; font-weight: 700; box-shadow: 0 9px 20px rgba(8,40,63,.17); }
.active-dot { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 999px; background: #eef9f3; color: #288657; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.active-dot i { width: 5px; height: 5px; box-shadow: none; }
.expert-role { margin: 19px 0 5px; color: #97a5ad; font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.public-expert-card h3 { margin: 0; color: var(--navy); font-size: 14px; line-height: 1.45; }
.expert-title { display: block; margin-top: 11px; color: #148e89; font-size: 11px; line-height: 1.45; }
.expert-description { margin: 10px 0 0; color: #74838d; font-size: 11px; line-height: 1.7; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 16px; }
.keyword-list span { padding: 4px 7px; border-radius: 999px; background: #eef5f6; color: #58717a; font-size: 8px; font-weight: 700; }

.public-empty { display: flex; align-items: center; justify-content: center; gap: 17px; min-height: 150px; padding: 28px; border: 1px dashed #bfd1d2; border-radius: 18px; background: rgba(255,255,255,.64); text-align: left; }
.public-empty > span { flex: 0 0 50px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--teal-soft); color: #0b8a84; font-size: 19px; font-weight: 900; }
.public-empty h3 { margin: 0; font-size: 15px; }
.public-empty p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.public-empty-dark { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); color: #fff; }
.public-empty-dark p { color: #91a8b4; }
.public-empty-dark > span { background: rgba(23,166,161,.13); color: #6dd8d0; }

.cta-section { padding: 0 0 90px; background: #fff; }
.cta-card { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 45px; overflow: hidden; padding: 44px 50px; border-radius: 24px; background: linear-gradient(115deg, #0c3e59, #0b6a78); color: #fff; box-shadow: 0 23px 50px rgba(8,64,81,.18); }
.cta-card::after { content: ""; position: absolute; right: -110px; top: -145px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; font-size: 34px; }
.cta-card p:not(.section-label) { max-width: 690px; margin: 11px 0 0; color: #bcd4da; font-size: 13px; }
.button-light { flex: 0 0 auto; background: #fff; color: var(--navy); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.button-light:hover { background: #effcf9; }

.site-footer { padding: 65px 0 20px; background: var(--navy-deep); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .65fr; gap: 70px; padding-bottom: 46px; }
.site-mark-small { width: 39px; height: 39px; }
.footer-brand > p { max-width: 420px; margin: 18px 0 0; color: #839eac; font-size: 12px; }
.footer-info { display: flex; align-items: flex-start; flex-direction: column; }
.footer-info > span { margin-bottom: 13px; color: #58cbc3; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.footer-info strong { font-size: 12px; }
.footer-info p, .footer-info a { color: #8da5b1; font-size: 11px; line-height: 1.8; }
.footer-info p { margin: 6px 0 0; }
.footer-info a { margin-bottom: 4px; text-decoration: none; }
.footer-info a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; color: #607d8b; font-size: 9px; }
.schema-notice { position: fixed; right: 17px; bottom: 17px; z-index: 120; max-width: 390px; padding: 11px 15px; border: 1px solid #f1d596; border-radius: 11px; background: #fff8e6; color: #805d17; box-shadow: 0 12px 35px rgba(0,0,0,.12); font-size: 11px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 38px; }
  .hero-copy h1 { font-size: 49px; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .expertise-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-message { display: none; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 34px, 680px); }
  .site-header { height: 72px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 17px; right: 17px; top: 80px; display: none; align-items: stretch; flex-direction: column; gap: 3px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: #08283f; box-shadow: 0 22px 50px rgba(0,0,0,.24); }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 11px 12px; border-radius: 9px; }
  .site-nav .nav-login { margin-top: 5px; justify-content: space-between; }
  .hero-section { padding-top: 124px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { text-align: center; }
  .overline, .hero-actions, .sso-note { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-panel { width: min(100%, 530px); margin-inline: auto; }
  .accepted-grid, .offer-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .light-heading .text-link { align-self: flex-start; }
  .centered-heading { align-items: center; }
  .cta-card { align-items: flex-start; flex-direction: column; padding: 36px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 76px; }
  .shell { width: calc(100% - 28px); }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 8px; }
  .site-mark { width: 39px; height: 39px; border-radius: 12px 12px 12px 4px; }
  .hero-section { padding-top: 112px; }
  .hero-grid { padding-bottom: 50px; }
  .hero-copy h1 { font-size: 39px; line-height: 1.1; }
  .hero-lead { font-size: 14px; line-height: 1.75; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-panel { padding: 20px; border-radius: 19px; }
  .panel-top h2 { font-size: 18px; }
  .panel-status { display: none; }
  .approval-pill { display: none; }
  .stat-strip { grid-template-columns: repeat(3,1fr); min-height: 88px; }
  .stat-item strong { font-size: 24px; }
  .stat-item span { font-size: 7px; }
  .section { padding: 69px 0; }
  .section-heading { margin-bottom: 27px; }
  .section-heading h2 { font-size: 31px; }
  .privacy-note { white-space: normal; }
  .accepted-card { grid-template-columns: 51px 1fr; }
  .accepted-number { font-size: 15px; }
  .accepted-content { padding: 19px 17px; }
  .public-offer-card { min-height: 355px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .public-expert-card { min-height: 0; }
  .public-empty { align-items: flex-start; justify-content: flex-start; }
  .cta-section { padding-bottom: 65px; }
  .cta-card { padding: 29px 23px; border-radius: 19px; }
  .cta-card h2 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .schema-notice { left: 12px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}


/* SKRIPro landing v4.2 - outline + bimbingan, improved readability */
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  text-rendering:optimizeLegibility;
}
.site-nav{gap:22px}
.site-nav>a{font-size:12.5px}
.hero-copy h1,.section-heading h2,.cta-card h2{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif}
.hero-copy h1{font-weight:780}
.hero-copy h1 em{font-family:Georgia,"Times New Roman",serif;font-weight:500}
.flow-list small{font-size:10.5px;line-height:1.5}
.approval-card strong{white-space:normal;line-height:1.4}

/* Public guidance feature */
.guidance-public-section{
  position:relative;
  overflow:hidden;
  background:#f4f8fb;
  border-top:1px solid #e5edf2;
  border-bottom:1px solid #e5edf2;
}
.guidance-public-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-210px;
  bottom:-260px;
  border-radius:50%;
  background:rgba(23,166,161,.07);
  box-shadow:0 0 0 65px rgba(23,166,161,.025),0 0 0 130px rgba(23,166,161,.018);
}
.guidance-public-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.03fr) minmax(390px,.78fr);
  gap:72px;
  align-items:center;
}
.guidance-public-copy h2{
  max-width:760px;
  margin:0;
  color:var(--navy);
  font-size:clamp(31px,3.6vw,45px);
  line-height:1.16;
  letter-spacing:-.035em;
}
.guidance-public-copy>p:not(.section-label){
  max-width:720px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.guidance-feature-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:27px;
}
.guidance-feature-item{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:12px;
  padding:16px;
  border:1px solid #dbe6ed;
  border-radius:15px;
  background:rgba(255,255,255,.82);
  box-shadow:0 8px 24px rgba(14,48,67,.035);
}
.guidance-feature-item>span{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:#e4f5f3;
  color:#0d8d87;
  font-size:10px;
  font-weight:900;
}
.guidance-feature-item strong,.guidance-feature-item small{display:block}
.guidance-feature-item strong{color:#17344a;font-size:13px;line-height:1.45}
.guidance-feature-item small{margin-top:4px;color:#728391;font-size:11px;line-height:1.6}
.guidance-login{margin-top:24px}

.guidance-preview{
  padding:24px;
  border:1px solid #d8e5ec;
  border-radius:23px;
  background:#fff;
  box-shadow:0 24px 55px rgba(8,45,63,.10);
}
.guidance-preview-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:15px;
  padding-bottom:18px;
  border-bottom:1px solid #e8eef2;
}
.guidance-preview-top strong{display:block;margin-top:5px;color:#17344a;font-size:16px}
.guidance-live{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 9px;
  border-radius:999px;
  background:#eef9f3;
  color:#237b50;
  font-size:9px;
  font-weight:850;
  text-transform:uppercase;
}
.guidance-live i{width:6px;height:6px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 3px rgba(34,197,94,.12)}
.guidance-preview-student,.guidance-preview-lecturer{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:13px;
  padding:20px 0 18px;
}
.guidance-preview-avatar{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#eaf2ff;
  color:#245fc7;
  font-size:13px;
  font-weight:900;
}
.guidance-preview-avatar.lecturer{background:#e5f7f4;color:#0b8b84}
.guidance-preview small,.guidance-preview strong,.guidance-preview p{display:block}
.guidance-preview small{color:#83929f;font-size:9px;text-transform:uppercase;font-weight:850;letter-spacing:.06em}
.guidance-preview strong{margin-top:3px;color:#17344a;font-size:13px}
.guidance-preview p{margin:5px 0 0;color:#748590;font-size:11px;line-height:1.6}
.guidance-preview-line{
  height:1px;
  margin-left:55px;
  background:linear-gradient(90deg,#dfe8ee,transparent);
}
.guidance-preview-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  padding-top:4px;
}
.guidance-preview-bottom span{
  padding:6px 9px;
  border-radius:999px;
  background:#f0f5f7;
  color:#55717d;
  font-size:9px;
  font-weight:750;
}

/* More balanced public expertise cards */
.expertise-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.public-expert-card{
  min-height:0;
  padding:24px;
  border-radius:17px;
}
.expert-avatar{width:50px;height:50px;border-radius:14px 14px 14px 5px;font-size:15px}
.expert-role{margin-top:17px;font-size:8.5px}
.public-expert-card h3{font-size:14.5px;line-height:1.45}
.expert-title{font-size:11.5px;line-height:1.55}
.expert-description{font-size:11.5px;line-height:1.72}
.keyword-list span{font-size:8.5px;padding:4px 8px}

@media (max-width:1020px){
  .site-nav{gap:16px}
  .guidance-public-grid{grid-template-columns:1fr minmax(330px,.72fr);gap:40px}
  .guidance-feature-list{grid-template-columns:1fr}
  .expertise-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:820px){
  .guidance-public-grid{grid-template-columns:1fr;gap:38px}
  .guidance-preview{width:min(100%,560px);margin-inline:auto}
}
@media (max-width:560px){
  .guidance-feature-list{gap:9px}
  .guidance-feature-item{grid-template-columns:34px minmax(0,1fr);padding:13px}
  .guidance-feature-item>span{width:34px;height:34px}
  .guidance-preview{padding:18px;border-radius:18px}
  .guidance-preview-top{padding-bottom:14px}
  .guidance-preview-student,.guidance-preview-lecturer{grid-template-columns:37px minmax(0,1fr);gap:11px;padding:16px 0}
  .guidance-preview-avatar{width:37px;height:37px}
  .guidance-preview-line{margin-left:48px}
  .expertise-grid{grid-template-columns:1fr}
}

/* SKRIPro landing v4.3 - full expertise copy + interactive guidance explainer */
.guidance-public-heading{
  align-items:flex-end;
  gap:32px;
  margin-bottom:36px;
}
.guidance-public-heading>div{max-width:760px}
.guidance-public-heading h2{max-width:760px}
.guidance-public-heading>div>p:last-child{max-width:750px}
.guidance-public-grid-v2{
  grid-template-columns:minmax(0,.88fr) minmax(470px,1.12fr);
  align-items:start;
  gap:34px;
}
.guidance-journey{
  position:relative;
  display:grid;
  gap:0;
  padding:8px 0;
}
.guidance-journey-item{
  position:relative;
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:16px;
  align-items:start;
  padding:17px 18px;
  border:1px solid #dce8e9;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(12,47,61,.045);
}
.guidance-journey-item.is-final{border-color:#bce7dd;background:#f7fcfb}
.journey-number{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#eaf6f5;
  color:#118d87;
  font-size:11px;
  font-weight:900;
  letter-spacing:.05em;
}
.guidance-journey-item strong,.guidance-journey-item small{display:block}
.guidance-journey-item strong{color:#17344a;font-size:13.5px;line-height:1.45}
.guidance-journey-item small{margin-top:5px;color:#6d7f8a;font-size:11.5px;line-height:1.68}
.journey-connector{width:2px;height:16px;margin-left:40px;background:linear-gradient(#c6dcdd,#b9d9d5)}

.guidance-demo{
  position:sticky;
  top:110px;
  overflow:hidden;
  border:1px solid #d4e2e6;
  border-radius:22px;
  background:#fff;
  box-shadow:0 24px 54px rgba(8,40,63,.10);
}
.guidance-demo-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 23px 16px;
  border-bottom:1px solid #e8eff1;
}
.guidance-demo-head strong{display:block;margin-top:4px;color:#17344a;font-size:16px}
.guidance-demo-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  margin:16px 20px 0;
  padding:5px;
  border-radius:13px;
  background:#f0f5f6;
}
.guidance-demo-tabs button{
  min-height:40px;
  padding:8px 12px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#657884;
  font:inherit;
  font-size:11.5px;
  font-weight:800;
  cursor:pointer;
  transition:background .18s,color .18s,box-shadow .18s;
}
.guidance-demo-tabs button.active{
  background:#fff;
  color:#123d58;
  box-shadow:0 4px 12px rgba(12,43,60,.08);
}
.guidance-demo-panel{padding:20px}
.guidance-demo-panel[hidden]{display:none}
.demo-person{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:11px;
  align-items:center;
}
.demo-person small,.demo-person strong{display:block}
.demo-person small{color:#91a0a9;font-size:8.5px;letter-spacing:.08em;font-weight:900}
.demo-person strong{margin-top:2px;color:#17344a;font-size:12.5px;line-height:1.4}
.demo-status{
  padding:5px 8px;
  border-radius:999px;
  font-size:8.5px;
  font-weight:900;
  white-space:nowrap;
}
.demo-status.waiting{background:#fff4df;color:#a25a08}
.demo-status.reviewed{background:#e9f7f3;color:#16835d}
.demo-message{
  margin-top:16px;
  padding:15px 16px;
  border-radius:15px;
  border:1px solid #dce8ee;
}
.demo-message small{display:block;color:#8a9aa5;font-size:8.5px;font-weight:900;text-transform:uppercase;letter-spacing:.055em}
.demo-message p{margin:7px 0 0;color:#4f6571;font-size:11.5px;line-height:1.7}
.demo-message.student-message{background:#f6faff;border-left:3px solid #3b82f6}
.demo-message.lecturer-message{background:#f7fbfa;border-left:3px solid #16a6a1}
.demo-file-row,.demo-decision{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  padding:10px 12px;
  border:1px solid #e4ecef;
  border-radius:11px;
  background:#fbfcfd;
  color:#59707b;
  font-size:9.5px;
  font-weight:750;
}
.demo-acc{padding:4px 7px;border-radius:999px;background:#e9f4ff;color:#2863a9}
.demo-next{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:9px;
  align-items:center;
  margin-top:15px;
  padding-top:14px;
  border-top:1px dashed #d9e5e7;
}
.demo-next span{color:#0e9089;font-size:8.5px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}
.demo-next strong{color:#546b77;font-size:10.5px;line-height:1.5}
.guidance-demo-footer{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  border-top:1px solid #e4ecef;
  background:#e4ecef;
}
.guidance-demo-footer span{
  min-height:42px;
  display:grid;
  place-items:center;
  padding:8px 6px;
  background:#f8fbfb;
  color:#667d87;
  font-size:8.5px;
  font-weight:800;
  text-align:center;
}

/* Show lecturer expertise text in full on the landing page. */
.public-expert-card{display:flex;flex-direction:column;height:auto;min-height:0}
.expert-description{
  display:block;
  overflow:visible;
  max-height:none;
  -webkit-line-clamp:unset;
  -webkit-box-orient:initial;
  white-space:normal;
  text-overflow:clip;
}
.keyword-list{margin-top:16px}

@media(max-width:1020px){
  .guidance-public-heading{align-items:flex-start;flex-direction:column}
  .guidance-public-grid-v2{grid-template-columns:1fr}
  .guidance-demo{position:relative;top:auto;width:min(100%,700px);margin-inline:auto}
}
@media(max-width:620px){
  .guidance-public-heading{margin-bottom:25px}
  .guidance-public-heading .button{width:100%}
  .guidance-journey-item{grid-template-columns:39px minmax(0,1fr);gap:12px;padding:14px}
  .journey-number{width:39px;height:39px;border-radius:11px}
  .journey-connector{margin-left:33px;height:13px}
  .guidance-demo-head{padding:18px 16px 13px}
  .guidance-demo-tabs{margin:13px 14px 0}
  .guidance-demo-panel{padding:16px 14px}
  .demo-person{grid-template-columns:38px minmax(0,1fr);align-items:start}
  .demo-person .demo-status{grid-column:2;justify-self:start;margin-top:-4px}
  .guidance-demo-footer{grid-template-columns:repeat(2,1fr)}
}
