/* ==========================================================================
   Vikrant Lal Das — Personal Brand Site
   Core stylesheet: design tokens, layout primitives, components
   ========================================================================== */

:root {
  /* Color */
  --c-black: #0b0b0c;
  --c-ink: #16181c;
  --c-charcoal: #232527;
  --c-white: #ffffff;
  --c-paper: #f8f7f4;
  --c-grey-100: #f1f0ec;
  --c-grey-200: #e7e5df;
  --c-grey-300: #d6d3cb;
  --c-grey-500: #918f87;
  --c-grey-700: #58564f;
  --c-border: #e2dfd8;
  --c-accent: #16345c;
  --c-accent-soft: #eef2f6;

  /* Type */
  --font-display: "General Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.6rem, 6.4vw, 6.25rem);
  --fs-h1: clamp(2.1rem, 4.2vw, 3.5rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 1.6vw, 1.5rem);
  --fs-lead: clamp(1.1rem, 1.6vw, 1.375rem);
  --fs-body: 1.05rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  --container-max: 1280px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-space: clamp(4.5rem, 9vw, 9rem);

  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-base: 0.6s;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-ink);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--c-black);
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

::selection { background: var(--c-accent); color: var(--c-white); }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.container-editorial {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad {
  padding-block: var(--section-space);
}

.bg-paper { background-color: var(--c-paper); }
.bg-black { background-color: var(--c-black); color: var(--c-white); }
.bg-black h1, .bg-black h2, .bg-black h3 { color: var(--c-white); }

/* --------------------------------------------------------------------------
   Eyebrow / section labels
   -------------------------------------------------------------------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-grey-700);
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-accent);
  display: inline-block;
}

.bg-black .eyebrow { color: var(--c-grey-300); }

.section-index {
  font-family: var(--font-display);
  color: var(--c-grey-300);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 1.5rem;
  transition: background-color var(--dur-base) var(--ease-editorial), padding var(--dur-base) var(--ease-editorial), box-shadow var(--dur-base) var(--ease-editorial);
}

.site-header .container-editorial {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 var(--c-border);
  padding-block: 1rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--c-black);
}

.brand-mark span { color: var(--c-accent); }

.nav-primary {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.nav-primary a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-charcoal);
  padding-bottom: 3px;
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.35s var(--ease-editorial);
}

.nav-primary a:hover::after,
.nav-primary a.is-active::after {
  width: 100%;
}

.nav-primary a.is-active { color: var(--c-accent); }

.nav-cta {
  border: 1px solid var(--c-black);
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2px;
  transition: background-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial);
}

.nav-cta:hover { background: var(--c-black); color: var(--c-white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--c-black);
  transition: transform 0.3s var(--ease-editorial), opacity 0.3s var(--ease-editorial);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  border: 1px solid var(--c-black);
  background: var(--c-black);
  color: var(--c-white);
  transition: background-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial), transform 0.3s var(--ease-editorial), border-color 0.3s var(--ease-editorial);
}

.btn-editorial:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-editorial--outline {
  background: transparent;
  color: var(--c-black);
}

.btn-editorial--outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.bg-black .btn-editorial--outline {
  color: var(--c-white);
  border-color: var(--c-grey-300);
}

.bg-black .btn-editorial--outline:hover {
  background: var(--c-white);
  color: var(--c-black);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--c-grey-300);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease-editorial), gap 0.3s var(--ease-editorial), color .3s var(--ease-editorial);
}

.link-arrow:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  gap: 0.85rem;
}

.link-arrow svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: var(--c-paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.75rem;
}

.hero-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: normal;
  color: var(--c-accent);
}

.hero-sub {
  font-size: var(--fs-lead);
  color: var(--c-grey-700);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--c-border);
  padding-top: 1.5rem;
}

.hero-meta div span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-black);
}

.hero-meta div small {
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-portrait {
  position: relative;
}

.hero-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-grey-100);
  border-radius: 2px;
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-portrait-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  letter-spacing: 0.02em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grey-500);
}

.scroll-indicator .line {
  width: 1px;
  height: 34px;
  background: var(--c-grey-300);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-accent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* --------------------------------------------------------------------------
   Overview / Bio
   -------------------------------------------------------------------------- */

.overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.overview-heading {
  font-size: var(--fs-h1);
  line-height: 1.12;
}

.overview-body p {
  font-size: var(--fs-lead);
  color: var(--c-grey-700);
  line-height: 1.65;
}

.overview-body p:first-child {
  color: var(--c-black);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */

.timeline {
  position: relative;
  max-width: 900px;
  margin-top: 4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-border);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-grey-500);
  padding-top: 0.1rem;
}

.timeline-item.is-current .timeline-year,
.timeline-item.is-future .timeline-year { color: var(--c-accent); }

.timeline-node {
  position: absolute;
  left: 106px;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-grey-300);
  transform: translateX(-50%);
}

.timeline-item.is-current .timeline-node,
.timeline-item.is-future .timeline-node {
  border-color: var(--c-accent);
  background: var(--c-accent);
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  color: var(--c-grey-700);
  font-size: 0.98rem;
  max-width: 56ch;
  margin-bottom: 0;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.timeline-item.is-future .timeline-content h3 { color: var(--c-grey-500); }

/* --------------------------------------------------------------------------
   Experience
   -------------------------------------------------------------------------- */

.experience-entry {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--c-border);
}

.experience-entry:last-of-type { border-bottom: 1px solid var(--c-border); }

.experience-meta .index {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  margin-bottom: 1rem;
  display: block;
}

.experience-meta h3 {
  font-size: var(--fs-h2);
  margin-bottom: 0.5rem;
}

.experience-meta .role-dates {
  font-size: 0.92rem;
  color: var(--c-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.experience-role {
  margin-bottom: 2rem;
}

.experience-role:last-child { margin-bottom: 0; }

.experience-role-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 0.85rem;
}

.experience-role-head h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.experience-role-head span {
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  white-space: nowrap;
}

.experience-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--c-grey-700);
  line-height: 1.55;
}

.experience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--c-accent);
}

.experience-list li:last-child { margin-bottom: 0; }

.experience-list li strong { color: var(--c-black); }

/* --------------------------------------------------------------------------
   Competencies
   -------------------------------------------------------------------------- */

.competency-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.competency-group h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-grey-500);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--c-border);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  font-size: 0.86rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-charcoal);
  transition: border-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial), background-color 0.3s var(--ease-editorial);
}

.tag:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-soft);
}

/* --------------------------------------------------------------------------
   Education
   -------------------------------------------------------------------------- */

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.education-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--c-border);
  transition: border-color 0.3s var(--ease-editorial), box-shadow 0.3s var(--ease-editorial);
}

.education-card:hover {
  border-color: var(--c-accent);
  box-shadow: 0 12px 32px -20px rgba(22, 52, 92, 0.35);
}

.education-card .degree-tag {
  font-size: var(--fs-small);
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.education-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.education-card p {
  color: var(--c-grey-700);
  margin-bottom: 0.3rem;
}

.education-card .years {
  font-size: var(--fs-small);
  color: var(--c-grey-500);
}

/* --------------------------------------------------------------------------
   Certifications
   -------------------------------------------------------------------------- */

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.cert-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--c-border);
  font-size: 0.95rem;
  font-weight: 500;
}

.cert-pill .num {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--c-accent);
}

/* --------------------------------------------------------------------------
   Blog / Insights
   -------------------------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-top: 2px solid var(--c-black);
  height: 100%;
  transition: transform 0.4s var(--ease-editorial);
}

.blog-card:hover { transform: translateY(-6px); }

.blog-card .cat {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card .excerpt {
  color: var(--c-grey-700);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.blog-card .link-arrow { margin-top: auto; }

/* --------------------------------------------------------------------------
   Resume
   -------------------------------------------------------------------------- */

.resume-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.resume-preview {
  border: 1px solid var(--c-border);
  aspect-ratio: 8.5 / 11;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.resume-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--c-paper) 100%);
}

.resume-preview .rp-line {
  height: 8px;
  background: var(--c-grey-100);
  border-radius: 1px;
}

.resume-preview .rp-line.w-60 { width: 60%; }
.resume-preview .rp-line.w-80 { width: 80%; }
.resume-preview .rp-line.w-40 { width: 40%; }

.resume-preview .rp-block { display: flex; flex-direction: column; gap: 0.6rem; }

.resume-preview .rp-tag {
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.resume-copy h2 { margin-bottom: 1.25rem; }

.resume-copy p {
  font-size: var(--fs-lead);
  color: var(--c-grey-700);
  margin-bottom: 2rem;
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-list li {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: 1.75rem;
}

.contact-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }

.contact-list .label {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-grey-300);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-list a, .contact-list span.value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.contact-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.35s var(--ease-editorial);
}

.contact-list a:hover::after { width: 100%; }

.contact-copy h2 { margin-bottom: 1.5rem; }
.contact-copy p { color: var(--c-grey-300); font-size: var(--fs-lead); max-width: 40ch; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-small);
  color: var(--c-grey-500);
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--c-white); }

/* --------------------------------------------------------------------------
   Page header (sub-pages)
   -------------------------------------------------------------------------- */

.page-header {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background: var(--c-paper);
}

.page-header h1 { font-size: var(--fs-h1); max-width: 16ch; }
.page-header .eyebrow { margin-bottom: 1.25rem; }

.breadcrumb-trail {
  display: flex;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  margin-bottom: 2rem;
}

.breadcrumb-trail a:hover { color: var(--c-accent); }

/* --------------------------------------------------------------------------
   Article page
   -------------------------------------------------------------------------- */

.article-shell { max-width: 760px; margin-inline: auto; }
.article-shell .eyebrow { margin-top: 2rem; }
.article-lead { font-size: var(--fs-lead); color: var(--c-grey-700); margin-bottom: 2rem; }
.article-notice {
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  font-size: 0.92rem;
  color: var(--c-grey-700);
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.text-accent { color: var(--c-accent); }
.mt-section { margin-top: var(--section-space); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-black);
  color: var(--c-white);
  padding: 1rem 1.5rem;
  z-index: 2000;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
