:root {
  --ink: #142033;
  --muted: #5e6c81;
  --paper: #f7faf9;
  --panel: #ffffff;
  --line: #d8e4e0;
  --teal: #1f9d8a;
  --teal-dark: #126e68;
  --coral: #f26c4f;
  --gold: #f4b942;
  --sky: #d7eef8;
  --shadow: 0 24px 70px rgba(20, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(31, 157, 138, 0.14), transparent 32rem),
    linear-gradient(135deg, #eef7f4 0%, #f9fbf7 48%, #f4f0e8 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  align-content: center;
  gap: 18px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.identity,
.work-panel,
.contact-strip {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 228, 224, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.identity {
  min-height: 560px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  color: var(--sky);
}

.intro {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.summary {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: white;
  background: var(--teal-dark);
}

.button.primary:hover {
  background: #0f5d59;
}

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

.button.secondary:hover {
  border-color: var(--teal);
}

.work-panel {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel-top {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  background: #f3f8f6;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(31, 157, 138, 0.14);
}

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

article {
  min-height: 206px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 110, 104, 0.22);
}

.brand-mark svg,
.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-icon.document {
  color: var(--teal-dark);
  background: linear-gradient(135deg, #ffffff, var(--sky));
}

.service-icon.media {
  color: #ffffff;
  background: var(--coral);
  border-color: rgba(242, 108, 79, 0.36);
}

.service-icon.systems {
  color: var(--ink);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  border-color: rgba(31, 157, 138, 0.34);
}

.service-icon.custom {
  color: var(--ink);
  background: var(--gold);
  border-color: rgba(244, 185, 66, 0.5);
}

article h2 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-strip {
  min-height: 82px;
  padding: 18px 22px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.contact-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-strip strong {
  color: var(--ink);
}

.details {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.details span {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--teal-dark);
  background: #f8fcfa;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .page-shell {
    align-content: start;
    padding: 24px 0;
  }

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

  .identity {
    min-height: 500px;
  }

  h1 {
    max-width: 12ch;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .details {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
  }

  .identity,
  .work-panel {
    padding: 22px;
  }

  .identity {
    min-height: 560px;
  }

  .actions,
  .button {
    width: 100%;
  }

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

  article {
    min-height: auto;
  }
}
