@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --paper: #f7fbfa;
  --white: #fff;
  --ink: #1a2828;
  --ink-soft: #3d5252;
  --muted: #718888;
  --line: #d4eeed;
  --green: #0abbb5;
  --green-dark: #173f3e;
  --green-pale: #e8fffe;
  --acid: #c9fbfa;
  --coral: #b9544e;
  --mono: 'Inter', Arial, Helvetica, sans-serif;
  --sans: 'Inter', Arial, Helvetica, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --radius: 12px;
  --radius-sm: 6px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23,63,62,.1);
  background: rgba(247,251,250,.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mark {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
}

.mark::after {
  width: 30px;
  height: 8px;
  position: absolute;
  top: 5px;
  left: -5px;
  background: var(--acid);
  content: "";
  transform: rotate(-42deg);
}

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

.nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.nav a:hover,
.inline-link:hover {
  color: var(--green-dark);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 2px solid var(--green);
  border-radius: 100px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10,187,181,.22);
}

.nav .button {
  min-height: 40px;
  padding: 0 18px;
  background: transparent;
  border-color: var(--green);
  color: var(--green-dark);
  font-size: 13px;
}

.nav .button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.label {
  display: inline-block;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero {
  padding: 84px 0 86px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(52px, 8vw, 96px);
  align-items: center;
}

.about-bio {
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  background: var(--white);
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(64px, 9vw, 112px);
  align-items: start;
}

.about-person {
  display: grid;
  justify-items: start;
  align-content: start;
}

.about-person-photo {
  width: min(290px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(23,63,62,.14);
}

.about-person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-person h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.about-person-role {
  margin-top: 7px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}

.about-person-title {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.linkedin-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.linkedin-link:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.about-story h2 {
  max-width: 760px;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.about-story-copy {
  max-width: 780px;
  display: grid;
  gap: 22px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.about-checks {
  max-width: 820px;
  display: grid;
  gap: 14px;
  margin-top: 34px;
  list-style: none;
}

.about-checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.about-checks li::before {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.hero h1 {
  max-width: 800px;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.01em;
}

.hero-copy {
  max-width: 690px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.hero-side {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.hero-side strong {
  display: block;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-side p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.75;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(23,63,62,.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(23,63,62,.08);
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.hero-media figcaption {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.75;
}

.hero-media figcaption strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.hero-model {
  max-width: 620px;
  margin-top: 22px;
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  background: rgba(10,187,181,.06);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid currentColor;
  padding: 2px 0;
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 104px 0;
}

.section--white {
  background: var(--white);
}

.section--deep {
  background: var(--ink);
  color: var(--white);
}

.section--pale {
  background: var(--green-pale);
}

.section-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 7vw, 90px);
  margin-bottom: 52px;
}

.section-head h2 {
  max-width: 780px;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.08;
}

.section-head p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.85;
}

.section--deep .label {
  color: var(--acid);
}

.section--deep .section-head p {
  color: rgba(255,255,255,.6);
}

.rows {
  border-top: 1px solid currentColor;
}

.rows--cards {
  display: grid;
  border-left: 1px solid var(--line);
}

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

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

.rows--cards .row {
  min-width: 0;
  display: block;
  padding: 30px 24px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rows--cards .row > span {
  display: inline-flex;
}

.rows--cards .row h3 {
  min-height: 52px;
  margin-top: 34px;
}

.rows--cards .row p {
  margin-top: 14px;
}

.section--deep .rows--cards {
  border-left-color: rgba(255,255,255,.1);
}

.section--deep .rows--cards .row {
  border-right-color: rgba(255,255,255,.1);
  border-bottom-color: rgba(255,255,255,.1);
}

.row {
  display: grid;
  grid-template-columns: 56px .7fr 1.3fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.section--deep .row {
  border-color: rgba(255,255,255,.1);
}

.row > span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.section--deep .row > span {
  color: var(--acid);
}

.row h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.row p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.section--deep .row p {
  color: rgba(255,255,255,.6);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.column {
  border-top: 2px solid var(--green);
}

.column h3 {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.column ul {
  list-style: none;
}

.column li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.column li::before {
  color: var(--green);
  content: "-";
  font-weight: 700;
}

.notice {
  padding: 22px 24px;
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.75;
}

.prose {
  width: min(780px, 100%);
}

.prose h2 {
  margin: 55px 0 14px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.18;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 30px 0 9px;
  font-size: 17px;
  line-height: 1.35;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.prose p + p {
  margin-top: 14px;
}

.prose ul {
  margin: 14px 0 0 20px;
}

.prose a {
  border-bottom: 1.5px solid currentColor;
  color: var(--green-dark);
  font-weight: 700;
}

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

.blog-index-hero h1 {
  max-width: 900px;
}

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

.blog-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  background: var(--white);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-card h2 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.16;
}

.blog-card h2 a:hover {
  color: var(--green-dark);
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
}

.blog-article-hero {
  padding: 76px 0 70px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.blog-article-shell {
  width: min(980px, calc(100% - 48px));
}

.blog-back {
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 1.5px solid currentColor;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.blog-article-hero h1 {
  max-width: 900px;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 70px);
  font-weight: 600;
  line-height: 1.06;
}

.blog-article-hero p {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
  padding: 72px 0 90px;
}

.blog-prose {
  min-width: 0;
}

.blog-prose > h1:first-child {
  display: none;
}

.blog-prose h2 {
  margin: 54px 0 18px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
}

.blog-prose h3 {
  margin: 34px 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.blog-prose h4 {
  margin: 28px 0 10px;
  font-size: 16px;
  line-height: 1.4;
}

.blog-prose p,
.blog-prose li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.blog-prose p + p,
.blog-prose ul + p,
.blog-prose p + ul {
  margin-top: 18px;
}

.blog-prose ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 22px;
}

.blog-prose a {
  border-bottom: 1.5px solid currentColor;
  color: var(--green-dark);
  font-weight: 800;
}

.blog-prose a:hover {
  color: var(--green);
}

.blog-prose strong {
  color: var(--ink);
}

.blog-prose blockquote {
  margin: 34px 0;
  padding: 26px 28px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
}

.blog-prose blockquote p,
.blog-prose blockquote li {
  color: var(--green-dark);
}

.blog-prose hr {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.blog-image {
  margin: 34px 0;
}

.blog-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.blog-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.table-wrap {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.blog-prose table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
}

.blog-prose th,
.blog-prose td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.blog-prose th {
  color: var(--ink);
  font-weight: 800;
}

.blog-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 2px solid var(--green);
}

.blog-aside h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.blog-aside a {
  display: grid;
  gap: 7px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.blog-aside a:hover {
  color: var(--green-dark);
}

.blog-aside a span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.cta {
  padding: 76px 0;
  background: var(--acid);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
}

.cta h2 {
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 600;
  line-height: 1.08;
}

.cta p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.footer {
  padding: 54px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, .6fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer .wordmark-mark {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--white);
}

.footer .wordmark-mark::after {
  width: 30px;
  height: 8px;
  position: absolute;
  top: 5px;
  left: -5px;
  background: var(--acid);
  content: "";
  transform: rotate(-42deg);
}

.footer .mark {
  border-color: var(--white);
}

.footer-copy {
  max-width: 360px;
  margin-top: 16px;
  color: rgba(255,255,255,.45);
  font-size: 12.5px;
  line-height: 1.8;
}

.footer h3 {
  margin-bottom: 14px;
  color: rgba(255,255,255,.34);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  flex-shrink: 0;
  opacity: .7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255,255,255,.26);
  font-size: 10px;
}

@media (max-width: 980px) {
  .hero {
    padding: 72px 0 90px;
  }

  .hero-grid,
  .section-head,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media {
    width: min(580px, 100%);
  }

  .about-bio {
    min-height: auto;
  }

  .about-bio-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-person {
    justify-items: center;
    text-align: center;
  }

  .about-story h2 {
    max-width: 760px;
  }

  .split {
    gap: 40px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

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

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

  .blog-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 600px);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .nav {
    gap: 0;
  }

  .nav a:not(.button) {
    display: none;
  }

  .nav .button {
    min-height: 38px;
    padding: 0 13px;
    white-space: nowrap;
    font-size: 11px;
  }

  .hero {
    padding: 52px 0 66px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .blog-article-hero {
    padding: 52px 0 58px;
  }

  .blog-article-shell {
    width: min(100% - 32px, 600px);
  }

  .blog-article-hero h1 {
    font-size: 38px;
  }

  .blog-layout {
    padding: 54px 0 72px;
  }

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

  .blog-card {
    padding: 24px 20px;
  }

  .blog-prose h2 {
    font-size: 30px;
  }

  .blog-prose p,
  .blog-prose li {
    font-size: 15px;
  }

  .hero-media {
    padding: 12px;
  }

  .hero-media figcaption strong {
    font-size: 22px;
  }

  .about-bio {
    padding-top: 64px;
  }

  .about-person-photo {
    width: min(240px, 100%);
  }

  .about-story h2 {
    font-size: 32px;
  }

  .about-story-copy {
    font-size: 15px;
  }

  .about-checks li {
    font-size: 13px;
  }

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

  .button {
    width: 100%;
  }

  .inline-link {
    align-self: flex-start;
  }

  .row {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .row p {
    grid-column: 2;
  }

  .rows--3,
  .rows--4 {
    grid-template-columns: 1fr;
  }

  .rows--cards .row {
    padding: 24px 20px 26px;
  }

  .rows--cards .row h3 {
    min-height: 0;
    margin-top: 20px;
  }

  .rows--cards .row p {
    grid-column: auto;
  }

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

  .cta h2 {
    font-size: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-social a {
    flex-wrap: nowrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .cta h2 {
    font-size: 34px;
  }

  .nav .button {
    max-width: 178px;
    padding: 0 10px;
    font-size: 10px;
    text-align: center;
  }
}
