:root {
  color-scheme: light;
  --ink: #111412;
  --muted: #59625a;
  --paper: #f6f8f5;
  --surface: #ffffff;
  --surface-strong: #eef5ec;
  --line: #d9e0d6;
  --green: #2f7d5a;
  --teal: #16858a;
  --coral: #d96b57;
  --amber: #d59b2d;
  --mint: #dff1e4;
  --shadow: 0 20px 60px rgba(17, 20, 18, 0.12);
  --radius: 8px;
  --header-height: 74px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6vw;
  background: rgba(246, 248, 245, 0.88);
  border-bottom: 1px solid rgba(217, 224, 214, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.has-shadow {
  box-shadow: 0 10px 30px rgba(17, 20, 18, 0.08);
}

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

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-text {
  font-weight: 800;
  font-size: 1rem;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button.primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(17, 20, 18, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 34px rgba(17, 20, 18, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 78px 6vw 72px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 26%, rgba(47, 125, 90, 0.24), transparent 25%),
    radial-gradient(circle at 78% 18%, rgba(217, 107, 87, 0.23), transparent 26%),
    linear-gradient(135deg, #f8fbf6 0%, #eef5ec 54%, #f9f4eb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper) 0%, rgba(246, 248, 245, 0) 100%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.scene-panel {
  position: absolute;
  border: 1px solid rgba(17, 20, 18, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-dashboard {
  right: 8vw;
  top: 15%;
  width: 330px;
  height: 238px;
  padding: 20px;
}

.panel-topline {
  width: 58%;
  height: 16px;
  border-radius: var(--radius);
  background: var(--ink);
  opacity: 0.82;
}

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

.metric-row span {
  height: 54px;
  border-radius: var(--radius);
  background: var(--mint);
}

.metric-row span:nth-child(2) {
  background: #f6e7c5;
}

.metric-row span:nth-child(3) {
  background: #f4ded8;
}

.bar-stack {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 96px;
}

.bar-stack span {
  width: 38px;
  height: var(--height);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--green);
}

.bar-stack span:nth-child(2n) {
  background: var(--teal);
}

.bar-stack span:nth-child(3n) {
  background: var(--coral);
}

.panel-listing {
  left: 8vw;
  bottom: 3%;
  width: 260px;
  height: 160px;
  padding: 18px;
  opacity: 0.52;
  transform: rotate(-2deg);
}

.listing-line {
  height: 13px;
  width: 62%;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: rgba(17, 20, 18, 0.18);
}

.listing-line.wide {
  width: 86%;
  height: 20px;
  background: var(--ink);
}

.listing-tags {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.listing-tags span {
  width: 74px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.listing-tags span:nth-child(2) {
  background: #f5dfd7;
}

.listing-tags span:nth-child(3) {
  background: #f5e6bb;
}

.panel-course {
  right: 25vw;
  bottom: 8%;
  width: 240px;
  height: 132px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: rotate(2deg);
}

.course-card-mini {
  border-radius: var(--radius);
  background: #dff1e4;
}

.course-card-mini:nth-child(2) {
  background: #dbecef;
}

.course-card-mini.accent {
  background: #f5dfd7;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  padding-top: 18px;
}

.eyebrow,
.section-kicker,
.project-tag {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 6.4vw, 4.9rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: #2b302c;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -36px auto 0;
  padding: 0 6vw;
  position: relative;
  z-index: 5;
}

.proof-item {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.proof-item:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.proof-item:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: 900;
}

.proof-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(1180px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.intro-grid,
.services-layout,
.section-heading,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.08;
}

.intro-grid p,
.section-subtitle,
.assistant-copy p,
.contact-copy p,
.project-copy p,
.timeline p,
.service-list p {
  color: var(--muted);
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.section-note {
  display: grid;
  gap: 8px;
  justify-self: end;
  max-width: 410px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(17, 20, 18, 0.06);
}

.section-note strong {
  color: var(--green);
}

.section-note span {
  color: var(--muted);
}

.section-subtitle {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 1.03rem;
}

.section-heading > .button {
  justify-self: end;
  align-self: end;
  width: auto;
}

.work-section {
  padding-top: 70px;
}

.portfolio-projects {
  padding-top: 42px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  grid-column: span 3;
  min-height: 415px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(17, 20, 18, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.portfolio-card.featured {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  border-color: rgba(47, 125, 90, 0.5);
  box-shadow: 0 22px 48px rgba(17, 20, 18, 0.12);
  transform: translateY(-3px);
  outline: none;
}

.portfolio-media {
  min-height: 150px;
  display: grid;
  gap: 10px;
  align-content: center;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background: #edf4ea;
}

.portfolio-card.featured .portfolio-media {
  grid-column: 2;
  grid-row: 1 / 6;
  min-height: 100%;
  margin-bottom: 0;
  order: 2;
}

.portfolio-card.featured > :not(.portfolio-media) {
  grid-column: 1;
}

.portfolio-media > span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.portfolio-media > span:nth-child(2) {
  background: var(--teal);
}

.portfolio-media > span:nth-child(3) {
  background: var(--coral);
}

.portfolio-media > span:nth-child(4) {
  background: var(--ink);
}

.assistant-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding-top: 34px;
}

.portfolio-assistant {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(17, 20, 18, 0.08);
}

.assistant-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--green);
  cursor: pointer;
}

.icon-button.is-listening {
  color: #ffffff;
  background: var(--coral);
}

.assistant-toolbar input {
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfa;
  color: var(--ink);
}

.assistant-reply {
  min-height: 92px;
  padding: 18px;
  border-radius: var(--radius);
  background: #edf4ea;
  color: #263129;
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistant-suggestions button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.assistant-suggestions button:hover {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
}

.media-dashboard {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--green);
}

.media-dashboard.dark {
  background: var(--ink);
}

.media-dashboard span,
.media-dashboard small {
  font-weight: 800;
  opacity: 0.82;
}

.media-dashboard strong {
  font-size: 2.4rem;
  line-height: 1;
}

.media-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.media-flow span {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.media-flow i {
  display: block;
  height: 2px;
  background: rgba(17, 20, 18, 0.22);
}

.media-flow.compact span {
  background: var(--ink);
}

.media-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 90px;
}

.media-bars b {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--green);
}

.media-bars b:nth-child(2) {
  background: var(--teal);
}

.media-bars b:nth-child(3) {
  background: var(--coral);
}

.media-calendar {
  display: grid;
  gap: 10px;
}

.media-calendar strong {
  font-size: 1.25rem;
}

.media-calendar span {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(22, 133, 138, 0.12);
  color: #12383b;
  font-weight: 900;
}

.media-search {
  display: grid;
  gap: 12px;
}

.media-search span {
  padding: 12px;
  border: 1px solid rgba(17, 20, 18, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.media-search strong {
  color: var(--green);
  font-size: 1.3rem;
}

.media-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.media-matrix span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

.media-matrix span:nth-child(2) {
  background: var(--teal);
}

.media-matrix span:nth-child(3) {
  background: var(--coral);
}

.media-matrix span:nth-child(4) {
  background: var(--ink);
}

.care-media small {
  color: var(--muted);
  font-weight: 800;
}

.media-chat {
  display: grid;
  gap: 10px;
}

.media-chat p {
  width: 86%;
  margin: 0;
  padding: 11px 13px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.media-chat p:nth-child(2) {
  margin-left: auto;
  color: #ffffff;
  background: var(--teal);
}

.media-chat p:nth-child(3) {
  background: #f6e7c5;
  color: #51411c;
}

.clinic-media {
  background: #eef7f6;
}

.gov-media {
  background: #f5eddb;
}

.care-media {
  background: #f4e8e4;
}

.baatcheet-media {
  background: #e9edf4;
}

.dubai-media {
  background: #e6eefb;
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.portfolio-card p:not(.project-tag) {
  color: var(--muted);
}

.portfolio-card > strong {
  margin-top: auto;
  color: var(--green);
}

.startup-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding: 38px;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(17, 20, 18, 0.08);
}

.startup-copy h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
}

.startup-copy p {
  color: var(--muted);
}

.startup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.startup-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfa;
}

.market-preview {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.market-tabs,
.market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-tabs span,
.market-filters span {
  padding: 9px 12px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.82rem;
}

.market-tabs span {
  color: #ffffff;
  background: var(--green);
}

.market-tabs span:nth-child(2) {
  background: var(--teal);
}

.market-tabs span:nth-child(3) {
  background: var(--coral);
}

.market-tabs span:nth-child(4) {
  background: var(--ink);
}

.market-filters span {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.market-listing {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.market-listing p {
  margin: 0;
  color: var(--muted);
}

.market-listing span {
  color: var(--green);
  font-weight: 900;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sample-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sample-card:hover,
.sample-card:focus-visible {
  border-color: rgba(47, 125, 90, 0.5);
  box-shadow: 0 16px 38px rgba(17, 20, 18, 0.1);
  transform: translateY(-3px);
  outline: none;
}

.sample-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--green);
}

.sample-card span {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.sample-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.project:last-child {
  border-bottom: 1px solid var(--line);
}

.project-visual {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(17, 20, 18, 0.08);
}

.project-copy h3,
.service-list h3,
.timeline h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.22;
}

.timeline h3 a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.project-copy p {
  margin: 16px 0 0;
}

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

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #303731;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.browser-bar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: #edf3eb;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: var(--amber);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.farm-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 24px;
}

.farm-layout aside {
  min-height: 278px;
  padding: 18px;
  border-radius: var(--radius);
  background: #edf4ea;
}

.farm-layout aside p {
  margin: 0 0 20px;
  font-weight: 900;
}

.farm-layout aside span {
  display: block;
  margin-top: 12px;
  padding: 10px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.86rem;
}

.farm-list {
  display: grid;
  gap: 14px;
}

.farm-search {
  height: 46px;
  border-radius: var(--radius);
  background: #f1f3ef;
}

.produce-row {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.produce-row span {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.project-coaching .project-visual {
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #eef7f6 100%);
}

.coaching-hero-mini {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 20, 18, 0.92), rgba(47, 125, 90, 0.88)),
    linear-gradient(90deg, var(--green), var(--teal));
}

.coaching-hero-mini nav {
  display: flex;
  gap: 12px;
  margin-bottom: 38px;
}

.coaching-hero-mini nav span {
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
}

.coaching-hero-mini h4 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.coaching-hero-mini p {
  max-width: 370px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.course-grid div {
  display: grid;
  gap: 8px;
  min-height: 108px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.course-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.project-learning .project-visual {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 34px;
  background: #fbfaf7;
}

.deck-stack {
  position: relative;
  min-height: 250px;
}

.slide {
  position: absolute;
  width: 68%;
  min-height: 178px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 16px 35px rgba(17, 20, 18, 0.12);
}

.slide span {
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.slide strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.slide-one {
  left: 0;
  top: 0;
  background: #dff1e4;
}

.slide-two {
  right: 5%;
  top: 38px;
  background: #f6e7c5;
}

.slide-three {
  left: 14%;
  top: 82px;
  color: #ffffff;
  background: var(--ink);
}

.progress-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.55fr;
  gap: 12px;
}

.progress-strip span {
  height: 14px;
  border-radius: 999px;
  background: var(--green);
}

.progress-strip span:nth-child(2) {
  background: var(--coral);
}

.progress-strip span:nth-child(3) {
  background: var(--amber);
}

.services-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-list article {
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-list svg {
  width: 28px;
  height: 28px;
  margin-bottom: 30px;
  color: var(--green);
}

.service-list h3 {
  font-size: 1.22rem;
}

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

.timeline article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.timeline span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
}

.timeline p {
  margin: 12px 0 0;
}

.skills-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 26px 6vw;
  background: var(--ink);
}

.skills-band span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
}

.cv-section {
  padding-top: 72px;
}

.cv-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(17, 20, 18, 0.08);
}

.cv-card h2 {
  margin: 0;
}

.cv-card p {
  color: var(--muted);
}

.cv-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.cv-highlights span {
  padding: 8px 11px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.cv-highlights span:nth-child(2) {
  background: var(--teal);
}

.cv-highlights span:nth-child(3) {
  background: var(--coral);
}

.cv-highlights span:nth-child(4) {
  background: var(--ink);
}

.cv-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-section {
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(17, 20, 18, 0.08);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label,
.contact-form .full-row {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form .full-row {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfa;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 900;
}

.contact-form .contact-actions {
  justify-content: flex-start;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 28px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 4rem;
  }

  .panel-dashboard {
    right: -70px;
    width: 280px;
  }

  .panel-course {
    right: 8vw;
  }

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

  .proof-item:first-child,
  .proof-item:last-child {
    border-radius: 0;
  }

  .intro-grid,
  .assistant-section,
  .services-layout,
  .section-heading,
  .contact-section,
  .contact-form-grid,
  .project,
  .startup-card {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .portfolio-card.featured {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card.featured {
    grid-column: auto;
  }

  .portfolio-card.featured .portfolio-media {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
    order: 0;
  }

  .portfolio-card.featured > :not(.portfolio-media) {
    grid-column: auto;
  }

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

  .section-heading {
    gap: 22px;
  }

  .section-heading > .button {
    justify-self: start;
  }

  .section-note {
    justify-self: start;
  }

  .project-coaching .project-copy {
    order: 2;
  }

  .project-coaching .project-visual {
    order: 1;
  }

  .service-list,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .cv-actions {
    justify-content: flex-start;
  }

  .contact-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 10px 20px;
  }

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

  .brand-text {
    max-width: 150px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 72svh;
    padding: 58px 20px 56px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.7rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions,
  .contact-actions,
  .assistant-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .icon-button {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .panel-dashboard {
    top: 10%;
    right: -205px;
    opacity: 0.65;
  }

  .panel-listing {
    left: -150px;
    bottom: 8%;
    opacity: 0.62;
  }

  .panel-course {
    right: -110px;
    bottom: 4%;
    opacity: 0.7;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0 20px;
  }

  .proof-item {
    min-height: 98px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 66px 0;
  }

  .portfolio-card {
    min-height: auto;
    padding: 22px;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2.05rem;
  }

  .project {
    gap: 26px;
    padding: 34px 0;
  }

  .startup-card {
    padding: 22px;
  }

  .startup-copy h3 {
    font-size: 1.55rem;
  }

  .startup-actions,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .cv-card {
    padding: 22px;
  }

  .sample-grid {
    display: grid;
  }

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

  .project-visual {
    min-height: 315px;
  }

  .farm-layout {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .farm-layout aside {
    min-height: auto;
  }

  .farm-layout aside span {
    display: inline-block;
    margin: 8px 8px 0 0;
  }

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

  .coaching-hero-mini nav {
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .slide {
    width: 82%;
  }

  .project-copy h3 {
    font-size: 1.35rem;
  }

  .service-list article,
  .timeline article {
    padding: 22px;
  }
}

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