:root {
  --ink: #102033;
  --muted: #5f6f7d;
  --paper: #f8fbff;
  --surface: #ffffff;
  --line: #dfe9f3;
  --green: #2fbd68;
  --green-dark: #14824a;
  --blue: #2f67b3;
  --blue-dark: #234f91;
  --coral: #ff5a36;
  --orange: #ff8f18;
  --gold: #ffd13f;
  --sky: #e2f5ff;
  --shadow: 0 24px 60px rgba(16, 32, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(47, 103, 179, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(47, 103, 179, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, rgba(47, 103, 179, 0.1), transparent 34%),
    linear-gradient(280deg, rgba(255, 143, 24, 0.11), transparent 28%),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 252, 247, 0.92);
  border-bottom: 1px solid rgba(223, 231, 223, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 164px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-dark);
  background: rgba(47, 103, 179, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.page-hero,
.section,
.cta-section {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: 100vh;
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--coral);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.65rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero p,
.page-hero p,
.section-heading p,
.split-section p,
.about-grid p,
.service-row p,
.contact-info p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero p {
  max-width: 610px;
}

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

.license-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(47, 103, 179, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(12px);
}

.license-pill img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg,
.text-link svg,
.icon-tile svg,
.visual-chip svg,
.check-item svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green-dark));
  box-shadow: 0 14px 32px rgba(47, 103, 179, 0.25);
}

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

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  max-width: 560px;
  margin-top: 28px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(19, 32, 29, 0.08);
}

.stat-strip div {
  min-width: 0;
}

.stat-strip strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.1;
}

.stat-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  height: min(66vh, 620px);
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 32, 29, 0.05), rgba(19, 32, 29, 0.42));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(230px, 52%);
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(19, 32, 29, 0.18);
  animation: floatSoft 6s ease-in-out infinite;
}

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

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

.card-one {
  top: 28px;
  left: 28px;
}

.card-two {
  right: 28px;
  bottom: 28px;
  animation-delay: 1.2s;
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.future-stack-section,
.service-intro-panel,
.engagement-section,
.service-method-section,
.fit-section,
.about-depth-section,
.contact-prep-section {
  position: relative;
  overflow: hidden;
}

.future-stack-section::before,
.engagement-section::before,
.service-method-section::before,
.about-depth-section::before,
.contact-prep-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(47, 103, 179, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(47, 103, 179, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.future-stack-section > *,
.engagement-section > *,
.service-method-section > *,
.about-depth-section > *,
.contact-prep-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.service-grid,
.project-grid,
.value-grid,
.testimonial-grid,
.outcome-grid,
.mini-service-grid,
.stack-grid,
.engagement-grid,
.method-grid,
.about-depth-grid,
.contact-prep-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card,
.project-card,
.value-grid article,
.testimonial-card,
.outcome-grid article,
.mini-service-grid a,
.contact-form,
.contact-info,
.check-panel,
.service-row-side,
.stack-grid article,
.engagement-grid article,
.method-grid article,
.about-depth-grid article,
.contact-prep-grid article,
.proof-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(19, 32, 29, 0.06);
}

.future-stack-section {
  color: #ffffff;
  background: linear-gradient(135deg, #07111f, #102033 48%, #173f73);
}

.future-stack-section .section-heading p,
.future-stack-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

.stack-grid article,
.about-depth-grid article,
.engagement-grid article,
.contact-prep-grid article {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.stack-grid article span,
.about-depth-grid article span,
.method-grid article span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

.stack-grid article p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover,
.project-card:hover,
.mini-service-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 124, 102, 0.24);
  box-shadow: 0 24px 54px rgba(19, 32, 29, 0.12);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.icon-tile {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(223, 244, 255, 0.95), rgba(255, 246, 222, 0.95));
  border: 1px solid rgba(13, 124, 102, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(19, 32, 29, 0.08);
}

.service-media {
  height: 150px;
  margin: -24px -24px 20px;
  overflow: hidden;
  background: #eaf4ef;
}

.service-media img,
.service-row-image img,
.visual-project img,
.detail-hero-image img,
.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card:hover .service-media img,
.visual-project:hover img,
.service-row:hover .service-row-image img {
  transform: scale(1.06);
}

.service-index {
  color: var(--coral);
  font-weight: 800;
}

.service-card p,
.project-card p,
.testimonial-card span,
.value-grid p {
  color: var(--muted);
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 6vw, 80px);
  background: #eaf6ed;
}

.ai-studio-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #102033, #234f91 58%, #14824a);
  background-size: 42px 42px, 42px 42px, auto;
}

.ai-studio-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(118deg, rgba(255, 209, 63, 0.2), transparent 26%),
    linear-gradient(292deg, rgba(47, 189, 104, 0.18), transparent 34%);
  pointer-events: none;
}

.ai-studio-copy,
.ai-console {
  position: relative;
  z-index: 1;
}

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

.ai-studio-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.ai-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ai-feature-list span {
  padding: 9px 12px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.ai-console {
  min-height: 430px;
  padding: 22px;
  background: rgba(7, 14, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.ai-console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.ai-console-header span {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(47, 189, 104, 0.12);
}

.ai-message {
  max-width: 84%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.ai-message.user {
  margin-left: auto;
  color: var(--ink);
  background: #ffffff;
}

.ai-message.bot {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(47, 103, 179, 0.9), rgba(47, 189, 104, 0.82));
}

.ai-signal-map {
  position: relative;
  height: 150px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ai-signal-map::before,
.ai-signal-map::after {
  position: absolute;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), transparent);
  animation: signalMove 3.4s ease-in-out infinite;
}

.ai-signal-map::before {
  top: 42%;
}

.ai-signal-map::after {
  top: 62%;
  animation-delay: 1s;
}

.ai-signal-map span {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(47, 189, 104, 0.7);
}

.ai-signal-map span:nth-child(1) {
  top: 28%;
  left: 18%;
}

.ai-signal-map span:nth-child(2) {
  top: 58%;
  left: 36%;
}

.ai-signal-map span:nth-child(3) {
  top: 36%;
  right: 34%;
}

.ai-signal-map span:nth-child(4) {
  top: 68%;
  right: 18%;
}

.visual-section {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.image-collage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 8px;
}

.image-collage img {
  height: clamp(260px, 34vw, 420px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-band {
  background: #f5f0e5;
}

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

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

.project-card {
  padding: 28px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.visual-project img {
  height: 210px;
  margin: -28px -28px 22px;
  border-bottom: 1px solid var(--line);
}

.project-card span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card strong {
  display: block;
  margin-top: 20px;
  color: var(--green-dark);
}

.project-case-grid {
  display: grid;
  gap: 24px;
}

.project-case-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 103, 179, 0.13);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(16, 32, 51, 0.1);
}

.project-case-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.project-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-case-media span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(16, 32, 51, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.project-case-content {
  padding: clamp(24px, 4vw, 42px);
}

.project-case-content > p,
.case-points p {
  color: var(--muted);
}

.case-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.case-points div {
  padding: 18px;
  background: #f6fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-points h3 {
  font-size: 1rem;
}

.project-case-content strong {
  color: var(--green-dark);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 64px;
  padding-bottom: 64px;
  color: #ffffff;
  background: var(--green-dark);
}

.cta-section h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.cta-section .eyebrow {
  color: #baf3df;
}

.cta-section .btn.primary {
  color: var(--green-dark);
  background: #ffffff;
}

.page-hero {
  padding-top: 84px;
  padding-bottom: 84px;
  background: linear-gradient(135deg, #edf8ee, #fff5ec);
}

.layered-hero,
.service-detail-hero {
  position: relative;
  overflow: hidden;
}

.layered-hero::after,
.service-detail-hero::after {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  bottom: -52px;
  width: min(430px, 42vw);
  height: min(430px, 42vw);
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 84, 68, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(7, 84, 68, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(-8deg);
}

.page-hero.compact h1 {
  max-width: 980px;
  font-size: 4.4rem;
}

.page-hero p {
  max-width: 760px;
}

.about-grid,
.detail-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.metric-row div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.metric-row strong {
  font-size: 1.8rem;
}

.metric-row span {
  color: var(--muted);
}

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

.value-grid article {
  padding: 24px;
}

.about-depth-grid,
.engagement-grid,
.contact-prep-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-depth-section,
.contact-prep-section {
  background: #eef7ff;
}

.about-depth-grid article,
.engagement-grid article,
.contact-prep-grid article {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 245, 255, 0.76)),
    var(--surface);
  border-color: rgba(47, 103, 179, 0.14);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
}

.about-depth-grid article p,
.engagement-grid article p,
.contact-prep-grid article p {
  color: var(--muted);
}

.founders-section {
  background: #f6fbf7;
}

.certificate-section {
  background: linear-gradient(135deg, rgba(226, 245, 255, 0.7), rgba(255, 250, 226, 0.82));
}

.certificate-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(47, 103, 179, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.certificate-card h2 {
  font-size: 2.35rem;
}

.certificate-card p {
  max-width: 660px;
  color: var(--muted);
}

.certificate-brand {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.12);
}

.certificate-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

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

.founder-card {
  min-height: 210px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(223, 244, 255, 0.7), rgba(255, 255, 255, 0.92)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(19, 32, 29, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 124, 102, 0.24);
  box-shadow: 0 24px 54px rgba(19, 32, 29, 0.12);
}

.founder-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

.founder-card p {
  color: var(--muted);
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #07111f;
  color: #ffffff;
}

.service-intro-copy {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.service-intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.engagement-section {
  background: #f8fbff;
}

.engagement-grid article {
  min-height: 260px;
}

.service-method-section {
  color: #ffffff;
  background: linear-gradient(135deg, #102033, #234f91);
}

.service-method-section .section-heading p,
.service-method-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

.method-grid article {
  min-height: 210px;
  padding: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.method-grid article p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #fff8e4;
}

.fit-section p {
  color: var(--muted);
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fit-list span {
  padding: 12px 14px;
  color: var(--blue-dark);
  font-weight: 800;
  background: #ffffff;
  border: 1px solid rgba(47, 103, 179, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.07);
}

.service-row:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 74, 0.25);
  box-shadow: 0 20px 48px rgba(19, 32, 29, 0.1);
}

.service-row-image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
}

.service-row-image .icon-tile {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  background: rgba(7, 84, 68, 0.86);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.service-row h2 {
  font-size: 2.35rem;
}

.service-row-side {
  padding: 24px;
}

ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.service-detail-hero {
  background: #edf8f7;
}

.detail-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.hero-icon {
  margin: 18px 0 20px;
}

.detail-hero-image {
  position: relative;
  z-index: 1;
  height: clamp(300px, 42vw, 520px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #f6faf6;
  border-radius: 8px;
}

.check-item span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
  border-radius: 8px;
}

.check-item p {
  margin: 0;
  font-weight: 700;
}

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

.outcome-grid article,
.mini-service-grid a {
  padding: 22px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.mini-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-service-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-service-grid .icon-tile {
  margin-bottom: 16px;
}

.visual-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(19, 32, 29, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  animation: floatSoft 5.5s ease-in-out infinite;
}

.chip-mobile {
  top: 44%;
  left: 26px;
}

.chip-growth {
  top: 24%;
  right: 26px;
  animation-delay: 1.6s;
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--delay, 0ms);
}

.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes signalMove {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-20px);
  }

  50% {
    opacity: 1;
    transform: translateX(20px);
  }
}

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

.proof-section {
  background: #07111f;
}

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

.proof-grid article {
  min-height: 190px;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(47, 103, 179, 0.28), rgba(47, 189, 104, 0.14)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2.6rem;
  line-height: 1;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.testimonial-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.testimonial-card p {
  font-size: 1.25rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.contact-layout {
  align-items: start;
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #eef7ff;
}

.start-guidance {
  position: sticky;
  top: 110px;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #102033, #234f91);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.start-guidance p {
  color: rgba(255, 255, 255, 0.76);
}

.start-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.start-steps article {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.start-steps strong {
  color: var(--gold);
}

.start-form {
  padding: clamp(22px, 4vw, 38px);
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info,
.contact-form {
  padding: 30px;
}

.contact-info a {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form small {
  color: #b42318;
  font-weight: 700;
}

.form-success {
  padding: 14px 16px;
  color: #075444;
  font-weight: 800;
  background: #dff7e7;
  border: 1px solid #b8e8ca;
  border-radius: 8px;
}

.site-footer {
  padding: 58px clamp(18px, 5vw, 72px) 26px;
  color: #dcebe7;
  background: #101d1a;
}

.footer-logo-plate {
  display: inline-flex;
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 8px;
}

.footer-logo-plate .brand-logo {
  width: 178px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

.site-footer p {
  max-width: 560px;
  color: #a9bcb6;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: #dcebe7;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  color: #a9bcb6;
  border-top: 1px solid rgba(220, 235, 231, 0.16);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .founder-grid,
  .outcome-grid,
  .mini-service-grid,
  .stack-grid,
  .method-grid,
  .about-depth-grid,
  .engagement-grid,
  .contact-prep-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero,
  .about-grid,
  .detail-grid,
  .contact-layout,
  .start-layout,
  .split-section,
  .visual-section,
  .ai-studio-section,
  .service-intro-panel,
  .fit-section,
  .project-case-card,
  .service-row,
  .detail-visual-hero,
  .certificate-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    align-content: center;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-visual {
    height: 42vh;
    min-height: 330px;
  }

  .project-grid,
  .project-grid.wide,
  .testimonial-grid,
  .case-points {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    padding: 22px;
  }

  .project-case-media {
    min-height: 300px;
  }

  .certificate-card {
    align-items: start;
  }

  .start-guidance {
    position: static;
  }

  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  h1,
  .page-hero.compact h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .service-row h2 {
    font-size: 2rem;
  }

  .service-row-image {
    min-height: 300px;
  }

  .ai-console {
    min-height: 360px;
  }

  .image-collage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 136px;
  }

  h1 {
    font-size: 2.42rem;
  }

  .page-hero.compact h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero,
  .page-hero,
  .section,
  .cta-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .metric-row,
  .service-grid,
  .value-grid,
  .founder-grid,
  .outcome-grid,
  .mini-service-grid,
  .stack-grid,
  .method-grid,
  .about-depth-grid,
  .engagement-grid,
  .contact-prep-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    align-items: start;
  }

  .hero {
    min-height: 100vh;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .ai-studio-copy h2 {
    font-size: 2.15rem;
  }

  .ai-message {
    max-width: 100%;
  }

  .ai-feature-list span {
    font-size: 0.86rem;
  }

  .stack-grid article,
  .about-depth-grid article,
  .engagement-grid article,
  .contact-prep-grid article,
  .method-grid article {
    min-height: auto;
  }

  .project-case-media {
    min-height: 240px;
  }

  .btn {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .license-pill {
    font-size: 0.8rem;
  }

  .certificate-card h2 {
    font-size: 1.9rem;
  }

  .certificate-brand {
    width: 92px;
    height: 92px;
  }

  .certificate-brand img {
    width: 68px;
    height: 68px;
  }

  .hero-visual {
    height: 30vh;
    min-height: 230px;
  }

  .floating-card {
    width: calc(100% - 40px);
  }

  .card-one {
    top: 20px;
    left: 20px;
  }

  .card-two {
    right: 20px;
    bottom: 20px;
  }

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

  .visual-chip {
    display: none;
  }

  .detail-hero-image,
  .service-row-image {
    min-height: 260px;
  }
}

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

  .motion-ready [data-animate] {
    opacity: 1;
    transform: none;
  }
}
