:root {
  --paper: #f4eee6;
  --paper-deep: #e9dfd2;
  --panel: rgba(255, 251, 246, 0.95);
  --panel-strong: rgba(255, 249, 243, 0.98);
  --ink: #171412;
  --muted: #625b55;
  --line: #dbcfc2;
  --accent: #925237;
  --accent-deep: #71321f;
  --accent-green: #355f5a;
  --accent-gold: #9a7741;
  --accent-soft: #ecd9cf;
  --shadow: rgba(54, 38, 27, 0.078);
  --shadow-soft: rgba(54, 38, 27, 0.05);
  --sans: "Manrope", "Aptos", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Newsreader", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --text-meta: 0.72rem;
  --text-small: 0.84rem;
  --text-body: 0.98rem;
  --text-body-strong: 1.02rem;
  --title-card: clamp(1rem, 1.45vw, 1.12rem);
  --title-section: clamp(1.2rem, 2vw, 1.46rem);
  --title-page: clamp(1.7rem, 3vw, 2.2rem);
  --title-hero: clamp(2.1rem, 4.2vw, 2.85rem);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(146, 82, 55, 0.12), transparent 26%),
    radial-gradient(circle at 78% 82%, rgba(154, 119, 65, 0.05), transparent 16%),
    linear-gradient(180deg, #fcfaf7 0%, var(--paper) 56%, #f3ebe2 100%);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.page-writing {
  background:
    radial-gradient(circle at 12% 8%, rgba(146, 82, 55, 0.14), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(154, 119, 65, 0.06), transparent 18%),
    linear-gradient(180deg, #fdfaf7 0%, #f5ede5 56%, #f1e8de 100%);
}

body.page-case-studies {
  background:
    radial-gradient(circle at 10% 10%, rgba(53, 95, 90, 0.14), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(53, 95, 90, 0.07), transparent 18%),
    linear-gradient(180deg, #fbfaf7 0%, #f1ece5 58%, #ece5dc 100%);
}

body.page-post {
  background:
    radial-gradient(circle at 84% 10%, rgba(146, 82, 55, 0.12), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(154, 119, 65, 0.05), transparent 16%),
    linear-gradient(180deg, #fcfaf7 0%, #f4ece4 56%, #efe7de 100%);
}

a {
  color: inherit;
  text-decoration-color: rgba(155, 73, 44, 0.35);
  text-underline-offset: 0.18em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  color: var(--accent-deep);
  text-decoration-color: rgba(113, 50, 31, 0.42);
}

::selection {
  background: rgba(146, 82, 55, 0.16);
  color: var(--ink);
}

.page-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding: 10px 0 0;
}

.site-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.site-portrait {
  margin: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
  border: 1px solid rgba(219, 207, 194, 0.9);
  box-shadow: 0 10px 20px rgba(58, 44, 32, 0.08);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(246, 239, 231, 0.96));
}

.site-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.site-kicker,
.meta,
.eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-meta);
  line-height: 1.35;
  color: var(--accent);
  font-family: var(--sans);
}

.site-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-family: var(--sans);
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.94rem;
  padding: 0.2rem 0;
  position: relative;
}

nav a.active,
nav a:hover {
  color: var(--ink);
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(146, 82, 55, 0.8), rgba(53, 95, 90, 0.55));
}

.hero {
  position: relative;
  padding: 2px 0 6px;
  max-width: 820px;
}

.hero h1 {
  margin: 0 0 10px;
  max-width: 700px;
  font-size: var(--title-hero);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
  font-family: var(--display);
  font-weight: 600;
}

.lead {
  max-width: 760px;
  margin: 0;
  font-size: var(--text-body-strong);
  line-height: 1.56;
  color: var(--muted);
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.diagram-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 242, 233, 0.94));
  border: 1px solid rgba(219, 207, 194, 0.92);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(58, 44, 32, 0.08);
  overflow: hidden;
}

.diagram-card svg,
.post-diagram svg {
  display: block;
  width: 100%;
  height: auto;
}

.diagram-line {
  fill: none;
  stroke: rgba(23, 20, 18, 0.36);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.diagram-label {
  font-family: var(--sans);
  font-size: 14px;
  fill: #5f5954;
  letter-spacing: 0.01em;
}

.diagram-title {
  font-family: var(--display);
  font-size: 22px;
  fill: #211b17;
}

.tone-a {
  fill: rgba(243, 248, 246, 0.96);
  stroke: rgba(46, 90, 84, 0.22);
}

.tone-b {
  fill: rgba(252, 245, 239, 0.96);
  stroke: rgba(155, 73, 44, 0.20);
}

.tone-c {
  fill: rgba(247, 243, 232, 0.96);
  stroke: rgba(151, 118, 51, 0.20);
}

.tone-d {
  fill: rgba(255, 253, 249, 0.98);
  stroke: rgba(23, 20, 18, 0.12);
}

.tone-e {
  fill: rgba(250, 245, 238, 0.96);
  stroke: rgba(113, 50, 31, 0.15);
}

.hero-kickerline {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--muted);
}

.bio-strip {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(219, 207, 194, 0.82);
}

.bio-strip p {
  margin: 0;
  max-width: 860px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.56;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2a2420;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(219, 207, 194, 0.92);
  border-radius: 999px;
  padding: 0.76rem 1.02rem;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(248, 241, 233, 0.82));
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button-link:hover {
  transform: translateY(-1px);
  border-color: rgba(113, 50, 31, 0.42);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(244, 236, 226, 0.9));
  box-shadow: 0 14px 28px rgba(74, 51, 37, 0.08);
}

.button-link.primary {
  background: linear-gradient(135deg, #211915, #392620);
  color: #fff8f2;
  border-color: rgba(33, 25, 21, 0.92);
}

.section {
  margin-top: 34px;
}

.page-intro {
  margin-top: 8px;
  margin-bottom: 16px;
}

.page-hero {
  position: relative;
  max-width: 860px;
  margin: 10px 0 26px;
  padding: 6px 0 0;
}

.page-hero::before,
.page-hero::after {
  content: none;
}

.page-hero-copy {
  position: relative;
  max-width: 760px;
  padding-bottom: 14px;
}

.page-hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 108px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(146, 82, 55, 0.8), rgba(53, 95, 90, 0.62), rgba(154, 119, 65, 0.58));
}

.page-hero h1 {
  margin: 0 0 10px;
  max-width: 740px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.034em;
  text-wrap: balance;
  font-family: var(--display);
  font-weight: 600;
}

.page-hero .lead {
  max-width: 44rem;
  margin: 0;
}

.section-frame {
  position: relative;
  padding: 22px 24px 24px;
  border: 1px solid rgba(221, 209, 196, 0.9);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(55, 39, 27, 0.05);
  overflow: hidden;
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  opacity: 0.52;
}

.section-frame-spotlight {
  background:
    radial-gradient(circle at 0% 0%, rgba(146, 82, 55, 0.055), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(154, 119, 65, 0.025), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(247, 241, 234, 0.95));
}

.section-frame-spotlight::before {
  background: linear-gradient(90deg, rgba(153, 140, 128, 0.42), rgba(209, 200, 190, 0.2));
}

.section-frame-explore {
  background:
    radial-gradient(circle at 100% 0%, rgba(154, 119, 65, 0.035), transparent 22%),
    radial-gradient(circle at 0% 0%, rgba(146, 82, 55, 0.02), transparent 24%),
    linear-gradient(180deg, rgba(251, 249, 245, 0.98), rgba(246, 243, 238, 0.95));
  border-color: rgba(219, 210, 199, 0.9);
}

.section-frame-explore::before {
  background: linear-gradient(90deg, rgba(146, 136, 126, 0.3), rgba(201, 190, 178, 0.16));
}

.section-frame-open-source {
  background:
    radial-gradient(circle at 100% 0%, rgba(154, 119, 65, 0.045), transparent 22%),
    radial-gradient(circle at 0% 0%, rgba(146, 82, 55, 0.02), transparent 24%),
    linear-gradient(180deg, rgba(252, 249, 243, 0.98), rgba(246, 242, 234, 0.95));
  border-color: rgba(221, 212, 198, 0.92);
}

.section-frame-open-source::before {
  background: linear-gradient(90deg, rgba(138, 129, 116, 0.34), rgba(199, 190, 175, 0.18));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head-stack {
  display: block;
}

.section-head-stack h2 {
  margin-bottom: 4px;
}

.section-head-stack .section-note {
  max-width: 28rem;
}

.work-section .section-note {
  max-width: none;
}

.section-head-stack a {
  display: inline-flex;
  margin-top: 8px;
}

.section-head a {
  color: var(--accent-deep);
  text-decoration: none;
  font-family: var(--sans);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.section-head a:hover {
  color: var(--ink);
}

.section-head h2,
.panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.24rem, 1.95vw, 1.46rem);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.prose h1 {
  margin: 0 0 12px;
  font-size: var(--title-page);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.prose h2 {
  margin: 28px 0 12px;
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.18;
}

.section-note {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.5;
}

.two-column,
.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
}

.page-intro-panel {
  max-width: 760px;
  background:
    radial-gradient(circle at top right, rgba(53, 95, 90, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.97), rgba(246, 239, 231, 0.97));
}

.page-intro-panel p:last-child {
  max-width: 40rem;
  color: var(--muted);
}

.page-hero + .section,
.page-intro + .section {
  margin-top: 18px;
}

.page-about .page-hero + .section {
  margin-top: 8px;
}

.page-about .page-hero {
  margin-bottom: 12px;
}

.page-about .page-hero-copy {
  padding-bottom: 8px;
}

.panel,
.post-card,
.project-card,
.post-list-item,
.post-page,
.spotlight-card,
.proof-card,
.path-card,
.timeline-item,
.external-card {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(252, 247, 240, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px var(--shadow);
}

.panel,
.post-card,
.project-card,
.post-list-item,
.post-page,
.spotlight-card,
.proof-card,
.path-card,
.timeline-item {
  padding: 22px;
}

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

.external-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

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

.jump-grid {
  display: grid;
  gap: 10px;
}

.about-layout {
  display: block;
}

.about-main-column {
  display: grid;
  gap: 22px;
  max-width: 100%;
}

.about-photo-card {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(249, 242, 234, 0.94));
  border: 1px solid rgba(217, 204, 191, 0.88);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(61, 43, 30, 0.06);
  overflow: hidden;
}

.about-intro {
  padding-top: 2px;
  max-width: 920px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 212px;
  gap: 22px;
  align-items: start;
  max-width: 920px;
}

.about-story-copy {
  display: grid;
  gap: 18px;
  order: 1;
}

.about-story-copy-standalone {
  max-width: 920px;
}

.about-copy-block h2 {
  margin: 0 0 10px;
  color: #35534f;
  font-size: clamp(1.08rem, 1.95vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  text-wrap: balance;
  font-family: var(--sans);
  font-weight: 700;
}

.about-copy-block .eyebrow {
  margin-bottom: 8px;
}

.about-photo {
  display: block;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(247, 242, 233, 0.94));
}

.about-photo img,
.about-photo-visual {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.about-photo-visual {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about-photo-card-side {
  align-self: start;
  justify-self: end;
  padding: 10px;
  margin: 0;
  width: 212px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(61, 43, 30, 0.055);
}

.page-about .page-hero-copy,
.page-about .lead,
.page-about .about-intro,
.page-about .about-story-copy-standalone,
.page-about .about-copy-block {
  max-width: 920px;
}

.jump-scroller {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.jump-scroller::-webkit-scrollbar {
  display: none;
}

.jump-area-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214, 201, 188, 0.78);
  background: rgba(255, 252, 247, 0.86);
  font-size: 0.88rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.2;
}

.jump-area-link:hover {
  color: var(--accent-deep);
  border-color: rgba(146, 82, 55, 0.28);
}

.oracle-blogs-section {
  margin-top: 16px;
}

.oracle-blogs-head {
  gap: 6px;
}

.oracle-blogs-list {
  max-width: 760px;
}

.oracle-blogs-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(217, 204, 191, 0.72);
}

.oracle-blogs-list li {
  border-bottom: 1px solid rgba(217, 204, 191, 0.72);
}

.oracle-blogs-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}

.oracle-blogs-list a span {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: -0.012em;
}

.oracle-blogs-list a small {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.oracle-blogs-list a:hover span {
  color: var(--accent-deep);
}

.oracle-blogs-link {
  display: inline-flex;
  font-size: 0.86rem;
  color: var(--accent-deep);
  text-decoration: none;
}

.oracle-blogs-link-head {
  margin-top: 0;
}

.oracle-blogs-link:hover {
  text-decoration: underline;
}

.case-study-groups {
  display: grid;
  gap: 26px;
}

.case-group {
  display: grid;
  gap: 14px;
}

.case-group-head {
  align-items: baseline;
}

.project-card,
.post-card,
.feature-card {
  height: 100%;
}

.feature-card,
.focus-card,
.showcase-card,
.post-list-item,
.timeline-item {
  position: relative;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(249, 242, 234, 0.94));
  border: 1px solid rgba(217, 204, 191, 0.88);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(61, 43, 30, 0.06);
  padding: 22px 20px 21px;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
}

.feature-card:nth-child(1)::before {
  background: rgba(170, 161, 150, 0.28);
}

.feature-card:nth-child(2)::before {
  background: rgba(170, 161, 150, 0.28);
}

.feature-card:nth-child(3)::before {
  background: rgba(170, 161, 150, 0.28);
}

.feature-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border-color: rgba(214, 208, 199, 0.88);
}

.feature-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border-color: rgba(214, 208, 199, 0.88);
}

.feature-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(250, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border-color: rgba(214, 208, 199, 0.88);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: var(--title-card);
  line-height: 1.16;
  text-wrap: balance;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.018em;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.proof-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.external-card {
  padding: 20px 22px;
  position: relative;
}

.external-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
  text-wrap: balance;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.016em;
}

.external-card .meta {
  margin-bottom: 12px;
  font-size: 0.69rem;
  line-height: 1.45;
}

.external-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(255, 252, 247, 0.84));
  box-shadow: inset 0 3px 0 rgba(155, 73, 44, 0.24), 0 18px 40px rgba(55, 36, 20, 0.06);
}

.external-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(243, 247, 244, 0.98), rgba(255, 252, 247, 0.84));
  box-shadow: inset 0 3px 0 rgba(46, 90, 84, 0.2), 0 18px 40px rgba(55, 36, 20, 0.06);
}

.external-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(247, 243, 232, 0.98), rgba(255, 252, 247, 0.84));
  box-shadow: inset 0 3px 0 rgba(151, 118, 51, 0.22), 0 18px 40px rgba(55, 36, 20, 0.06);
}

.project-card,
.post-card,
.path-card,
.focus-card,
.spotlight-card,
.feature-card,
.post-list-item,
.timeline-item {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.project-card:hover,
.post-card:hover,
.path-card:hover,
.focus-card:hover,
.spotlight-card:hover,
.feature-card:hover,
.post-list-item:hover,
.timeline-item:hover {
  transform: translateY(-2px);
  border-color: rgba(113, 50, 31, 0.28);
  box-shadow: 0 22px 52px rgba(40, 29, 20, 0.09);
}

.project-card h3,
.post-card h3,
.post-list-item h2,
.path-card h3,
.focus-card h3,
.spotlight-card h2,
.timeline-item h2 {
  margin: 0 0 10px;
  font-size: var(--title-card);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.16;
}

.post-list,
.timeline {
  display: grid;
  gap: 16px;
}

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

.diagram-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-diagram-card {
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(247, 241, 233, 0.9));
  border-color: rgba(217, 204, 191, 0.78);
}

.mini-diagram-card .meta {
  margin-bottom: 10px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 242, 235, 0.92));
  box-shadow: 0 16px 30px rgba(61, 43, 30, 0.055);
}

.proof-card:nth-child(1)::before {
  background: rgba(155, 73, 44, 0.28);
}

.proof-card:nth-child(2)::before {
  background: rgba(46, 90, 84, 0.28);
}

.proof-card:nth-child(3)::before {
  background: rgba(151, 118, 51, 0.26);
}

.proof-value {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #1c1714;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  text-wrap: balance;
}

.proof-label {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.proof-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.42;
  color: #2f2a25;
}

.proof-card p:last-child {
  -webkit-line-clamp: 3;
}

.spotlight-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(250, 244, 236, 0.94));
  border-color: rgba(155, 73, 44, 0.18);
  border-radius: 16px;
  padding: 16px 18px 15px;
  box-shadow: 0 12px 28px rgba(113, 50, 31, 0.06);
  position: relative;
}

.spotlight-band {
  margin-top: 24px;
}

.spotlight-main {
  min-width: 0;
}

.spotlight-card h2 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.1;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, rgba(146, 82, 55, 0.7), rgba(154, 119, 65, 0.45));
}

.spotlight-summary {
  margin: 0;
  max-width: 560px;
  color: #3b332d;
}

.spotlight-footer,
.path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.spotlight-footer {
  flex-shrink: 0;
  min-width: 165px;
  margin-top: 0;
  justify-content: flex-end;
}

.spotlight-meta,
.spotlight-link,
.path-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.2;
}

.spotlight-meta {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.spotlight-link {
  text-decoration: none;
  color: var(--accent-deep);
  white-space: nowrap;
}

.spotlight-link:hover {
  color: var(--ink);
}

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

.path-card {
  background: rgba(255, 251, 246, 0.88);
  border-radius: 16px;
}

.path-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(232, 243, 239, 0.98), rgba(252, 248, 242, 0.92));
  border-color: rgba(53, 95, 90, 0.2);
}

.path-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(252, 238, 229, 0.98), rgba(255, 249, 242, 0.92));
  border-color: rgba(146, 82, 55, 0.2);
}

.path-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(248, 241, 221, 0.98), rgba(255, 250, 242, 0.92));
  border-color: rgba(154, 119, 65, 0.22);
}

.path-card p,
.focus-card p {
  font-size: 0.95rem;
  line-height: 1.52;
}

.work-section {
  margin-top: 28px;
}

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

.focus-card {
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(61, 43, 30, 0.055);
  padding: 22px;
  min-height: 100%;
}

.focus-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border-color: rgba(214, 208, 199, 0.88);
}

.focus-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border-color: rgba(214, 208, 199, 0.88);
}

.focus-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.98), rgba(246, 242, 236, 0.94));
  border-color: rgba(214, 208, 199, 0.88);
}

.focus-card h3 {
  margin: 0 0 7px;
  font-size: 1.06rem;
  line-height: 1.15;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.focus-detail {
  margin: 0;
  color: #2c2622;
  line-height: 1.52;
}

.path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.path-links a {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.path-links a:hover {
  color: var(--ink);
}

.showcase-section {
  margin-top: 24px;
}

.showcase-section.section-frame {
  padding: 14px 16px 16px;
}

.showcase-head {
  margin-bottom: 10px;
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.showcase-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 204, 191, 0.84);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(247, 241, 233, 0.88));
  color: #473f39;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.showcase-tab[data-showcase-target="workspace"] {
  background: linear-gradient(180deg, rgba(235, 220, 230, 0.98), rgba(224, 207, 219, 0.94));
  border-color: rgba(173, 134, 162, 0.9);
}

.showcase-tab[data-showcase-target="functions"] {
  background: linear-gradient(180deg, rgba(247, 226, 214, 0.98), rgba(238, 210, 192, 0.94));
  border-color: rgba(197, 136, 103, 0.9);
}

.showcase-tab[data-showcase-target="delivery"] {
  background: linear-gradient(180deg, rgba(245, 233, 203, 0.98), rgba(235, 219, 179, 0.94));
  border-color: rgba(181, 151, 86, 0.9);
}

.showcase-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(113, 50, 31, 0.3);
  color: var(--ink);
}

.showcase-tab.active {
  color: var(--ink);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45), 0 10px 22px rgba(61, 43, 30, 0.045);
}

.showcase-panels {
  position: relative;
}

.showcase-card {
  background: linear-gradient(180deg, rgba(251, 249, 245, 0.98), rgba(246, 242, 236, 0.95));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(61, 43, 30, 0.055);
  padding: 14px 14px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.showcase-card[hidden] {
  display: none;
}

.showcase-card.active {
  animation: showcaseFade 180ms ease;
}

.showcase-panel-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.showcase-card h3 {
  margin: 0 0 5px;
  font-size: clamp(0.96rem, 1.4vw, 1.04rem);
  line-height: 1.12;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.showcase-card .meta {
  margin-bottom: 5px;
  color: rgba(113, 50, 31, 0.78);
}

.showcase-summary {
  max-width: 34rem;
  font-size: 0.9rem;
  line-height: 1.42;
}

.showcase-tone-functions {
  background:
    radial-gradient(circle at top right, rgba(146, 82, 55, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(252, 248, 243, 0.98), rgba(247, 241, 234, 0.95));
}

.showcase-tone-workspace {
  background:
    radial-gradient(circle at top right, rgba(125, 93, 110, 0.085), transparent 24%),
    linear-gradient(180deg, rgba(249, 246, 247, 0.98), rgba(244, 240, 242, 0.95));
}

.showcase-tone-delivery {
  background:
    radial-gradient(circle at top right, rgba(154, 119, 65, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(246, 241, 233, 0.95));
}

.showcase-tone-functions,
.showcase-tab[data-showcase-target="functions"].active {
  border-color: rgba(218, 199, 188, 0.88);
}

.showcase-tone-workspace,
.showcase-tab[data-showcase-target="workspace"].active {
  border-color: rgba(203, 191, 198, 0.88);
}

.showcase-tone-delivery,
.showcase-tab[data-showcase-target="delivery"].active {
  border-color: rgba(220, 209, 188, 0.88);
}

.showcase-card .spotlight-link {
  margin-top: 0;
  padding-top: 0;
  font-size: 0.74rem;
  flex-shrink: 0;
}

@keyframes showcaseFade {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-list-item,
.timeline-item {
  position: relative;
  overflow: hidden;
}

.post-list-item::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(164, 154, 142, 0.28), rgba(214, 206, 196, 0.16));
}

.post-list-item:nth-child(3n + 1),
.timeline-item:nth-child(3n + 1) {
  background: linear-gradient(180deg, rgba(251, 251, 249, 0.98), rgba(246, 247, 243, 0.96));
}

.post-list-item:nth-child(3n + 2),
.timeline-item:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(251, 251, 249, 0.98), rgba(246, 247, 243, 0.96));
}

.post-list-item:nth-child(3n),
.timeline-item:nth-child(3n) {
  background: linear-gradient(180deg, rgba(251, 251, 249, 0.98), rgba(246, 247, 243, 0.96));
}

.timeline-item::before {
  background: linear-gradient(90deg, rgba(164, 154, 142, 0.28), rgba(214, 206, 196, 0.16));
}

.timeline-item h2 {
  max-width: 34rem;
}

.post-list-item h2 a,
.timeline-item h2 {
  text-wrap: balance;
}

.post-list-item h2 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.study-head {
  margin-bottom: 14px;
}

.study-problem-copy {
  margin: 0 0 14px;
  max-width: 40rem;
  color: #3d3530;
}

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

.study-signal {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(217, 204, 191, 0.72);
}

.study-signal p:last-child {
  margin: 0;
  color: #2b2521;
}

.elsewhere-links {
  display: grid;
  gap: 14px;
}

.elsewhere-links a {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(217, 204, 191, 0.82);
}

.elsewhere-links a:hover {
  color: var(--accent-deep);
  border-bottom-color: rgba(123, 49, 24, 0.3);
}

.simple-footer {
  margin-top: 22px;
}

.site-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 204, 191, 0.72);
  background: none;
  border-radius: 0;
}

.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.compact-links a {
  font-size: 0.94rem;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--muted);
}

.compact-links a:hover {
  color: var(--ink);
}

.prose p,
.post-card p,
.project-card p,
.post-list-item p,
.panel p,
.panel li,
.prose li,
.feature-card p,
.timeline-item p,
.timeline-item li {
  font-size: var(--text-body);
  line-height: 1.64;
  color: #29231f;
}

.prose ul,
.panel ul,
.timeline-item ul {
  padding-left: 22px;
  margin: 0;
}

.post-summary {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

.site-name {
  font-family: var(--sans);
}

.panel h2,
.section-head h2,
.prose h1,
.prose h2,
.hero h1,
.page-hero h1 {
  letter-spacing: -0.02em;
}

.back-link {
  margin-top: 28px;
}

.post-page {
  max-width: 760px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(146, 82, 55, 0.06), transparent 26%),
    radial-gradient(circle at top left, rgba(53, 95, 90, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.99), rgba(249, 242, 234, 0.97));
}

.post-diagram {
  max-width: 680px;
  margin: 18px auto 24px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 201, 188, 0.94);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(154, 119, 65, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(53, 95, 90, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 242, 233, 0.95));
  box-shadow: 0 10px 22px rgba(58, 44, 32, 0.07);
}

.page-writing .post-list-item::before {
  background: linear-gradient(90deg, rgba(164, 154, 142, 0.28), rgba(214, 206, 196, 0.16));
}

.page-case-studies .timeline-item::before {
  background: linear-gradient(90deg, rgba(53, 95, 90, 0.34), rgba(53, 95, 90, 0.22), rgba(154, 119, 65, 0.18));
}

.page-writing .page-hero h1,
.page-writing .section-head h2,
.page-writing .feature-card h3 a,
.page-writing .post-list-item h2 a {
  color: #35534f;
}

.page-home .hero h1,
.page-about .page-hero h1,
.page-about .about-copy-block h2,
.page-case-studies .page-hero h1,
.page-case-studies .section-head h2,
.page-case-studies .timeline-item h2 {
  color: #35534f;
}

.page-case-studies .study-head .meta {
  color: rgba(53, 95, 90, 0.8);
}

.page-post .prose h1,
.page-post .prose h2 {
  color: #35534f;
}

.page-case-studies .diagram-band {
  max-width: 920px;
}

.page-case-studies .mini-diagram-card:nth-child(1) {
  background:
    radial-gradient(circle at top right, rgba(146, 82, 55, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 241, 0.98), rgba(250, 242, 235, 0.94));
}

.page-case-studies .mini-diagram-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(53, 95, 90, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(242, 249, 246, 0.99), rgba(240, 245, 239, 0.95));
}

code {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--accent-soft);
  padding: 0.08em 0.35em;
  border-radius: 6px;
}

@media (max-width: 860px) {
  .proof-grid,
  .card-grid,
  .path-grid,
  .diagram-band,
  .showcase-grid,
  .external-grid,
  .feature-grid,
  .jump-grid,
  .study-grid,
  .two-column,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-layout {
    gap: 18px;
  }

  .about-main-column {
    gap: 18px;
  }

  .about-photo-card-side {
    max-width: 220px;
    margin: 0;
    justify-self: start;
  }

  .oracle-blogs-list a {
    display: block;
  }

  .oracle-blogs-list a small {
    display: block;
    margin-top: 5px;
  }

  .site-header,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    margin-bottom: 30px;
  }

  nav {
    margin-top: 8px;
  }

  .hero {
    padding-top: 4px;
  }

  .page-hero {
    margin-bottom: 22px;
  }

  .spotlight-card {
    display: block;
  }

  .showcase-card {
    display: block;
  }

  .showcase-card .spotlight-link {
    display: inline-flex;
    margin-top: 8px;
  }

  .showcase-head .section-note {
    max-width: none;
    text-align: left;
  }

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

  .showcase-stack {
    grid-template-columns: 1fr;
  }

  .spotlight-footer {
    min-width: 0;
    margin-top: 12px;
    justify-content: space-between;
  }

  .panel,
  .post-card,
  .project-card,
  .post-list-item,
  .post-page,
  .spotlight-card,
  .proof-card,
  .path-card,
  .timeline-item,
  .feature-card,
  .external-card {
    padding: 18px;
  }

  .section-frame {
    padding: 18px 18px 20px;
    border-radius: 24px;
  }
}
