/* Palette seed: IT BUYBACK → hue 342 */
:root {
  --accent-hue: 342;
  --accent-two-hue: 39;
  --bg-hue: 202;
  --accent: hsl(342, 72%, 58%);
  --accent-two: hsl(39, 80%, 61%);
  --bg: hsl(202, 34%, 8%);
  --text: hsl(202, 20%, 96%);
  --panel: color-mix(in srgb, var(--bg) 72%, hsl(202, 22%, 18%));
  --muted: color-mix(in srgb, var(--text) 62%, transparent);
  --line: color-mix(in srgb, var(--text) 14%, transparent);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font: "Manrope", system-ui, sans-serif;
  --header-h: 76px;
  --max: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(circle at 20% 14%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 52%),
    radial-gradient(circle at 80% 6%, color-mix(in srgb, var(--accent-two) 18%, transparent), transparent 48%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.grid {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 1rem 0;
  background: linear-gradient(to bottom, var(--bg) 55%, transparent);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  background: color-mix(in srgb, var(--panel) 80%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: var(--bg);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--text) 6%, transparent);
}

.header-cta {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: var(--bg);
  white-space: nowrap;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  padding: 0 9px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s;
}

.menu-btn.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── Shared ── */
main {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-two);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: var(--bg);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent) 35%, transparent);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--wide {
  width: 100%;
}

/* ── Hero ── */
.hero {
  padding-top: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 7rem);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.9rem 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}

.hero-lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-two);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.hero-orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.orbit-ring--mid {
  inset: 12%;
  border-color: color-mix(in srgb, var(--accent) 25%, var(--line));
}

.orbit-ring--inner {
  inset: 24%;
  border-color: color-mix(in srgb, var(--accent-two) 30%, var(--line));
}

.hero-monogram {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: rotate(2deg);
  box-shadow: 0 28px 70px color-mix(in srgb, var(--bg) 50%, transparent);
}

.hero-letter {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-words {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.hero-float {
  position: absolute;
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-float span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-float small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-float--a {
  top: 8%;
  right: 0;
  transform: rotate(-3deg);
}

.hero-float--b {
  bottom: 10%;
  left: 0;
  transform: rotate(4deg);
}

.hero-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: color-mix(in srgb, var(--panel) 65%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-strip-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.hero-strip-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-strip-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* ── Profile ── */
.profile {
  display: grid;
  grid-template-columns: 56px 1fr 220px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.profile-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.profile-index-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.profile-index-line {
  flex: 1;
  width: 1px;
  min-height: 120px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.profile-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.profile-pull {
  margin: 0 0 1.75rem;
  padding: 1.1rem 0 1.1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.profile-pull p {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.profile-pull em {
  font-style: normal;
  color: var(--accent-two);
}

.profile-text {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 58ch;
  margin-bottom: 1.75rem;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.profile-fact {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--line);
}

.profile-fact dt {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.profile-fact dd {
  font-size: 0.9rem;
  font-weight: 700;
}

.profile-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.pillar-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.pillar-icon--a {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 40%, transparent));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.pillar-icon--b {
  background: linear-gradient(135deg, var(--accent-two), color-mix(in srgb, var(--accent-two) 40%, transparent));
  border-radius: 50%;
}

.pillar-icon--c {
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.profile-pillar strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}

.profile-pillar span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Areas (bento) ── */
.areas {
  border-top: 1px solid var(--line);
}

.areas-head {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: var(--gap);
  align-items: end;
  margin-bottom: var(--gap);
}

.areas-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.areas-sub {
  margin-top: 0.6rem;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1rem;
}

.areas-note {
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  text-align: right;
}

.areas-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 0.85rem;
}

.bento-cell {
  position: relative;
  padding: 1.35rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.bento-cell:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.bento-cell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%);
  pointer-events: none;
}

.bento-cell--a {
  grid-column: span 7;
}

.bento-cell--b {
  grid-column: span 5;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-cell--c {
  grid-column: span 7;
}

.bento-cell--d {
  grid-column: span 12;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bento-cell--d .bento-num,
.bento-cell--d h3 {
  width: 100%;
}

.bento-cell--d p {
  flex: 1;
  max-width: 70ch;
  margin-bottom: 0;
}

.bento-cell--d .bento-tag {
  margin-top: 0;
}

.bento-cell--accent {
  background: color-mix(in srgb, var(--panel) 50%, var(--accent) 10%);
}

.bento-cell--accent-two {
  background: color-mix(in srgb, var(--panel) 50%, var(--accent-two) 9%);
}

.bento-num {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.bento-cell h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  max-width: 28ch;
}

.bento-cell p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42ch;
}

.bento-tag {
  display: inline-block;
  margin-top: auto;
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--accent-two) 18%, transparent);
  color: var(--accent-two);
}

/* ── Process (timeline) ── */
.process {
  border-top: 1px solid var(--line);
}

.process-head {
  margin-bottom: 2.5rem;
}

.process-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.process-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-two));
  opacity: 0.45;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.process-node {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--bg) 80%, transparent);
}

.process-step:nth-child(even) .process-node {
  border-color: var(--accent-two);
  border-radius: 6px;
  transform: rotate(45deg);
}

.process-step:nth-child(even) .process-num {
  transform: rotate(-45deg);
}

.process-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.process-step:nth-child(even) .process-num {
  color: var(--accent-two);
}

.process-card {
  padding: 1.25rem 1rem 1.35rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  width: 100%;
  min-height: 180px;
}

.process-step:nth-child(odd) .process-card {
  border-top: 2px solid var(--accent);
}

.process-step:nth-child(even) .process-card {
  border-top: 2px solid var(--accent-two);
  margin-top: 0.5rem;
}

.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.process-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Contact (split shell) ── */
.contact {
  border-top: 1px solid var(--line);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--panel) 80%, var(--accent) 4%);
  border-right: 1px solid var(--line);
}

.contact-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.contact-lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 36ch;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-row:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-key {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.15rem;
}

.contact-val {
  font-size: 0.92rem;
  font-weight: 600;
  word-break: break-word;
}

.contact-val--link:hover {
  color: var(--accent-two);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--panel);
}

.form-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  font-size: 0.85rem;
  font-weight: 700;
}

.form-head small {
  font-size: 0.72rem;
  color: var(--muted);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}

.contact-form .btn {
  grid-column: 1 / -1;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1rem 2.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Breakpoints ── */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 4px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: color-mix(in srgb, var(--panel) 94%, transparent);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 300px;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-strip-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .profile-index {
    flex-direction: row;
    writing-mode: horizontal-tb;
  }

  .profile-index-num {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .profile-index-line {
    width: auto;
    height: 1px;
    min-height: 0;
    flex: 1;
    background: linear-gradient(90deg, var(--accent), transparent);
  }

  .profile-pillars {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .profile-pillar {
    flex: 1 1 200px;
  }

  .areas-head {
    grid-template-columns: 1fr;
  }

  .areas-note {
    text-align: left;
  }

  .bento-cell--a,
  .bento-cell--b,
  .bento-cell--c,
  .bento-cell--d {
    grid-column: span 12;
    grid-row: span 1;
    display: block;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .process-track::before {
    display: none;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-pillars {
    flex-direction: column;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
