:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-2: #eef3ef;
  --surface-3: #f0f5f7;
  --ink: #111c2b;
  --muted: #5f6b78;
  --line: #d9e0d9;
  --blue: #174b72;
  --blue-2: #0d3150;
  --green: #2d6a4f;
  --cyan: #28a9d7;
  --gold: #b78b46;
  --shadow: 0 24px 70px rgba(17, 28, 43, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 28, 43, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, rgba(45, 106, 79, 0.03), transparent 520px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip:focus {
  left: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.contact-meta a:hover,
.footer a:hover {
  color: var(--blue);
}

.topbar__cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 28px) clamp(42px, 6vw, 72px);
}

.hero__content {
  position: relative;
}

.hero__content::before {
  content: "MINTHIYAR";
  position: absolute;
  top: -54px;
  left: -4px;
  z-index: -1;
  color: rgba(17, 28, 43, 0.035);
  font-size: clamp(72px, 12vw, 142px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 0.98;
}

h2 {
  max-width: 820px;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.5;
}

.hero__actions,
.case__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
}

.button--primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.button--primary:hover,
.topbar__cta:hover {
  background: var(--blue-2);
  color: #fff;
}

.button--secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.hero__facts div,
.card,
.case__grid div,
.proof-grid article,
.dark-grid div,
.form,
.delivery-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.hero__facts div {
  padding: 14px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.delivery-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.delivery-card--studio {
  background:
    linear-gradient(135deg, rgba(23, 75, 114, 0.06), transparent 44%),
    #fff;
}

.delivery-card__label,
.delivery-card__rows span,
.delivery-card__footer span {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-card h2 {
  max-width: 390px;
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.delivery-card__rows {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.studio-flow {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.studio-flow div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.studio-flow span {
  grid-row: span 2;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 800;
}

.studio-flow strong,
.studio-flow em {
  display: block;
}

.studio-flow em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
}

.delivery-card__rows div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8faf8);
}

.delivery-card__rows span,
.delivery-card__rows strong,
.delivery-card__footer span {
  display: block;
}

.delivery-card__rows strong {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.35;
}

.delivery-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.delivery-card__footer span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.card p,
.card li,
.case__lead,
.case__note,
.proof-grid p,
.steps p,
.section__head p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 28px) clamp(64px, 7vw, 84px);
}

.trust-strip div {
  min-height: 122px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.signature {
  max-width: var(--max);
  margin: 0 auto clamp(22px, 3vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(34px, 5vw, 54px) clamp(18px, 4vw, 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.signature__copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.signature__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.trust-strip strong {
  font-size: 17px;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(70px, 9vw, 110px) clamp(18px, 4vw, 28px);
}

.client-section {
  background: var(--surface-3);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section__head {
  margin-bottom: 34px;
}

.section__head--wide {
  max-width: var(--max);
}

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

.card {
  padding: 26px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.card:hover {
  border-color: rgba(23, 75, 114, 0.35);
  box-shadow: 0 18px 50px rgba(17, 28, 43, 0.08);
  transform: translateY(-2px);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.client-grid article {
  min-height: 260px;
  padding: 24px;
  background: #fff;
}

.client-grid h3 {
  max-width: 210px;
}

.client-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.card__index {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 800;
}

.card p {
  margin: 14px 0 0;
}

.card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.card li {
  margin-bottom: 8px;
}

.section--tint {
  background: var(--surface-2);
}

.proof-section {
  background: #fff;
}

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

.proof-grid article {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #f7faf8);
}

.proof-grid span {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 800;
}

.proof-grid h3 {
  margin-top: 28px;
}

.proof-grid p {
  margin-bottom: 0;
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.case__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.case__image img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.case__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(320px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(17, 28, 43, 0.82);
  color: #fff;
  backdrop-filter: blur(10px);
}

.case__caption strong,
.case__caption span {
  display: block;
}

.case__caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.case__lead {
  max-width: 720px;
  font-size: 18px;
}

.case__note {
  max-width: 680px;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--green);
}

.case__grid,
.dark-grid,
.case__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.case__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.case__grid div,
.dark-grid div,
.case__stats div {
  padding: 16px;
}

.case__stats div {
  border-top: 1px solid var(--line);
  padding: 16px 0 0;
}

.case__grid strong,
.case__grid span,
.dark-grid strong,
.dark-grid span {
  display: block;
}

.case__grid span,
.dark-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.steps span {
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(40, 169, 215, 0.08), transparent 34%),
    var(--ink);
  color: #fff;
}

.section--dark .eyebrow {
  color: #85d1b2;
}

.section--dark .section__head p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.dark-grid div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.dark-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.form {
  display: grid;
  gap: 10px;
  padding: 24px;
}

label {
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd6ce;
  border-radius: 6px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form__submit {
  min-height: 44px;
  margin-top: 8px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form__status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
}

.form__status.is-error {
  color: #8a3434;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 38px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer__brand em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .case,
  .signature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__facts,
  .cards,
  .client-grid,
  .proof-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .topbar__cta {
    display: none;
  }

  .case__grid,
  .dark-grid,
  .case__stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .case__caption {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  h1 {
    font-size: clamp(36px, 10.8vw, 46px);
  }
}
