:root {
  --bg: #e9e7e2;
  --panel: #dedbd4;
  --panel2: #d6d2cb;

  --border: #8f8b84;
  --border2: #a7a39b;

  --text: #1b1b1b;
  --muted: #3c3c3c;
  --muted2: #5a5a5a;
  --subtle: #70706a;

  --teal: #5fb3a2;
  --amber: #F7C410;  /* required yellow */
  --amberText: #C99700;
  --blue: #4d7cfe;
  --red: #ED382C;    /* required red */

  --radius: 12px;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.35;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(95,179,162,0.12), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(237,56,44,0.08), transparent 55%),
    radial-gradient(900px 600px at 30% 90%, rgba(77,124,254,0.08), transparent 55%),
    radial-gradient(800px 600px at 85% 85%, rgba(247,196,16,0.08), transparent 55%),
    var(--bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.t-title {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: normal;
}

.t-subtitle {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: normal;
}

.t-body {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: normal;
}

.t-label {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.t-label--inline {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.t-meta {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 22px;
}

/* Header */
.top-card {
  padding: 18px;
}

.top__titleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top__titleRow .social {
  margin-left: auto;
}

.name {
  margin: 0;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.08em;
}

.subtitle {
  margin: 10px 0 12px 0;
  color: var(--muted);
  font-size: 13px;
}

/* Status */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted2);
  text-transform: uppercase;
}
.status__value { color: var(--text); opacity: 0.9; font-weight: 600; }
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(95,179,162,0.22);
}
.status--compact {
  font-size: 10px;
  letter-spacing: 0.08em;
}

/* Social: colored by default, grey on hover */
.social { display: flex; gap: 10px; }
.iconlink {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.iconlink svg { width: 18px; height: 18px; transition: fill 120ms ease; }

/* default = colored */
.iconlink--red svg   { fill: var(--red); }
.iconlink--blue svg  { fill: var(--blue); }
.iconlink--amber svg { fill: var(--amberText); }

/* hover = grey */
.iconlink:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(143,139,132,0.85);
}
.iconlink:hover svg { fill: var(--muted2); }

/* hover = colored highlight like project titles */
.iconlink--teal:focus-visible,
.iconlink--teal:hover {
  background: rgba(95,179,162,0.16);
  box-shadow: 0 0 0 2px rgba(95,179,162,0.22);
  border-color: rgba(95,179,162,0.45);
}
.iconlink--blue:focus-visible,
.iconlink--blue:hover {
  background: rgba(77,124,254,0.12);
  box-shadow: 0 0 0 2px rgba(77,124,254,0.18);
  border-color: rgba(77,124,254,0.45);
}
.iconlink--amber:focus-visible,
.iconlink--amber:hover {
  background: rgba(247,196,16,0.16);
  box-shadow: 0 0 0 2px rgba(247,196,16,0.22);
  border-color: rgba(247,196,16,0.45);
}
.iconlink--red:focus-visible,
.iconlink--red:hover {
  background: rgba(237,56,44,0.12);
  box-shadow: 0 0 0 2px rgba(237,56,44,0.2);
  border-color: rgba(237,56,44,0.45);
}

.iconlink--teal:hover svg,
.iconlink--teal:focus-visible svg { fill: var(--teal); }
.iconlink--blue:hover svg,
.iconlink--blue:focus-visible svg { fill: var(--blue); }
.iconlink--amber:hover svg,
.iconlink--amber:focus-visible svg { fill: var(--amberText); }
.iconlink--red:hover svg,
.iconlink--red:focus-visible svg { fill: var(--red); }

/* Grid */
.grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 14px;
}
.col { display: grid; gap: 14px; align-content: start; }

/* Cards */
.card {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(0,0,0,0.08)), var(--panel);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset;
  padding: 16px;
}
.card__header { margin-bottom: 12px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.card.label--red,
.label--red {
  margin-bottom: 14px;
}

.item {
  padding-bottom: 6px;
}

.item + .divider {
  margin-top: 14px;
}


/* Labels */
.label {
  display: inline-block;
  padding: 6px 10px;
  border: 2px solid var(--border);
  background: var(--panel2);
  border-radius: 8px;
  font-size: 11px;
  text-transform: uppercase;
}
.label--big { font-size: 12px; padding: 7px 11px; }
.label--teal { color: var(--teal); }
.label--amber { color: var(--amberText); }
.label--blue { color: var(--blue); }
.label--red { color: var(--red); }

/* Divider */
.divider {
  margin: 18px 0;
  border-top: 1px dashed var(--border2);
  opacity: 0.9;
}

/* Tech */
.techline { font-size: 13px; color: var(--muted); line-height: 1.55; }
.kicker {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 6px;
}

/* Bullets */
.bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.bullets--tight { margin-top: 10px; }
.bullets li { margin: 5px 0; }
.bullets strong { color: var(--text); }

/* Experience */
.experienceCard .divider {
  margin: 14px 0;
}

.exp-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.exp-logo {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.exp-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exp-company {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.exp-stack {
  font-size: 12px;
  color: var(--subtle);
  line-height: 1.4;
}

.exp-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}

.exp-title {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 500;
}

.exp-date {
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  width: fit-content;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.08) inset;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
.brand-img { display: block; width: auto; height: 21px; }
.brand-img--ajn { height: 22px; }
.brand-img--shopify { height: 20px; }
.brand-img--kkc { height: 20px; }

.brand-sub { font-size: 11.5px; color: var(--subtle); }

.brand-pill:focus-visible,
.brand-pill:hover {
  transform: translateY(-1px);
}
.brand-pill--teal:focus-visible,
.brand-pill--teal:hover {
  background: rgba(95,179,162,0.16);
  box-shadow: 0 0 0 2px rgba(95,179,162,0.22);
  border-color: rgba(95,179,162,0.45);
}
.brand-pill--blue:focus-visible,
.brand-pill--blue:hover {
  background: rgba(77,124,254,0.12);
  box-shadow: 0 0 0 2px rgba(77,124,254,0.18);
  border-color: rgba(77,124,254,0.45);
}
.brand-pill--amber:focus-visible,
.brand-pill--amber:hover {
  background: rgba(247,196,16,0.16);
  box-shadow: 0 0 0 2px rgba(247,196,16,0.22);
  border-color: rgba(247,196,16,0.45);
}

/* Dates: blue/teal/yellow only */
.item__meta {
  font-size: 11px;
  text-transform: uppercase;
}
.date--teal  { color: var(--teal); }
.date--amber { color: var(--amberText); }
.date--blue  { color: var(--blue); }

/* Projects */
.proj__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  padding-left: 6px;
}
.proj__desc { margin-top: 4px; font-size: 12.5px; color: var(--muted2); }
.proj__stack { margin-top: 4px; font-size: 12px; color: var(--muted); }
.proj__desc,
.proj__stack {
  padding-left: 6px;
}
.proj__link {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  margin-left: -4px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: color 120ms ease, background 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
.proj__link:focus-visible,
.proj__link:hover {
  color: var(--blue);
  background: rgba(77,124,254,0.12);
  box-shadow: 0 0 0 2px rgba(77,124,254,0.18);
  border-color: rgba(77,124,254,0.45);
}
.proj__link--teal:focus-visible,
.proj__link--teal:hover {
  color: var(--teal);
  background: rgba(95,179,162,0.16);
  box-shadow: 0 0 0 2px rgba(95,179,162,0.22);
  border-color: rgba(95,179,162,0.45);
}

.proj__link--amber:focus-visible,
.proj__link--amber:hover {
  color: var(--amberText);
  background: rgba(247,196,16,0.16);
  box-shadow: 0 0 0 2px rgba(247,196,16,0.22);
  border-color: rgba(247,196,16,0.45);
}

.proj__link--red:focus-visible,
.proj__link--red:hover {
  color: var(--red);
  background: rgba(237,56,44,0.12);
  box-shadow: 0 0 0 2px rgba(237,56,44,0.2);
  border-color: rgba(237,56,44,0.45);
}

.resume-pill {
  gap: 8px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--muted2);
  text-decoration: none;
  line-height: 1;
  border-width: 2px;
}

.resume-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.resume-pill:hover svg,
.resume-pill:focus-visible svg {
  color: var(--teal);
}

.resume-pill:hover,
.resume-pill:focus-visible {
  color: var(--teal);
  background: rgba(95,179,162,0.16);
  box-shadow: 0 0 0 2px rgba(95,179,162,0.22);
  border-color: rgba(95,179,162,0.45);
}

.idCard__resume {
  margin-top: auto;
  align-self: flex-end;
}

/* Link */
.link {
  font-size: 11px;
  color: var(--muted2);
  text-decoration: none;
  text-transform: uppercase;
}
.link:hover { color: var(--text); }

.eduCard .card__header { 
  margin-bottom: 8px; 
}

.idCard__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
}

.idCard__main {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
}

.idCard__text {
  display: flex;
  flex-direction: column;
  min-height: 140px;
}

.idCard {
  position: relative;
}

.idCard .status--compact {
  position: absolute;
  top: 16px;
  right: 16px;
}

.idCard__status {
  margin-top: 6px;
}

.idCard__status--mobile {
  display: none;
}

.idCard__photo {
  width: 120px;
  height: 140px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.08) inset;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.idCard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.idCard__name {
  font-size: 13.5px;
}

.idCard__role {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
}

.idCard__location {
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--subtle);
}

.idCard__meta {
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted2);
}


.edu__school { margin-top: 0; }
.edu__prog { margin-top: 4px; }
.edu__school,
.edu__prog {
}
.edu__school {
  font-size: 13px;
}
.edu__prog {
  font-size: 12px;
  color: var(--muted2);
}

.edu__metaRow {
  margin-top: 6px;
  gap: 8px;
  display: flex;
  align-items: center;
}


.edu__meta {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted2);
}
.edu__meta--muted { color: var(--subtle); }

.edu__resume {
  display: none;
  margin-left: auto;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 920px) {
  .grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .col {
    display: contents;
  }
  .top-card { order: 1; }
  .idCard { order: 2; }
  .experienceCard { order: 3; }
  .projectsCard { order: 4; }
  .techCard { order: 5; }
  .eduCard { order: 6; }
  .idCard__main {
    grid-template-columns: 90px 1fr;
    align-items: start;
  }
  .idCard__photo { width: 90px; height: 110px; }
  .exp-row { grid-template-columns: 110px 1fr; row-gap: 6px; }
  .exp-logo { grid-row: 1 / span 2; align-self: center; }
  .exp-right { grid-column: 2; align-items: flex-start; text-align: left; }
  .name { font-size: 24px; }
  .idCard__text {
    min-height: auto;
  }
  .idCard__resume {
    display: none;
  }
  .edu__resume {
    display: inline-flex;
  }
  .idCard__top {
    display: none;
  }
  .idCard .status--compact {
    position: static;
  }
  .idCard__status--mobile {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .top__titleRow {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .name {
    font-size: 24px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
  }
  .top__titleRow .social {
    margin-left: 0;
    flex: 0 0 auto;
    gap: 6px;
  }
  .iconlink {
    width: 32px;
    height: 32px;
  }
  .iconlink svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .top__titleRow {
    flex-wrap: wrap;
  }
  .name {
    white-space: normal;
  }
  .top__titleRow .social {
    width: 100%;
    justify-content: flex-end;
    margin-top: -6px;
  }
}
/* Dualshot bullets */
.bullets li {
  position: relative;
  padding-left: 16px;
}

.bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.62em;
  background: var(--teal);
}

.eduCard {
  padding: 12px 16px;
}

.edu {
  margin: 0;
}

/* ===== FORCE Dualshot bullet dots (override) ===== */
ul.bullets {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 6px !important;
}

ul.bullets li {
  position: relative !important;
  padding-left: 16px !important;
  margin: 5px 0 !important;
}

ul.bullets li::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 999px !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.62em !important;
  background: var(--red) !important; /* fallback */
}

/* Cycle colors: teal -> red -> blue -> yellow */
ul.bullets li[data-bullet-mod="0"]::before { background: var(--teal) !important; }
ul.bullets li[data-bullet-mod="1"]::before { background: var(--red) !important; }
ul.bullets li[data-bullet-mod="2"]::before { background: var(--blue) !important; }
ul.bullets li[data-bullet-mod="3"]::before { background: var(--amber) !important; }

ul.bullets.bullets--tech li:nth-child(1)::before { background: var(--blue) !important; }
ul.bullets.bullets--tech li:nth-child(2)::before { background: var(--amber) !important; }
ul.bullets.bullets--tech li:nth-child(3)::before { background: var(--red) !important; }
