/* Demo: Priya Raman, new graduate.
   The problem this layout solves: a short history looks empty in a
   reverse-chronological list. So it does not use one. Projects and evidence
   come first and the timeline is small and late. Centred, generous and rounded,
   where the engineer demo is a dense two-column technical rail. */

:root {
  --bg:     #FFFFFF;
  --sunk:   #F3F7F4;
  --ink:    #14231C;
  --muted:  #5A6B62;
  --line:   #DFE7E2;
  --accent: #1F6F4A;
  --sans:   "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

.page { max-width: 780px; margin: 0 auto; padding: 0 24px 120px; }

/* ----------------------------------------------------------------- hero --- */
.hero { padding: 88px 0 56px; text-align: center; }

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(140deg, #2E9E6B, #1F6F4A);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero .role { margin: 12px 0 0; font-size: 19px; color: var(--muted); }

.hero .pitch { margin: 24px auto 0; max-width: 54ch; }

.badges { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.badges span {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--sunk);
  color: var(--accent);
}

.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 13px 26px;
  border-radius: 100px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.cta:hover { background: #17563A; }

/* -------------------------------------------------------------- sections --- */
section { margin-top: 64px; }

h2 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-sub { margin: 0 0 26px; color: var(--muted); font-size: 15px; }

.cards { display: grid; gap: 16px; }

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--bg);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: 0 8px 28px rgba(20, 35, 28, 0.08); transform: translateY(-2px); }

.card h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.card .meta { margin: 0 0 10px; font-size: 13px; color: var(--muted); font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

.card .stack { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.card .stack span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--sunk);
  color: var(--muted);
}

.timeline { border-left: 2px solid var(--line); padding-left: 22px; display: grid; gap: 22px; }
.entry { position: relative; }
.entry::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.entry b { display: block; font-weight: 700; }
.entry .where { color: var(--muted); font-size: 15px; }
.entry .when { font-size: 13px; color: var(--muted); font-weight: 600; }

.courses { display: flex; flex-wrap: wrap; gap: 8px; }
.courses span {
  font-size: 14px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.closing {
  margin-top: 72px;
  background: var(--sunk);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}
.closing h2 { color: var(--accent); }
.closing p { margin: 0 auto; max-width: 46ch; color: var(--muted); }

@media (max-width: 620px) {
  .hero { padding-top: 56px; }
  .closing { padding: 28px 22px; }
}

/* ------------------------------------------------ what a PDF can't do --- */
/* A new graduate's most useful information is what they WANT, and a resume has
   no place to put it. On a site it gets its own block near the top. */
.looking {
  margin-top: 64px;
  background: var(--sunk);
  border-radius: 20px;
  padding: 32px;
}
.looking h2 { color: var(--accent); }
.looking .grid2 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}
.looking dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.looking dd { margin: 0; font-size: 16px; font-weight: 600; }
.looking dd span { display: block; font-weight: 400; font-size: 14.5px; color: var(--muted); margin-top: 2px; }

/* The outcome is the part a bullet point flattens. Give it its own strip. */
.outcome {
  margin-top: 16px;
  padding: 13px 16px;
  background: var(--sunk);
  border-radius: 10px;
  font-size: 15px;
}
.outcome b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}

.quote-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.quote-card p { margin: 0; font-size: 17.5px; line-height: 1.55; }
.quote-card footer { margin-top: 16px; font-size: 14.5px; color: var(--muted); }
.quote-card footer b { color: var(--ink); font-weight: 700; display: block; }

.skillgroup { display: grid; gap: 18px; }
.skillrow {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.skillrow:last-child { border-bottom: 0; padding-bottom: 0; }
.skillrow dt { font-weight: 700; font-size: 15px; }
.skillrow dd { margin: 0; color: var(--muted); font-size: 15px; }

.avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 7px 15px;
  border-radius: 100px;
  background: var(--sunk);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 700;
}
.avail i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }

@media (max-width: 620px) {
  .looking { padding: 24px 20px; }
  .looking .grid2 { grid-template-columns: 1fr; }
  .skillrow { grid-template-columns: 1fr; gap: 4px; }
}
