/* =========================================================
   ThekaIQ static website
   HTML + CSS only
   ========================================================= */

:root {
  --ink: #10241f;
  --ink-2: #1b342d;
  --ink-3: #315148;
  --forest: #153d34;
  --forest-dark: #0b2822;
  --green: #1f7a5a;
  --green-bright: #46b985;
  --mint: #dcf5e9;
  --mint-soft: #effaf5;
  --gold: #f5b842;
  --gold-dark: #d89517;
  --gold-soft: #fff4d9;
  --blue: #5d84e6;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --line: #dfe8e3;
  --muted: #667b74;
  --muted-light: #9fb1ab;
  --danger: #e2775d;
  --shadow-sm: 0 12px 30px rgba(16, 36, 31, .08);
  --shadow-md: 0 24px 60px rgba(16, 36, 31, .12);
  --shadow-lg: 0 36px 90px rgba(6, 29, 24, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: inherit;
}

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

svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

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

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(251, 250, 246, .9);
  border-bottom: 1px solid rgba(16, 36, 31, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--ink);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(16, 36, 31, .14);
}

.brand-mark svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .69rem;
  letter-spacing: .005em;
}

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

.desktop-nav a {
  position: relative;
  color: var(--ink-3);
  font-size: .94rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.desktop-portal {
  margin-left: 8px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(16, 36, 31, .18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest);
  box-shadow: 0 16px 28px rgba(16, 36, 31, .23);
}

.button-light {
  color: var(--ink);
  background: white;
  box-shadow: 0 14px 28px rgba(3, 21, 17, .22);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--gold-soft);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(16, 36, 31, .16);
  background: rgba(255, 255, 255, .68);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: white;
  border-color: rgba(16, 36, 31, .28);
}

.button-ghost-dark {
  color: var(--ink);
  border-color: rgba(16, 36, 31, .16);
  background: white;
}

.button-large {
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 15px;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: .92rem;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.mobile-menu nav > a:not(.button) {
  padding: 13px 8px;
  font-weight: 700;
  border-bottom: 1px solid rgba(16, 36, 31, .07);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 184, 66, .17), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(70, 185, 133, .13), transparent 27%),
    var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  opacity: .34;
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 36, 31, .14) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to top, #000, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  padding-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245, 184, 66, .16);
}

.eyebrow-light {
  color: #bdebd5;
}

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

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--ink-3);
  font-size: .9rem;
  font-weight: 650;
}

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

.hero-points i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: .69rem;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 46px 0 42px 36px;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.visual-glow-one {
  width: 280px;
  height: 280px;
  top: -8px;
  right: 5%;
  background: rgba(245, 184, 66, .2);
}

.visual-glow-two {
  width: 250px;
  height: 250px;
  left: 1%;
  bottom: 0;
  background: rgba(70, 185, 133, .2);
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 480px;
  background: #f6f8f7;
  border: 1px solid rgba(16, 36, 31, .1);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg);
  transform-origin: center;
}

.dashboard-topbar {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  background: white;
  border-bottom: 1px solid #e6ece9;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-brand span {
  width: 23px;
  height: 23px;
  background: var(--ink);
  border: 6px solid var(--gold);
  border-radius: 8px;
}

.mini-brand strong {
  font-size: .78rem;
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-pill {
  width: 52px;
  height: 9px;
  background: #edf1ef;
  border-radius: 999px;
}

.avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: .57rem;
  font-weight: 800;
}

.dashboard-body {
  min-height: 425px;
  display: grid;
  grid-template-columns: 90px 1fr;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 16px;
  background: var(--ink);
}

.side-line {
  height: 8px;
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.side-line.short {
  width: 70%;
}

.side-line.active {
  background: var(--gold);
}

.dashboard-content {
  padding: 24px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-heading > div {
  display: flex;
  flex-direction: column;
}

.dashboard-heading small,
.metric-card small,
.card-title span,
.report-window small {
  color: #879992;
  font-size: .64rem;
}

.dashboard-heading strong {
  font-size: 1rem;
}

.date-chip {
  padding: 6px 10px;
  color: var(--green);
  background: var(--mint);
  border-radius: 8px;
  font-size: .62rem;
  font-weight: 800;
}

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

.metric-card {
  min-width: 0;
  padding: 15px;
  background: white;
  border: 1px solid #e8edeb;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(16, 36, 31, .04);
}

.metric-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 9px;
  font-size: .76rem;
  font-weight: 900;
}

.metric-green {
  color: var(--green);
  background: var(--mint);
}

.metric-gold {
  color: #a76d00;
  background: var(--gold-soft);
}

.metric-blue {
  color: #3e65c2;
  background: #eaf0ff;
}

.metric-card small,
.metric-card strong,
.metric-card em {
  display: block;
}

.metric-card strong {
  overflow: hidden;
  margin: 3px 0 5px;
  font-size: .9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card em {
  color: var(--green);
  font-size: .53rem;
  font-style: normal;
  font-weight: 700;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
  margin-top: 12px;
}

.chart-card,
.activity-card {
  min-width: 0;
  padding: 16px;
  background: white;
  border: 1px solid #e8edeb;
  border-radius: 13px;
}

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

.card-title strong {
  font-size: .72rem;
}

.bar-chart {
  height: 145px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 22px 8px 0;
  border-bottom: 1px solid #e7ece9;
  background: repeating-linear-gradient(to bottom, transparent 0 35px, #eef2f0 36px);
}

.bar-chart span {
  width: 100%;
  height: var(--bar);
  background: linear-gradient(to top, var(--green), var(--green-bright));
  border-radius: 6px 6px 2px 2px;
}

.bar-chart span:nth-child(6) {
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
}

.chart-labels {
  display: flex;
  justify-content: space-around;
  padding-top: 7px;
  color: #94a49e;
  font-size: .5rem;
}

.activity-card ul {
  display: grid;
  gap: 12px;
  padding: 15px 0 0;
  margin: 0;
  list-style: none;
}

.activity-card li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  font-size: .54rem;
}

.activity-card li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card li strong {
  color: #73867f;
  font-size: .48rem;
}

.activity-card i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-good {
  background: var(--green-bright);
}

.status-warn {
  background: var(--gold);
}

.status-muted {
  background: #c5d0cc;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(16, 36, 31, .09);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: .58rem;
}

.floating-card strong {
  font-size: .83rem;
}

.float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 10px;
  font-weight: 900;
}

.floating-profit {
  right: -16px;
  bottom: 2px;
}

.floating-stock {
  top: 105px;
  left: 1px;
}

.floating-stock .float-icon {
  color: #a76d00;
  background: var(--gold-soft);
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--ink);
}

.trust-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid > div {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: white;
  font-size: 1.05rem;
}

.trust-grid span {
  color: #a9bbb5;
  font-size: .78rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.04rem;
}

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

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c7d8d1;
  box-shadow: var(--shadow-sm);
}

.feature-card-highlight {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.feature-card-highlight::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  background: rgba(245, 184, 66, .2);
  border-radius: 50%;
}

.feature-card-highlight p {
  color: #b8c8c2;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  color: var(--green);
  background: var(--mint);
  border-radius: 16px;
}

.feature-icon svg,
.preview-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-highlight .feature-icon {
  color: var(--ink);
  background: var(--gold);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.feature-tag {
  display: inline-flex;
  margin-top: 19px;
  padding: 7px 10px;
  color: var(--gold);
  background: rgba(245, 184, 66, .1);
  border: 1px solid rgba(245, 184, 66, .25);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 750;
}

.workflow-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(70, 185, 133, .12), transparent 24%),
    var(--cream);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 90px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading p {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

.workflow-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(16, 36, 31, .04);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #b3c1bc;
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.workflow-art {
  height: 170px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: var(--mint-soft);
  border-radius: 17px;
}

.workflow-card:nth-child(2) .workflow-art {
  background: var(--gold-soft);
}

.workflow-card:nth-child(3) .workflow-art {
  background: #edf2ff;
}

.workflow-card:nth-child(4) .workflow-art {
  background: #f1edfa;
}

.paper {
  position: relative;
  width: 82px;
  height: 110px;
  padding: 26px 15px 15px;
  background: white;
  border: 1px solid #d6e2dd;
  border-radius: 6px;
  box-shadow: 0 14px 26px rgba(16, 36, 31, .12);
  transform: rotate(-5deg);
}

.paper span {
  display: block;
  height: 5px;
  margin-bottom: 10px;
  background: #dfe9e5;
  border-radius: 999px;
}

.paper span:nth-child(2) {
  width: 72%;
}

.paper span:nth-child(3) {
  width: 85%;
}

.clip {
  position: absolute;
  width: 32px;
  height: 13px;
  margin: -84px 0 0 8px;
  border: 3px solid var(--green);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: rotate(-5deg);
}

.form-mini {
  width: 130px;
  padding: 18px;
  background: white;
  border: 1px solid #eadfbd;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(80, 55, 8, .1);
}

.form-mini span {
  display: block;
  height: 13px;
  margin-bottom: 10px;
  background: #f3ead2;
  border-radius: 5px;
}

.form-mini span:nth-child(2) {
  width: 72%;
}

.form-mini i {
  width: 52px;
  height: 17px;
  display: block;
  margin-left: auto;
  background: var(--gold);
  border-radius: 5px;
}

.lock-mini {
  position: relative;
  width: 76px;
  height: 68px;
  margin-top: 28px;
  background: var(--blue);
  border-radius: 15px;
  box-shadow: 0 15px 28px rgba(69, 96, 164, .2);
}

.lock-mini::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 38px;
  left: 15px;
  top: -29px;
  border: 7px solid var(--blue);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.lock-mini span {
  position: absolute;
  width: 7px;
  height: 20px;
  left: 34px;
  top: 25px;
  background: white;
  border-radius: 999px;
}

.mini-bars {
  width: 125px;
  height: 105px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: white;
  border: 1px solid #e3dced;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(65, 45, 85, .1);
}

.mini-bars i {
  width: 15px;
  background: #9075b1;
  border-radius: 5px 5px 2px 2px;
}

.mini-bars i:nth-child(1) {
  height: 35%;
}

.mini-bars i:nth-child(2) {
  height: 70%;
}

.mini-bars i:nth-child(3) {
  height: 50%;
}

.mini-bars i:nth-child(4) {
  height: 88%;
  background: var(--gold);
}

.workflow-card h3 {
  margin-bottom: 10px;
}

.workflow-card p {
  margin-bottom: 0;
  font-size: .9rem;
}

.report-section {
  overflow: hidden;
  background: white;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 80px;
}

.report-preview {
  position: relative;
}

.report-preview::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -130px;
  top: -95px;
  background: var(--mint);
  border-radius: 50%;
}

.report-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 26px;
  background: #f7f9f8;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.report-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.report-window-top > div {
  display: flex;
  flex-direction: column;
}

.report-window-top strong {
  font-size: 1rem;
}

.report-window-top > span {
  padding: 7px 12px;
  color: var(--green);
  background: var(--mint);
  border-radius: 8px;
  font-size: .68rem;
  font-weight: 800;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 15px;
}

.report-summary > div {
  padding: 17px;
  background: white;
  border: 1px solid #e5ebe8;
  border-radius: 12px;
}

.report-summary small,
.report-summary strong,
.report-summary em {
  display: block;
}

.report-summary strong {
  margin: 3px 0;
  font-size: 1rem;
}

.report-summary em {
  color: var(--green);
  font-size: .58rem;
  font-style: normal;
}

.report-table {
  overflow: hidden;
  background: white;
  border: 1px solid #e5ebe8;
  border-radius: 12px;
}

.report-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: center;
  min-width: 0;
  padding: 13px 16px;
  border-bottom: 1px solid #edf1ef;
  font-size: .69rem;
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.report-row i {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
}

.report-row strong {
  color: var(--green);
}

.report-head {
  color: #83968f;
  background: #f4f7f5;
  font-size: .59rem;
  font-weight: 750;
  text-transform: uppercase;
}

.report-copy > p {
  margin-bottom: 30px;
  font-size: 1rem;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
}

.check-list > li > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 850;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  margin-bottom: 3px;
  font-size: .94rem;
}

.check-list small {
  color: var(--muted);
  font-size: .8rem;
}

.bilingual-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 35%, rgba(245, 184, 66, .16), transparent 23%),
    var(--ink);
}

.bilingual-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 100px;
}

.bilingual-copy h2 span {
  color: var(--gold);
}

.bilingual-copy p {
  max-width: 580px;
  color: #b4c6bf;
  font-size: 1.03rem;
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.language-pills span {
  padding: 8px 13px;
  color: #d9e8e2;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: .73rem;
}

.bilingual-card {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  padding: 22px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 32px 74px rgba(0, 0, 0, .25);
  transform: rotate(2deg);
}

.language-switch {
  position: absolute;
  z-index: 2;
  top: -20px;
  right: 25px;
  display: flex;
  gap: 4px;
  padding: 5px;
  color: var(--ink);
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.language-switch span,
.language-switch strong {
  padding: 7px 11px;
  border-radius: 7px;
  font-size: .69rem;
}

.language-switch strong {
  color: white;
  background: var(--green);
}

.bilingual-screen {
  padding: 28px;
  color: var(--ink);
  background: #f6f9f7;
  border-radius: 17px;
}

.bilingual-screen > small {
  color: var(--green);
  font-weight: 800;
}

.bilingual-screen h3 {
  margin: 5px 0 22px;
  font-size: 1.35rem;
}

.hindi-metric {
  padding: 20px;
  margin-bottom: 12px;
  background: var(--ink);
  border-radius: 14px;
}

.hindi-metric span,
.hindi-metric strong {
  display: block;
}

.hindi-metric span {
  color: #a9bbb5;
  font-size: .73rem;
}

.hindi-metric strong {
  color: white;
  font-size: 1.5rem;
}

.hindi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5px;
  color: var(--muted);
  border-bottom: 1px solid #e2e9e5;
  font-size: .8rem;
}

.hindi-row strong {
  color: var(--ink);
}

.security-section {
  background: var(--cream);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.security-grid article {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.security-grid article:last-child {
  border-right: 0;
}

.security-number {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-size: .73rem;
  font-weight: 850;
}

.security-grid h3 {
  margin-bottom: 12px;
}

.security-grid p {
  margin-bottom: 0;
  font-size: .87rem;
}

.final-cta {
  padding-top: 40px;
  background: var(--cream);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 70px;
  color: white;
  background: linear-gradient(135deg, var(--forest-dark), var(--green));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 22px 22px;
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.cta-copy h2 {
  margin-bottom: 16px;
}

.cta-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: #c5d9d1;
  font-size: 1.02rem;
}

.cta-panel > .button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
}

.cta-orb-one {
  width: 240px;
  height: 240px;
  top: -120px;
  right: 15%;
  background: rgba(245, 184, 66, .18);
}

.cta-orb-two {
  width: 170px;
  height: 170px;
  left: 38%;
  bottom: -130px;
  background: rgba(255, 255, 255, .08);
}

.site-footer {
  padding-top: 90px;
  background: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  padding-bottom: 54px;
}

.brand-footer .brand-mark {
  width: 43px;
  height: 43px;
}

.footer-brand > p {
  max-width: 380px;
  margin-top: 24px;
  font-size: .9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: .83rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .83rem;
}

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

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .77rem;
}

/* Portal page */

.portal-body {
  min-height: 100vh;
  background: var(--ink);
}

.portal-header {
  position: relative;
  color: white;
  background: rgba(11, 40, 34, .9);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.portal-header .brand-copy small {
  color: #9fb8af;
}

.portal-header .brand-mark {
  color: var(--ink);
  background: var(--gold);
}

.portal-header .button-ghost-dark {
  color: white;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .17);
}

.portal-main {
  position: relative;
}

.portal-background {
  position: absolute;
  inset: 0 0 auto;
  height: 860px;
  overflow: hidden;
  pointer-events: none;
}

.portal-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-a {
  width: 430px;
  height: 430px;
  top: -130px;
  right: -100px;
  background: rgba(245, 184, 66, .14);
}

.orb-b {
  width: 360px;
  height: 360px;
  top: 380px;
  left: -180px;
  background: rgba(70, 185, 133, .13);
}

.portal-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .24) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.portal-hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 80px 0 100px;
  color: white;
}

.portal-layout {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: center;
  gap: 100px;
}

.portal-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 8px 13px;
  color: #c9ddd5;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.portal-status i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245, 184, 66, .15);
}

.portal-copy h1 {
  max-width: 720px;
}

.portal-copy h1 span {
  color: var(--gold);
}

.portal-copy > p {
  max-width: 680px;
  margin-bottom: 34px;
  color: #b1c5bd;
  font-size: 1.08rem;
  line-height: 1.75;
}

.portal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d7e5df;
  font-size: .9rem;
  font-weight: 700;
}

.portal-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 25px;
  margin-top: 42px;
  color: #9fb8af;
  font-size: .77rem;
}

.portal-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.portal-trust i {
  color: var(--gold);
  font-style: normal;
}

.coming-soon-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 5%, rgba(245, 184, 66, .3), transparent 26%),
    white;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 31px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .3);
  transform: rotate(2deg);
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -190px;
  bottom: -130px;
  border: 65px solid var(--mint);
  border-radius: 50%;
}

.coming-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coming-logo {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--ink);
  border-radius: 15px;
}

.coming-logo svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coming-chip {
  padding: 7px 10px;
  color: var(--green);
  background: var(--mint);
  border-radius: 999px;
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.coming-card-body {
  position: relative;
  z-index: 2;
  padding: 88px 0 70px;
}

.launch-label {
  color: var(--green);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.coming-card-body h2 {
  margin: 12px 0 22px;
  font-size: clamp(4.5rem, 8vw, 7.7rem);
  line-height: .86;
}

.coming-card-body h2 span {
  color: var(--gold);
}

.coming-card-body p {
  max-width: 315px;
  margin-bottom: 0;
  font-size: .94rem;
}

.coming-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.coming-card-footer span {
  padding: 7px 10px;
  color: var(--muted);
  background: #f4f7f5;
  border: 1px solid #e3eae6;
  border-radius: 8px;
  font-size: .63rem;
  font-weight: 700;
}

.portal-preview-section {
  position: relative;
  z-index: 3;
  padding: 110px 0;
  background: var(--cream);
  border-radius: 45px 45px 0 0;
}

.portal-preview-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.portal-preview-heading p {
  max-width: 610px;
  margin: 0 auto;
}

.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portal-preview-grid article {
  position: relative;
  min-height: 310px;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 36px rgba(16, 36, 31, .05);
}

.preview-index {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #b4c2bd;
  font-size: .68rem;
  font-weight: 900;
}

.preview-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  color: var(--green);
  background: var(--mint);
  border-radius: 17px;
}

.portal-preview-grid article:nth-child(2) .preview-icon {
  color: #9f6b08;
  background: var(--gold-soft);
}

.portal-preview-grid article:nth-child(3) .preview-icon {
  color: #4a67aa;
  background: #edf2ff;
}

.portal-preview-grid h3 {
  margin-bottom: 13px;
}

.portal-preview-grid p {
  margin-bottom: 0;
  font-size: .9rem;
}

.portal-bottom-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 28px 32px;
  color: white;
  background: var(--ink);
  border-radius: var(--radius-md);
}

.note-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 14px;
  font-size: .82rem;
  font-weight: 900;
}

.portal-bottom-note strong,
.portal-bottom-note p {
  display: block;
}

.portal-bottom-note p {
  margin: 2px 0 0;
  color: #a9bbb5;
  font-size: .8rem;
}

.portal-bottom-note > a {
  color: var(--gold);
  font-size: .84rem;
  font-weight: 800;
}

.portal-footer {
  color: #9fb8af;
  background: var(--ink);
}

.portal-footer .container {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .77rem;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

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

  .report-grid {
    gap: 48px;
  }

  .portal-layout {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav,
  .desktop-portal {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand-copy small {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }

  .trust-grid > div {
    min-height: 70px;
    justify-content: center;
    padding: 0 28px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .report-grid,
  .bilingual-grid {
    grid-template-columns: 1fr;
  }

  .report-copy {
    order: -1;
  }

  .bilingual-grid {
    gap: 60px;
  }

  .bilingual-card {
    margin-inline: auto;
  }

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

  .security-grid article:nth-child(2) {
    border-right: 0;
  }

  .security-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 55px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .portal-layout {
    grid-template-columns: 1fr;
  }

  .portal-copy {
    max-width: 800px;
  }

  .coming-soon-card {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .portal-preview-grid {
    grid-template-columns: 1fr;
  }

  .portal-preview-grid article {
    min-height: 250px;
  }

  .preview-icon {
    margin-bottom: 38px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .hero {
    padding-top: 60px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 26px 0 25px;
  }

  .dashboard-shell {
    min-height: 400px;
    transform: none;
  }

  .dashboard-body {
    min-height: 345px;
    grid-template-columns: 58px 1fr;
  }

  .dashboard-sidebar {
    padding: 22px 10px;
  }

  .dashboard-content {
    padding: 15px;
  }

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

  .metric-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .activity-card {
    display: none;
  }

  .floating-card {
    display: none;
  }

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

  .trust-grid > div {
    min-height: 74px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-grid > div:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .feature-grid,
  .workflow-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 250px;
  }

  .workflow-card {
    min-height: auto;
  }

  .security-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .security-grid article:last-child {
    border-bottom: 0;
  }

  .security-number {
    margin-bottom: 24px;
  }

  .report-window {
    padding: 15px;
  }

  .report-summary {
    grid-template-columns: 1fr;
  }

  .report-row {
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
  }

  .report-row span:nth-child(3),
  .report-row strong:nth-child(4) {
    display: none;
  }

  .bilingual-card {
    padding: 15px;
  }

  .bilingual-screen {
    padding: 22px;
  }

  .cta-panel {
    min-height: 0;
    padding: 40px 28px;
    border-radius: 24px;
  }

  .cta-panel > .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-bottom,
  .portal-footer .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .portal-header .button {
    padding: 10px 12px;
    font-size: .78rem;
  }

  .portal-hero {
    padding: 65px 0 78px;
  }

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

  .portal-actions .button {
    width: 100%;
  }

  .text-link-light {
    justify-content: center;
  }

  .portal-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .coming-soon-card {
    min-height: 475px;
    padding: 25px;
    transform: none;
  }

  .coming-card-body {
    padding: 75px 0 55px;
  }

  .coming-card-body h2 {
    font-size: clamp(4.4rem, 24vw, 6.5rem);
  }

  .portal-preview-section {
    padding: 80px 0;
    border-radius: 30px 30px 0 0;
  }

  .portal-preview-grid article {
    min-height: 270px;
    padding: 28px;
  }

  .portal-bottom-note {
    grid-template-columns: auto 1fr;
    padding: 24px;
  }

  .portal-bottom-note > a {
    grid-column: 1 / -1;
    padding-left: 70px;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .portal-header .button span {
    display: none;
  }

  .portal-header .button {
    min-height: 40px;
    padding-inline: 10px;
  }

  .metric-card {
    padding: 12px;
  }

  .metric-card strong {
    font-size: .78rem;
  }

  .dashboard-body {
    grid-template-columns: 48px 1fr;
  }

  .dashboard-content {
    padding: 12px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}


/* Bilingual language switch */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.language-links {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: #eef4f1;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.language-links a {
  min-width: 38px;
  padding: 7px 9px;
  color: var(--muted);
  border-radius: 7px;
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
}

.language-links a.active {
  color: white;
  background: var(--ink);
  box-shadow: 0 5px 12px rgba(16, 36, 31, .16);
}

.language-links-dark {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.language-links-dark a {
  color: #b8cbc4;
}

.language-links-dark a.active {
  color: var(--ink);
  background: var(--gold);
}

.mobile-language-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 12px 0;
}

.mobile-language-links a {
  padding: 10px 12px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 750;
  text-align: center;
}

.mobile-language-links a.active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .site-header:not(.portal-header) .header-actions {
    display: none;
  }

  .portal-header .header-actions {
    margin-left: auto;
  }

  .portal-header .language-links {
    display: inline-flex;
  }
}

@media (max-width: 540px) {
  .portal-header .header-actions {
    gap: 6px;
  }

  .portal-header .language-links a {
    min-width: 32px;
    padding-inline: 6px;
  }

  .portal-header .button {
    font-size: 0;
  }

  .portal-header .button::after {
    content: "←";
    font-size: 1rem;
  }

  html[lang="hi"] .portal-header .button::after {
    content: "←";
  }
}
